get directory of file python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
get directory of file python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
traverse files in directory python
# python 3
import os
for dirpath, dirnames, filenames in os.walk(dir_path):
print(dirpath)
print(dirnames)
print(filenames)
# python 2
import os.path
def print_it(x, dir_name, files):
print(dir_name)
print(files)
os.path.walk(your_dir, print_it, 0)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us