Answers for "get the names of one file in a directory python"

18

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
12

get files in directory python

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

get file names in folder python

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
Posted by: Guest on November-27-2020

Code answers related to "get the names of one file in a directory python"

Python Answers by Framework

Browse Popular Code Answers by Language