I'm using Pycharm on a Mac. In the script below I'm calling the os.path.isfile
function on a file called dwnld.py
. It prints out "File exists" since dwnld.py
is in the same directory of the script (/Users/BobSpanks/PycharmProjects/my scripts
).
If I was to put dwnld.py
in a different location, how to make the code below search all subdirectories starting from /Users/BobbySpanks
for dwnld.py
? I tried reading os.path
notes but I couldn't really find what I needed. I'm new to Python.
import os.path
File = "dwnld.py"
if os.path.isfile(File):
print("File exists")
else:
print("File doesn't exist")
This might work for you: