Hi! I want compress datafiles in Full Throttle.
I used convert_dxa.bat as example and write my own. Like convert_dxa.bat it will compress all *.SAN. Instead that it erase files contents. I want to save converted in other folder but don't how. For this string
I don't have my computer with me to check right now, but from what I remember the tool expects the input file to be the last argument on the command line. Have you tried moving the '-o /out' before the input file?
Futhermore, are you sure about the '/out' as output directory? I am not familiar with paths on Windows and I know they are using backslashes instead of slashes as separators, but this looks like an absolute path. If 'out' is in the current directory, shouldn't that be '-o out' (without the slash) as on Linux?
That error happens when it fails to create the output files. There are several reasons this may happen, but the most probable is that the directory you pass to -o does not exist. So make sure that the 'out' directory exists before running this command.