37

我正在使用 C++在Qt应用程序中实现文件保存功能。

我正在寻找一种方法来检查所选文件在写入之前是否已经存在,以便我可以向用户提示警告。

我正在使用std::ofstream并且我不是在寻找Boost解决方案。

4

6 回答 6

67

这是我最喜欢的隐藏功能之一,我随时可以多次使用。

#include <sys/stat.h>
// Function: fileExists
/**
    Check if a file exists
@param[in] filename - the name of the file to check

@return    true if the file exists, else false

*/
bool fileExists(const std::string& filename)
{
    struct stat buf;
    if (stat(filename.c_str(), &buf) != -1)
    {
        return true;
    }
    return false;
}

如果您没有立即将文件用于 I/O 的意图,我发现这比尝试打开文件更有品味。

于 2011-06-09T17:24:05.007 回答
42
bool fileExists(const char *fileName)
{
    ifstream infile(fileName);
    return infile.good();
}

这种方法是迄今为止最短且最便携的方法。如果用法不是很复杂,这是我会选择的。如果您还想提示警告,我会主要这样做。

于 2012-06-15T18:41:12.793 回答
9
fstream file;
file.open("my_file.txt", ios_base::out | ios_base::in);  // will not create file
if (file.is_open())
{
    cout << "Warning, file already exists, proceed?";
    if (no)
    { 
        file.close();
        // throw something
    }
}
else
{
    file.clear();
    file.open("my_file.txt", ios_base::out);  // will create if necessary
}

// do stuff with file

请注意,如果是现有文件,这将以随机访问模式打开它。如果您愿意,您可以关闭它并以附加模式或截断模式重新打开它。

于 2011-06-09T18:34:19.750 回答
4

尝试::stat()(在 中声明<sys/stat.h>

于 2010-11-30T17:13:09.910 回答
4

使用std::filesystem::existsC++17:

#include <filesystem> // C++17
#include <iostream>
namespace fs = std::filesystem;

int main()
{
    fs::path filePath("path/to/my/file.ext");
    std::error_code ec; // For using the noexcept overload.
    if (!fs::exists(filePath, ec) && !ec)
    {
        // Save to file, e.g. with std::ofstream file(filePath);
    }
    else
    {
        if (ec)
        {
            std::cerr << ec.message(); // Replace with your error handling.
        }
        else
        {
            std::cout << "File " << filePath << " does already exist.";
            // Handle overwrite case.
        }
    }
}

另请参阅std::error_code

如果要检查要写入的路径是否实际上是常规文件,请使用std::filesystem::is_regular_file.

于 2018-06-18T17:19:38.750 回答
2

一种方法是做stat()并检查errno.
示例代码如下所示:

#include <sys/stat.h>
using namespace std;
// some lines of code...

int fileExist(const string &filePath) {
    struct stat statBuff;
    if (stat(filePath.c_str(), &statBuff) < 0) {
        if (errno == ENOENT) return -ENOENT;
    }
    else
        // do stuff with file
}

这与流无关。如果您仍然喜欢检查 using ofstream,请检查 using is_open()
例子:

ofstream fp.open("<path-to-file>", ofstream::out);
if (!fp.is_open()) 
    return false;
else 
    // do stuff with file

希望这可以帮助。谢谢!

于 2016-07-30T10:19:56.873 回答