gpt4 book ai didi

c++ - 检查文件名是否已存在于文件夹中?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:52:18 26 4
gpt4 key购买 nike

在 C++ 中,我需要检查输入的文件名是否存在于该文件夹中。我正在使用 g++ 编译器为 Linux 编写代码。请大家帮忙:)

我在网上某处看到这段代码是为了解决我的问题,但我强烈认为它不能满足我的目的:

ofstream fout(filename);
if(fout)
{
cout<<"File name already exists";
return 1;
}

最佳答案

您可以通过使用 ifstream 进行测试来完成此操作,但使用它与使用 C 级 stat() 接口(interface)之间存在细微差别。

#include <cerrno>
#include <cstring>
#include <iostream>
#include <fstream>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

using namespace std;

int main (int argc, const char *argv[]) {
if (argc < 2) {
cerr << "Filepath required.\n";
return 1;
}

ifstream fs(argv[1]);
if (fs.is_open()) {
fs.close();
cout << "ifstream says file exists.\n";
} else cout << "ifstream says file does not exist.\n";

struct stat info;
if ((stat(argv[1], &info)) == -1) {
if (errno == ENOENT) cout << "stat() says file does not exist.\n";
else cout << "stat() says " << strerror(errno) << endl;
} else cout << "stat() says file exists.\n";

return 0;
}
  • 如果您在一个存在的文件上运行此命令,并且您对其有读取权限,那么两种方式都会得到相同的答案。

  • 如果您在一个不存在的文件上运行它,您会得到相同的答案。

  • 如果您对存在的文件运行此操作,但您没有读取权限您将得到两个不同的答案fstream 会说该文件不存在,但 stat() 会说它存在。请注意,如果您在同一目录中运行 ls,它会显示该文件,即使您无法读取它;它确实存在。

因此,如果最后一种情况不重要——即,您无法读取的文件可能不存在——那么使用 ifstream 测试。但是,如果它很重要,则使用 stat() 测试。有关更多信息,请参见 man 2 stat(2 很重要),并记住,要使用它,您需要:

#include <cerrno>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
如果 stat() 失败,则需要

cerrno 检查 errno,这可能会发生。例如,如果路径中的目录的读取权限被拒绝,则 stat() 将失败并且 errno 将等于 EACCES;如果你尝试使用上面的程序,你会得到 stat() says Permission denied这并不意味着该文件存在。这意味着您无法检查它是否存在。

注意,如果您以前没有使用过errno:您必须立即检查失败的调用,然后再进行任何其他可能设置不同的调用。但是,它是线程安全的。

关于c++ - 检查文件名是否已存在于文件夹中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24891376/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com