Trying to remove all of the files in a certain directory gives me the follwing error:
OSError: [Errno 2] No such file or directory: \'/home/me/test/*\
Although this is an old question, I think none has already answered using this approach:
# python 2.7 import os d='/home/me/test' filesToRemove = [os.path.join(d,f) for f in os.listdir(d)] for f in filesToRemove: os.remove(f)