Answers for "list files of current directory python"

20

python list files in current directory

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
Posted by: Guest on November-04-2020
9

get directory of file python

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Posted by: Guest on April-03-2020
2

get list of files in directory python

import os
path = '/folder1/folder2/'
files = os.listdir(path)
Posted by: Guest on January-20-2021
0

python get list of files in directory

from os import listdir
file_list = listdir(folder_path)
Posted by: Guest on January-20-2021

Code answers related to "list files of current directory python"

Python Answers by Framework

Browse Popular Code Answers by Language