Answers for "linux delete all files in directory"

5

python delete all files in directory

import os

filelist = [ f for f in os.listdir(mydir) if f.endswith(".bak") ]
for f in filelist:
    os.remove(os.path.join(mydir, f))
Posted by: Guest on June-05-2020
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
1

delete all files in linux

Deletes all files in current directory, including hidden

rm -rf {,.[!.],..?}*
Posted by: Guest on September-02-2021
2

delete all files in a directory command

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

ubuntu delete contents of folder

To remove all non-hidden files and sub-directories (along with all of their contents) in a 
directory use:
rm -r /path/to/directory/*
Posted by: Guest on December-25-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language