Hi everyone I was the one that made that blog post, so I figured I would chime in.
I think getting files recursively would be good as long as you can pass an option to not do that. I also think it would be cool if you could pass a regex string to match certain files. So you could list all the zip files in a dir. theFile = meta.FilePathField(path='/path/to/files', match='*.zip', recursive=true) I had not heard of the Path module before. It seems like it would do everything we wanted with a bit less code than os.listdir. I guess I really don't have much of an opinion if this gets used or not.
