标签:
1.basename #去掉目录路径,返回文件名
os.path.basename("c:\temp\test.txt")
输出:test.txt
2.dirname #去掉文件名,返回目录路径
Python os.path模块
原文地址:http://www.cnblogs.com/jp927/p/4536400.html