Answers for "remove all files in a directory linux without prompt"

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
0

delete all files in a directory cmd

del /S C:Pathtodirectory*
Posted by: Guest on October-23-2020
0

delete all files in a folder in ubuntu

rm -rf *
Posted by: Guest on January-05-2022

Code answers related to "remove all files in a directory linux without prompt"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language