In my class, I have a FILE* ascii_file;
data element FILE* ascii_file;
, which is always initialized using the class constructor. How can I get the full path to asci_file
? I donβt want to store more information about expect ascii_file
and want it to work on windows, linux and solaris.
source share