python文件查找
1、import glob shell干的就是glob
在windows下 使用搜索*.py 需要导入glob才可以进行*.py的搜索
glob.glob(‘*.py‘)返回以py结尾的列表
2、处理参数最方便的工具:
from optparse import OptionParser
3、os.path
os.path.dirname(sys.argv[0])
or
os.path.dirname(__file__)
os.path.curdir ----> 返回当前路径
os.path.isfile()
os.path.isdir()
os.path.abspath() 返回绝对路径
os.path.exists() 判断文件是否存在
os.path.join() 拼接路径 os.path.join(‘www‘,‘htdocs‘,‘index.html‘)
In [2]: os.path.join(‘www‘,‘htdocs‘,‘index.html‘) # / 为默认
Out[2]: ‘www/htdocs/index.html‘
os.path.splitext(‘fasdfa.html‘)
In [4]: os.path.splitext(‘fasdfa.html‘)
Out[4]: (‘fasdfa‘, ‘.html‘)
本文出自 “muzinan的技术博客” 博客,请务必保留此出处http://muzinan110.blog.51cto.com/684213/1440912
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。