Hi all,
I'm developing a console program (program.exe) that takes file A and produces file B.
What I wanted to know is what is the convention for passing files as arguments on the command line?
In other words is it convention to do:
program.exe "C:folderfile.abc"
or is it convention to u...