Python Forum
[Tkinter] How to get the name of a file only from a file path ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] How to get the name of a file only from a file path ?
#2
Using https://docs.python.org/3/library/pathlib.html

from pathlib import Path

filepath = 'C:/Users/DT2000/Documents/Python Projects/mp3 Player/music/test.mp3'

path = Path(filepath)

print(path.name)
Output:
test.mp3
Reply


Messages In This Thread
RE: Stripping path before insert - by Yoriz - Jul-25-2019, 05:55 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Video [PyQt] Get a executable file (.exe) from a .py file add a promoted class in a QWidget MiguelonReyes 0 687 Oct-17-2023, 11:43 PM
Last Post: MiguelonReyes
  Import a file and show file name on qcombobox GMCobraz 1 1,996 Jul-02-2020, 01:38 PM
Last Post: GMCobraz
  [Tkinter] Unable to get current contents of the entry field where the content is the file path pmpinaki 1 2,254 Apr-18-2020, 06:45 PM
Last Post: deanhystad
  [Tkinter] Tkinter - I need to read file excel from GUI app to script file johnjh 0 10,763 Apr-17-2020, 08:14 PM
Last Post: johnjh

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020