Tag: directory
Delete Multiple Folders
March 8, 2008
Remove two directories and their contents recursively rm -rf dir1 dir2
Remove a Directory Recursively
March 7, 2008
Remove a directory called ‘dir’ and contents recursively rm -rf dir
Create a Directory Tree in One Command
January 15, 2008
You can create a directory tree using just one command in Linux mkdir -p /tmp/dir1/dir2
Listing all Files Recursively in Windows
September 29, 2007
Save the list of all files in a folder in windows – recursively. dir /s /b>FileList.txt [tags]command, dir, directory, folder,…
Directory Listing Only Search
August 19, 2007
The search that limits the results to just directory listings… intitle:”index.of” inanchor:”Last Modified” inanchor:”Description” inanchor:”Parent Directory” -filetype:php -filetype:asp -filetype:htm -filetype:html…
List All Files in a Folder Recursively
March 10, 2007
Save the list of all files in a folder – recursively. find .|sed ‘s/\.\///;’ Another option is ls -R -1…
Recent Comments