gpt4 book ai didi

c++ - 我如何遍历目录并识别或省略 NTFS 连接(symlink-ish)

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

我有一些代码可以列出目录中的文件。对于 Windows 系统,我希望最终得到一个与您在 Windows 资源管理器中看到的相匹配的文件和文件夹列表。例如,当我在 Server 2016 上列出 C:\时,我想要 Users 文件夹,而不是 Documents and Settings 连接。目前我得到了两者,没有明显的方法来区分它们。

我当前的代码如下所示:

boost::filesystem::directory_iterator itr(dir);
boost::filesystem::directory_iterator end;
Poco::SharedPtr<Poco::JSON::Array> fileList(new Poco::JSON::Array);
for (; itr != end; ++itr) {
boost::filesystem::path entryPath = itr->path();
Poco::File file(entryPath.string());
// ...

我尝试了 Poco isLink() 方法,但它对联结返回 false。

我还尝试了 Poco::DirectoryIterator,它给出了与 Boost 相同的行为,以及 Poco::SortedDirectoryIterator,它总是抛出 File access error: sharing违规:\pagefile.sys 读取 C:\ 时。

理想情况下,此代码应包括 Linux 和 MacOS 系统上的符号链接(symbolic link),同时忽略 Windows 上的连接。

最佳答案

这是我最终想到的。它不是一个完美的解决方案——它更像是一种启发式方法,而不是适当的标识符——但它似乎对我的用例来说效果很好:

#ifdef _WIN32
#include <windows.h>
#endif

bool FileController::isNtfsJunction(const std::string& dirPath) const {
#ifdef _WIN32
DWORD attrs = GetFileAttributesA(dirPath.c_str());
if (INVALID_FILE_ATTRIBUTES == attrs) {
DWORD err = GetLastError();
logger.error("Could not determine if path is NTFS Junction: %s. Error: %s", dirPath, err);
return false;
}
return attrs & FILE_ATTRIBUTE_DIRECTORY &&
attrs & FILE_ATTRIBUTE_REPARSE_POINT &&
attrs & FILE_ATTRIBUTE_HIDDEN &&
attrs & FILE_ATTRIBUTE_SYSTEM;
#else
return false;
#endif
}

关于c++ - 我如何遍历目录并识别或省略 NTFS 连接(symlink-ish),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54562103/

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