0

我正在 Visual Studio 2012 中开发一个项目,但我无法弄清楚为什么这段代码总是返回“无法打开文件!”,因为 tram.exe 和 stop.txt 在同一个(调试)文件夹中。

#include <iostream>
#include <fstream>

int main (int count, char *arguments[]) {
    if (count > 1) {
        ifstream input("stops.txt");

        if (input.is_open()) {

        } else {
            cout << "The file can not be opened!";
        }
    }
}
4

3 回答 3

4

默认情况下,Visual Studio 会将您的工作目录设置为$(ProjectDir)- 即您的 vcxproj 所在的文件夹 - 这与您的 exe 写入的文件夹不同,因此您不会在其中找到您的文本文件当前目录。

手动更改工作目录Project Properties->Configuration Properties->Debugging以匹配目标路径,或更改文件名以指向完整(或相对)路径。

于 2013-10-31T10:14:51.417 回答
0

找出正在运行的进程的当前工作目录是什么

http://msdn.microsoft.com/en-us/library/windows/desktop/aa364934(v=vs.85).aspx

例子:

unsigned int length = 0;
char* workingDirectory;

length = GetCurrentDirectory(0, NULL); // How large should my buffer be?
workingDirectory = new char[length]; // Allocate buffer
GetCurrentDirectory( (DWORD) length, (LPTSTR) workingDirectory); // Fill with string
std::cout << workingDirectory << std::endl; // Output string
delete [] workingDirectory; // Make sure to delete it

你可以把它放到一个函数中

void getWorkingDirectory(std::string& dir)
{
    unsigned int length = 0;
    char* buffer;
    length = GetCurrentDirectory(0, NULL);
    buffer = new char[length];
    GetCurrentDirectory( (DWORD) length, (LPTSTR) buffer);
    dir = buffer;
    delete [] buffer;
}

注意:我没有测试过这个。

于 2013-10-31T11:25:53.113 回答
-2

使用下面的代码行:

ifstream 输入(“stops.txt”,std::fstream::out);

它的工作。

于 2013-10-31T11:14:55.237 回答