0

我是使用命令行启动程序的新手。我想调用我的文件,称为“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

它有效。

谢谢。

4

0 回答 0