Answers for "python specifiy pathname for reading file"

4

get path to file without filename python

import os
filepath = '/a/path/to/my/file.txt'
os.path.dirname(filepath)
# Yields '/a/path/to/my'
Posted by: Guest on March-10-2020
33

python get filename from path

import os
print(os.path.basename(your_path))
Posted by: Guest on February-28-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 "python specifiy pathname for reading file"

Python Answers by Framework

Browse Popular Code Answers by Language