Answers for "command to delete all files in a directory linux"

8

remove all files inside directory linux

# remove everything in a directory 
rm /path/to/dir/*
# remove all sub-directories and files
rm -r /path/to/dir/*
Posted by: Guest on July-10-2020
3

delete all files in a directory command

rd /s/q Foldername
Posted by: Guest on May-26-2021

Code answers related to "command to delete all files in a directory linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language