如何仅获取文件名而不是完整路径?
例如:
path = /folder/file.txt
我需要得到:
filename = file.txt
如何做?
您应该使用os
模块:
import os
filename = os.path.basename(path)
有关其他路径操作