作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何使用 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/
我是一名优秀的程序员,十分优秀!