python get current directory files list code example
Example 1: python list files in current directory
import os
files = os.listdir('.')
print(files)
for file in files:
# do something
Example 2: get directory of file python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))