I have a task, I wanna check if exist special file *.part in directory. If file exist do check again, if not, print "file was deleted".
I use os.listdir(), next for each file in lisdir, I use fnmatch(file, '*.part'),next again get lisdir and recursively involve same function.
When I'am deleting this file, fnmatch return "true". I can't understand... "why"?
Here my code:
import os, fnmatch
def func(filenames):
for f in filenames:
while fnmatch.fnmatch(f, '*.part'):
filenames = os.listdir("/home/gromov/Downloads/test/")
func(filenames)
if __name__ == "__main__":
func(os.listdir("/home/gromov/Downloads/test/"))
print("file was deleted")
Thanks!
Even if you call your function
func
recursively,f
in the first iteration never changes andfnmatch
only checks the string and not, if the file exists.Use
os.path.exists
: import os, fnmatch, time