You try to open file by name without path, this means the file shall be in current working directory of your program.
The problem is with current directory when you run your program from VS IDE. VS by default sets current working directory for runnning program to project directory $(ProjectDir)
. But your test file resides in resources directory. So open()
function could not find it and getline()
immediately fails.
Solution is simple - copy your test file to project directory. Or copy it to target directory (where your program .exe
file is created, typically $(ProjectDir)Debug
or $(ProjectDir)Release
) and change working directory setting in VS IDE: Project->Properties->Debugging->Working Directory
, set to $(TargetDir). In this case it will work both from IDE and command line/Windows Explorer.
Another possible solution - set correct path to file in your open()
call. For testing/education purposes you could hardcode it, but actually this is not good style of software development.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…