Home > Article > System Tutorial > How to unhide files using attrib command
You can unhide files through the attrib command, the syntax is: attrib -h [file name]. For example, to unhide "secret.txt", enter "attrib -h secret.txt". Please use it with caution and avoid changing important system files.
attrib command to unhide files
attrib command is a command line tool that can be used to change files and files Properties of the folder. It can be used to unhide files and make them visible in the file manager.
How to unhide files:
The syntax to unhide files using the attrib command is as follows:
<code>attrib -h [文件名]</code>
Among them:
-h
: used to unhide attributes [file name]
: the file name to be unhiddenExample:
To unhide a file named "secret.txt", use the following command:
<code>attrib -h secret.txt</code>
After executing this command, secret.txt
Files will no longer be hidden and can be seen in the file manager.
Note:
The above is the detailed content of How to unhide files using attrib command. For more information, please follow other related articles on the PHP Chinese website!