- --append-output - appends current scan to a pre-existing .csv
- --ignore-existing - doesn't process files that are already in the output csv
- --no-contents-checksum - skips the composite checksum calculations (speed up)
- --allow-extensions extension without . - allows scanning of compressed archives. useful for xbox.
- -o filename.csv - output to a specific name (default is results.csv)
- -f filename.iso - pass a single file to the script
1.) Scan compressed archives (rar, 7z, zip) for disc images:
pipenv run python ps2exe.py /input/dir --append-output --ignore-existing --archives-as-folder -o out.csv
2.) Scan compressed archives (rar, 7z, zip) but treat them as disc images themselves (for example, loose Xbox HDD file dumps):
pipenv run python ps2exe.py /input/dir --append-output --ignore-existing --allow-extensions zip rar 7z -o out.csv