C ++从Windows命令行导入文件

时间:2013-10-01 20:50:36

标签: c++ windows command-line argc

我是使用命令行启动程序的新手。我想调用我的文件,名为“file.txt”。我一直在寻找示例,但我还没有看到命令行写的内容。

int main(int argc, char *argv[])
{
    if (argc < 2) {
        cerr << "Error: file name argument not given" << endl;
        exit(1);
    }

    ifstream inFile( argv[1], ios::in);
}

知道了。因此,通过命令行,我导航到我的.exe并调用我想要的文件。

C:\Users\me\sampleProject\bin\Debug>test.exe sampleFile.txt

它有效。

感谢。

0 个答案:

没有答案