gpt4 book ai didi

C# - 在 Windows 中检索目录下所有只读文件的列表

转载 作者:太空宇宙 更新时间:2023-11-03 18:58:16 25 4
gpt4 key购买 nike

我需要获取目录下所有只读文件的列表,包括子文件夹下的文件。 .NET Framework 中有什么东西比循环遍历所有文件更容易吗?

最佳答案

    var path = @"C:\";//Some path
var readOnlyFiles = new DirectoryInfo(path)
.EnumerateFiles("*", SearchOption.AllDirectories)
.Where(file => file.Attributes.HasFlag(FileAttributes.ReadOnly));

关于C# - 在 Windows 中检索目录下所有只读文件的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40521556/

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