gpt4 book ai didi

c++ - 检查文件夹路径

转载 作者:太空狗 更新时间:2023-10-29 23:37:33 24 4
gpt4 key购买 nike

我正在尝试检查给定的路径是否存在。如果没有,我想在同一目录中创建一个具有给定名称的文件夹。

假设路径一:“/home/music/A”和路径二:“/home/music/B”,这样文件夹 A 存在但文件夹 B 不存在。如果用户给出的路径是 pathOne,则什么也不会发生,但如果是 pathTwo,则程序应该意识到它不存在于/home 中,应该创建它。

我知道可以检查文件是否存在(使用 fopen 可以做到这一点),但我不知道如何检查文件夹!

最佳答案

Windows 对 POSIX 的支持非常脆弱,但这是它可以做的事情之一,因此我的解决方案适用于 Linux/Mac/POSIX/Windows:

bool directory_exists( const std::string &directory )
{
if( !directory.empty() )
{
if( access(directory.c_str(), 0) == 0 )
{
struct stat status;
stat( directory.c_str(), &status );
if( status.st_mode & S_IFDIR )
return true;
}
}
// if any condition fails
return false;
}
bool file_exists( const std::string &filename )
{
if( !filename.empty() )
{
if( access(filename.c_str(), 0) == 0 )
{
struct stat status;
stat( filename.c_str(), &status );
if( !(status.st_mode & S_IFDIR) )
return true;
}
}
// if any condition fails
return false;
}

请注意,如果您愿意,可以轻松地将参数更改为 const char*

另请注意,可以通过检查 different values of status.st_mode 以特定于平台的方式添加符号链接(symbolic link)等。 .

关于c++ - 检查文件夹路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6252060/

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