python取目录路径,文件名,扩展等信息
版权声明:
本文为博主原创文章,转载请声明原文链接...谢谢。o_0。
更新时间:
2019-05-10 11:04:28
温馨提示:
学无止境,技术类文章有它的时效性,请留意文章更新时间,如发现内容有误请留言指出,防止别人"踩坑",我会及时更新文章
python
import os [dirname, filename] = os.path.split('D:/test/1.php') print(dirname,filename)