A command line utility, supporting 4 operations - view, treefy, untreefy and ofcourse help.
Developed using Node.js.
To view directory structure of the files/folders.
node tpp view <source> -t
node tpp view <source> -l
node tpp view . (-t | -l)
To view d10
folder in a tree view:
file-system-cli % node tpp view d10 -t
d10
d20
d50
f1.txt
d30
d60
f3.txt
f1.txt
To remove the directory structure of a source and add the files to a destination.
node tpp untreefy <source> <destination>
file-system-cli % node tpp untreefy d10 untreefiedDest
All files are copied to untreefiedDest
To add directory structure to a source and store it in a destination.
node tpp treefy <source> <destination>
file-system-cli % node tpp treefy untreefiedDest treefiedDest
Command line help.
node tpp help
% git clone https://github.com/shivamacs/file-system-cli.git
% cd file-system-cli
file-system-cli % npm install
All set to structurize files and directories!