如何从 Python 中的路径获取不带扩展名的文件名?
例如,如果我有"/path/to/some/file.txt",我会想要"file"。
"/path/to/some/file.txt"
"file"
获取不带扩展名的文件名:
import os print(os.path.splitext("/path/to/some/file.txt")[0])
印刷:
/path/to/some/file
文档os.path.splitext。
os.path.splitext
重要提示: 如果文件名有多个点,则仅删除最后一个后的扩展名。例如:
import os print(os.path.splitext("/path/to/some/file.txt.zip.asc")[0])
/path/to/some/file.txt.zip
如果您需要处理这种情况,请参阅下面的其他答案。