Is it possible to open files from a given directory in C/C++ using wildcard characters?
In the sense, If I want to open files that end with "to(node_id)" from a given current directory in my program.
Example : I need to open files whose filenames end with "to4". Desired Output : It must open all the files in the current directory with filenames that end with "to4". If files from0to4, from1to4, from2to4 & from3to4 exist in the current directory, they must be opened.
If it is not possible in C/C++, is there any other programming language which allows this?