Skip to content
Advertisement

Provide a file path or directory that contains files

I want to iterate through directories to find PDF files but I also want to be able to profile the file path without iterating through directories. So this is what I wrote:

JavaScript

Advertisement

Answer

Use os.path.isdir/os.path.isfile to check if the path is a valid directory/file. If it’s a directory – walk it with a for loop, otherwise process it as file. It may help to extract the logic to a function so you don’t have to repeat yourself.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement