Use file-list which is encoded with UTF-8 #141
-
|
Thanks for the great work! What is the correct way to use an incoming list file? I created a list.txt list with this content: I call the command line to create recovery files:
And I get an error:
How should it work to pass a list of all files to be processed as a single list file? There are no examples anywhere. Why didn't you make a minimal page with examples of how to use each command, so as not to torture users with guesswork and so as not to distract you with such basic questions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
To distinguish filenames from options, you must put all options before filenames. Because you put the option after
It's because par2j is open source. When someone wants to know how it works, he just reads the source code. Even when I write a detailed manual for par2j, most users won't read it. If you want to see an example of command-line, you may read MultiPar's log file. |
Beta Was this translation helpful? Give feedback.
To distinguish filenames from options, you must put all options before filenames. Because you put the option after
par filename, the-fuwas thought as an filename. When you set options in correct order, it's likepar2j64.exe c -rf1 -rr10 -fu C:\bd.par2 C:\list.txt.It's because par2j is open source. When someone wants to know how it works, he just reads the source code. Even when I write a detailed manual for par2j, most users…