Answers for "python get windows directory and file name from user"

2

python how to get the folder name of a file

# Basic syntax:
import os
os.path.dirname('/path/to/your/favorite/file.txt')
--> '/path/to/your/favorite/'
Posted by: Guest on October-04-2020
-1

what does filename = path(file).stem python

from pathlib import Path

Path('/root/dir/sub/file.ext').stem

# returns 'file'
Posted by: Guest on June-03-2020

Code answers related to "python get windows directory and file name from user"

Python Answers by Framework

Browse Popular Code Answers by Language