文件打开以便在C ++中阅读

时间:2013-10-31 10:10:24

标签: c++ visual-c++

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

#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!";
        }
    }
}

3 个答案:

答案 0 :(得分:4)

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

手动更改工作目录项目属性 - >配置属性 - >调试以匹配目标路径,或将文件名更改为指向完整(或相对)路径。

答案 1 :(得分: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;
}

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

答案 2 :(得分:-2)

使用以下代码行:

ifstream输入(&#34; stops.txt&#34;,std :: fstream :: out);

它的工作。