os get files in directory python code example
Example 1: python list files in current directory
import os
files = os.listdir('.')
print(files)
for file in files:
Example 2: get directory of file python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
Example 3: get files in directory python
import os
files_and_directories = os.listdir("path/to/directory")
Example 4: list of files in python
import os
def fn():
file_list=os.listdir(r"C:\Users")
print (file_list)
fn()
Example 5: python list all files in directory
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
Example 6: python get files in directory
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]