List all files & Folders In Windows/Unix
On Windows CMD Prompt:
dir /s /b /o:gn
On UNIX :
find . -print | sed 's;[^/]*/;|___;g;s;___|; |;g'
On Windows CMD Prompt:
dir /s /b /o:gn
On UNIX :
find . -print | sed 's;[^/]*/;|___;g;s;___|; |;g'
Comments
Post a Comment