Answers for "delete all files in a 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
0

delete all files in a directory cmd

del /S C:\Path\to\directory\*
Posted by: Guest on October-23-2020
2

delete all files in a directory command

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

delete all files in a directory except

$ rm -v !("filename") #Delete all files in a directory except filename
Posted by: Guest on May-04-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language