首先,我要确定我的文件夹目录中确实有文本文件。我正在使用Visual Studio,这是我的源代码编译的地方。

下面的代码应说明为什么它不起作用。在Visual Studio中。

int main( const int argc, const char **argv )
{
    char usrMenuOption;
    const char *cFileName = argv[ 1 ];
    checkName( cFileName );  // supplying the checkName function with contents of argv[1]

    usrMenuOption = getUsrOption();  // calling another function

    fgetc(stdin);
         return 0;
}
ifstream *openInputFile( const char *cFileName )
{
    // this function might be the pronblem.
    ifstream *inFile;
    inFile = new ifstream;
    inFile->open( cFileName, ios::in );
    return inFile;
}
bool checkName( const char *cFileName )
{
    // it works fine if i use a regular ifstream obj and not the one from the function
    ifstream *inFile;
    inFile = openInputFile( cFileName );
    inFile->open( cFileName, ios::in );

    if ( inFile->good() )
    {
        return true;
    }
    else
    {
        cout << '"' << cFileName << '"' << ": File does not exist! " << endl;
        return false;
    }
}

如果我为ifstream使用非指针对象,它确实可以工作。
但是,我需要使用我创建的功能以这种方式打开所有输入文件。
我有些困惑,因为我在dev-cpp中没有编译此问题

最佳答案

我总是检查ifs.is_open(),其中ifs是一个ifstream。

08-28 15:30