How does one say that their C program should accept a file list?
For example my program blah should accept hello.txt by the following call in the console:
blah hello.txt
I am not sure how to parse an argument and label it as a filepath (getopt doesn't talk about this).
hello.txtis going to be in the same directory as the running directory ofblahor maybe a user inputs a file stored in a directory not the same as the working directory like this:blah blahFolder\bla\hello.txt? – Theocharis K. Jan 15 at 2:56