如何获取没有文件基名的文件路径?
像/a/path/to/my/file.txt
-->/a/path/to/my/
试了.split()
没有成功。
使用os.path.dirname(filename)
.
你可以import os
>>> filepath
'/a/path/to/my/file.txt'
>>> os.path.dirname(filepath)
'/a/path/to/my'
>>>
(dirname, filename) = os.path.split(path)
检查子项os.path
os.path.dirname('/test/one')
从 Python 3.4 开始,您可以使用 Pathlib。
from pathlib import Path
path = Path("/a/path/to/my/file.txt")
print(path.parent)