The main difference between files in Linux and Windows is that Linux you can use regex commands like vim or nano to directly alter the file, which is far more efficient whereas in Windows you have to physically move into the directory using file explorer and edit.
touch
&mkdir
: create an empty file and directory with given namemkdir -p Storage/local/user
: creates the whole structure after the parenttree
: To display the whole file structure underneath one’s given directorymv
: rename file and move to a different location. use.
for current directorycp
: same idea for copying files and-r
for recursively copying files within folders.