I am trying to scan my harddrive for jpg and mp3 files.
I have written the following script which works if I pass it a directory with file in the root but does not return anything if I pass it the root directory.
I am new to Python so would love some help.
def findfiles(dirname,fileFilter):
filesBySize = {}
def filterfiles(f):
ext = os.path.splitext(f)[1][1:]
if ext in fileFilter:
return True
else:
False
for (path, dirs, fnames) in os.walk(dirname):
if len(fileFilter)>0:
fnames = filter(filterfiles,fnames)
d = os.getcwd()
os.chdir(dirname)
for f in fnames:
if not os.path.isfile(f) :
continue
size = os.stat(f)[stat.ST_SIZE]
if size < 100:
continue
if filesBySize.has_key(size):
a = filesBySize[size]
else:
a = []
filesBySize[size] = a
a.append(os.path.join(dirname, f))
# print 'File Added: %s' %os.path.join(dirname,f)
_filecount = _filecount + 1
os.chdir(d)
return filesBySize
os.path.isfile(f)that is going awry? Also your functionfilterfiles()should probablyreturn ext in fileFilter, since you have a typo there. – Johnsyweb Jan 22 '12 at 5:31