Is it possible to have a save prompt (just to enter a filename, because dates would get confusing) when using the console?
Because otherwise it really is a GREAT program and also works perfectly fine with the scanners i tested. It would just be nice to have a save prompt also when using the console, then it would be perfect for what i need it to do.
Thanks,
Nevondrax
Last edit: Nevondrax 2016-02-11
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I probably wouldn't add this to NAPS2.Console itself, but you could use a batch file for that. For example if you create a text file called "naps2console.bat" with the following contents it'll prompt for a file name:
@echo off
set /p FILENAME="Enter filename: "
"C:\Program Files (x86)\NAPS2\NAPS2.Console.exe" -o "F:\%FILENAME%.png"
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is it possible to have a save prompt (just to enter a filename, because dates would get confusing) when using the console?
Because otherwise it really is a GREAT program and also works perfectly fine with the scanners i tested. It would just be nice to have a save prompt also when using the console, then it would be perfect for what i need it to do.
Thanks,
Nevondrax
Last edit: Nevondrax 2016-02-11
I probably wouldn't add this to NAPS2.Console itself, but you could use a batch file for that. For example if you create a text file called "naps2console.bat" with the following contents it'll prompt for a file name:
@echo off
set /p FILENAME="Enter filename: "
"C:\Program Files (x86)\NAPS2\NAPS2.Console.exe" -o "F:\%FILENAME%.png"