简体   繁体   中英

Working with directories and Files

How to enumerate hidden files /directories in C# 4.0

Basically I use

var directories = new DirectoryInfo(@"DirectoryName")
                .EnumerateDirectories()
                .Where(**What is the condition that should go here?**)

Use FileAttributes.Hidden

var Directories = new DirectoryInfo(@"DirectoryName")
                .EnumerateDirectories()
                .Where(x => x.Attributes.HasFlag(FileAttributes.Hidden))
                .Select(x => x.Name);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM