Answers for "open file directory using python"

12

get files in directory python

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

open file in python directory

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

how to access a txt file through os library in python

my_file_handle=open("folder/test.txt")
my_file_handle.read()
Posted by: Guest on September-22-2020

Code answers related to "open file directory using python"

Python Answers by Framework

Browse Popular Code Answers by Language