gpt4 book ai didi

c# - C#中的目录遍历

转载 作者:太空狗 更新时间:2023-10-29 20:22:41 27 4
gpt4 key购买 nike

如何使用 C# 遍历文件夹结构而不落入 junction points 的陷阱? ?

最佳答案

对于那些不知道的人:连接点的行为类似于 Linux 上文件夹的符号链接(symbolic link)。当您设置递归文件夹结构时,就会出现上述陷阱,如下所示:

given folder /a/b
let /a/b/c point to /a
then
/a/b/c/b/c/b becomes valid folder locations.

我建议采用这样的策略。在 Windows 上,路径字符串的最大长度受到限制,因此递归解决方案可能不会破坏堆栈。

private void FindFilesRec(
string newRootFolder,
Predicate<FileInfo> fileMustBeProcessedP,
Action<FileInfo> processFile)
{
var rootDir = new DirectoryInfo(newRootFolder);
foreach (var file in from f in rootDir.GetFiles()
where fileMustBeProcessedP(f)
select f)
{
processFile(file);
}

foreach (var dir in from d in rootDir.GetDirectories()
where (d.Attributes & FileAttributes.ReparsePoint) != FileAttributes.ReparsePoint
select d)
{
FindFilesRec(
dir.FullName,
fileMustBeProcessedP,
processFile);
}
}

关于c# - C#中的目录遍历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/301392/

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