Mass rename file extensions in a specified folder to a different extension.
- i.e.
file.png->file.jpg
- Python >= 3.9
- Only needed for CLI / development.
-
pip install -r requirements.txt
- Only needed for development.
- Not needed for extfix_cli version.
How To use (GUI - extfix.py)
- Download from the releases.
- Open the program.
- Select the
Target Directory(the directory with all the files to fix). - Input the
Target ExtensionandNew Extensionvalues. - Click start and the file extensions will be fixed!
How To Use (Command Line - extfix_cli)
- Download extfix_cli.
- Edit extfix_cli with a text editor.
DIRECTORY_NAME= The directory path with all the files to be fixed.- If you do not know what you are doing, just create a folder in the same directory as extfix_cli (but don't put extfix_cli in the created folder).
- Either name the folder
Testor whatever you set theDIRECTORY_NAMEto.
- Either name the folder
-
- If you do not know what you are doing, just create a folder in the same directory as extfix_cli (but don't put extfix_cli in the created folder).
TARGET_EXT= the extension you want to be replaced.- i.e.
file.png->file.jpgthen you would put.png.
- i.e.
NEW_EXT= the new extension to replace with.- i.e.
file.png->file.jpgthen you would put.jpg.
- i.e.
- Run extfix_cli and it should work!
-
pyinstaller --noconfirm --onefile --windowed ` --icon=".assets/app/icon.ico" ` --add-data ".assets/app/icon.png;." ` --add-data ".assets/app/icon.ico;." ` --name "extfix" ` extfix.py



