attrib
Display or change attributes of files or directories. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/attrib.
- Display all set attributes of files in the current directory:
attrib
- Display all set attributes of files in a specific directory:
attrib path\to\directory
- Display all set attributes of files and [d]irectories in the current directory:
attrib /d
- Display all set attributes of files in the current directory and [s]ub-directories:
attrib /s
- Add the
[r]ead-onlyor[a]rchiveor[s]ystemor[h]iddenornot content [i]ndexedattribute to files or directories:
attrib +r|a|s|h|i path\to\file_or_directory1 path\to\file_or_directory2 …
- Remove a specific attribute of files or directories:
attrib -r|a|s|h|i path\to\file_or_directory1 path\to\file_or_directory2 …