Answers for "find file in current directory python"

11

python get current file location

import os
os.path.dirname(os.path.abspath(__file__))
Posted by: Guest on May-11-2020
12

get files in directory python

import os
files_and_directories = os.listdir("path/to/directory")
Posted by: Guest on June-12-2020

Code answers related to "find file in current directory python"

Python Answers by Framework

Browse Popular Code Answers by Language