Answers for "get a file insinde a folder 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
1

get list of files in directory python

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

open file in python directory

path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")
Posted by: Guest on May-13-2020

Code answers related to "get a file insinde a folder python"

Python Answers by Framework

Browse Popular Code Answers by Language