| User review:
|
Re the %d: you have set the output to split into multiple files once it reaches a certain size. Therefore you need to set the output filename to include a %d. The %d will change to 01, 02, 03 etc. So you could have %dmy_file, and the output directory will end up with 01my_file, 02my_file etc. More commonly, you would specifiy the output as my_file_%d. |