I have the following code:
ifstream initFile;
initFile.open("D:\\InitTLM.csv");
if(initFile.is_open())
{
}
File does not open. The file exists on drive D :. Is there any way to find out why this particular file cannot be found? How is errno?
source
share