
18-05-2024, 05:31
|
 |
Registered User
|
|
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
|
|
Quote:
Originally Posted by brispuss
Thanks for this very useful program!
Would it be possible to create a file listing based on reading file headers instead of reading file extensions? Reasons being that file extensions are not always valid, and some files don't have extensions at all!
And if possible, export file types to appropriately named folders for further processing. And maybe import processed files back to their original locations?
Yes, I know this would be a big task, but possible?
Thank you.
|
- yes, it would be rather useful if it also exported the full path for each file.
- i just modified ListExt.exe, and now it creates TXT files that include the full paths of the corresponding files for each file extension. (if there's no file extension, the file will be named 'Unknown-#').
- by default, this feature is disabled. use the config file (ListExt.ini) to enable it as follows:
Code:
ListExt.ini
...
; Save the categorized file list in TXT files.
ExportFileList = 1
ExportRelativeName = 0
ExportFileListPath = ".\MyOutput"
.
|