Search notes:

System.IO.FileAttributes (enum)

System.IO.FileAttributes is an enumeration that lists the possible attributes that can be set in files and/or directories.
1 ReadOnly
2 Hidden
4 System
16 Directory
32 Archive
64 Device
128 Normal
256 Temporary
512 SparseFile
1024 ReparsePoint
2048 Compressed
4096 Offline
8192 NotContentIndexed
16384 Encrypted
32768 IntegrityStream
131072 NoScrubData
This list was created with the following PowerShell statements:
$enumValues = [System.Enum]::GetValues('System.IO.FileAttributes')

$enumValues | foreach-object  {
  '{0,6} {1}' -f $_.value__, $_.ToString()
}

See also

The flags of this enum might be used in the -attributes option of the PowerShell cmdLet get-childItem, for example to list only directories:
get-childItem -attributes directory
The mode column of get-item.
The Attributes property of the System.IO.FileSystemInfo class.

Index