vote up 0 vote down star

I know how to delete single files, however I am lost in my implementation of how to delete all files in a directory of one type.

Say the directory is \myfolder

I want to delete all files that are .config files, but nothing to the other ones. How would I do this?

Thanks Kindly

flag
Did you mean you want to delete all files that are .config? – Triptych Jun 13 at 19:07
Yes! Fixed Sorry about that – choszen Jun 13 at 19:11
do you want to delete all .config files under a certain path? if you just want to delete a .config file, then you can just do os.remove(".config") – Dan Wolchonok Jun 13 at 19:14
Yes I want to delete all .config files that are contained in a certain directory. – choszen Jun 13 at 19:15
A directory and all it's subdirectories, or just the directory? – Triptych Jun 13 at 19:22

4 Answers

vote up 4 vote down

Use the glob module:

import os
from glob import glob

for f in glob ('myfolder/*.config'):
   os.unlink (f)
link|flag
+1: Yep, glob is the right approach here (if you don't want to walk sub-directories, of course -- that would need os.walk). – Alex Martelli Jun 13 at 19:16
vote up 0 vote down

I would do something like the following:

import os
files = os.listdir("myfolder")
for f in files:
  if not os.path.isdir(f) and ".config" in f:
    os.remove(f)

It lists the files in a directory and if it's not a directory and the filename has ".config" anywhere in it, delete it. You'll either need to be in the same directory as myfolder, or give it the full path to the directory. If you need to do this recursively, I would use the os.walk function.

link|flag
I actually meant files, not folders. Sorry Dan – choszen Jun 13 at 19:12
Not your fault - but this answer is now irrelevant due to OP editing the question. – Triptych Jun 13 at 19:12
Still a good example of iterating! – choszen Jun 13 at 19:13
note that this will delete files like 'my.config.bak'. Probably not what the OP wants. – Triptych Jun 13 at 20:08
vote up 0 vote down

Use os.path and splitext to assist in getting the file type.

link|flag
vote up 0 vote down

Here ya go:

import os

# Return all files in dir, and all its subdirectories, ending in pattern
def gen_files(dir, pattern):
   for dirname, subdirs, files in os.walk(dir):
      for f in files:
         if f.endswith(pattern):
            yield os.path.join(dirname, f)


# Remove all files in the current dir matching *.config
for f in gen_files('.', '.config'):
   os.remove(f)

Note also that gen_files can be easily rewritten to accept a tuple of patterns, since str.endswith accepts a tuple

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.