当前位置:  开发笔记 > 编程语言 > 正文

如何判断给定路径是目录还是文件?(C/C++)

如何解决《如何判断给定路径是目录还是文件?(C/C++)》经验,为你挑选了4个好方法。

我正在使用C,有时我必须处理类似的路径

C:\无论

C:\无论\

C:\无论\ Somefile

有没有办法检查给定路径是目录还是给定路径是文件?



1> 小智..:

stat()会告诉你这个.

struct stat s;
if( stat(path,&s) == 0 )
{
    if( s.st_mode & S_IFDIR )
    {
        //it's a directory
    }
    else if( s.st_mode & S_IFREG )
    {
        //it's a file
    }
    else
    {
        //something else
    }
}
else
{
    //error
}


我对这段代码唯一的问题是else案例中的注释.仅仅因为某些东西不是目录并不意味着它是一个文件.
好的,我需要添加#include <sys / stat.h>我的坏处:)

2> Colen..:

调用GetFileAttributes,并检查FILE_ATTRIBUTE_DIRECTORY属性.


如果您需要支持Windows 98,则无法使用此功能.如果您需要Win98支持,请参阅下面关于PathIsDirectory的答案.

3> jeffm..:

在Win32中,我通常使用PathIsDirectory及其姐妹函数.这适用于Windows 98,GetFileAttributes没有(根据MSDN文档.)


你当然可以在Windows 98中使用`GetFileAttributes()`,而AFAIK它早于`PathIsDirectory()`的存在.在检查API的最低操作系统要求时,您不能依赖MSDN文档,因为MSDN在于!当MS不再支持OS版本时,他们希望从MSDN文档中删除对它的大多数引用,特别是在现有API的最低操作系统要求中.

4> Roi Danton..:

随着C++ 14/C++ 17可以使用独立于平台is_directory(),并is_regular_file()从文件系统库.

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

int main()
{
    const std::string pathString = "/my/path";
    const fs::path path(pathString); // Constructing the path from a string is possible.
    std::error_code ec; // For using the non-throwing overloads of functions below.
    if (fs::is_directory(path, ec))
    { 
        // Process a directory.
    }
    if (ec) // Optional handling of possible errors.
    {
        std::cerr << "Error in is_directory: " << ec.message();
    }
    if (fs::is_regular_file(path, ec))
    {
        // Process a regular file.
    }
    if (ec) // Optional handling of possible errors. Usage of the same ec object works since fs functions are calling ec.clear() if no errors occur.
    {
        std::cerr << "Error in is_regular_file: " << ec.message();
    }
}

在C++ 14中使用std::experimental::filesystem.

#include  // C++14
namespace fs = std::experimental::filesystem;

"文件类型"部分列出了其他实现的检查.

推荐阅读
N个小灰流_701
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有