[HTML9] Top Menu

 

Search

Show files in command window

Command prompt is a powerful command execution point for a system.

Go to > Run prompt > command window




Navigation through directory
CD / CHDIR    change directory
        C:\> CD        display the current directory name.
        C:\> CD..    go up in the directory tree
        C:\> CD\    change to root dir
        C:\> CD <drive:>       change to other drive
        C:\> E:                 change to E: drive.
       
Showing hidden files
ATTRIB              display or set attrib of a file
                      C:\> ATTRIB          display files of C: drive including hidden file.

Attributes of ATTRIB  -  R - Read Only   [ +R | -R ]
                                         A - Archive       [ +A  | -A ]
                                         S - System        [ +S | -S ]
                                         H - Hidden        [ +H | -H ]
       
        C:\> ATTRIB -H <file name>      add or subtract attributes of a file.
       
Deleting files
DEL                   delete files
        C:\> DEL  <file name>
 

0 comments :

Post a Comment

Your remarks here!