Hello,
I try to check the existence of a file with the function
_findfirst(...).
The file is located in a directory with a blank in its path name: C:
\Program Files\ExtPrg.exe
When I run the following code:
char FilePath[]="C:\\\"Program Files\"\\ExtPrg.exe";
hFile = _findfirst( FilePath, &c_file );
system (FilePath);
the _findfirst function returns -1 which means that the file is not
found, but the following system command starts the file.
So can anybody tell me, how I have to enter FilePath in a way that the
_findfirst function works?
Thank you.