The command to create a folder is MD
eg create folder called new folder in current folder.
md "new folder"
The command to delete a folder is RD
eg remove the sales folder
rd sales
The command to move a folder is REN
ren <from folder> <to folder>
eg rename folder sale to sales
ren sale sales
The command to rename a folder is REN
ren <from folder> <to folder>
eg rename folder sale to sales
ren sale sales
The command to change the description is setprops
eg set the sales folder description to be "local sales"
setprops \sales description "local sales"
eg remove the description for the the sales folder
setprops \sales description ""
The command to change the folder to be hidden is setprops
eg set the sales folder to be hidden
setprops \sales hidden true
eg set the sales folder to not be hidden
setprops \sales hidden false