赞
踩
在平时的项目中会经常涉及到对文件尤其是对产生的log和配置文件进行操作,因此会经常进行各种操作,用到什么就查什么,最近查资料发现了一篇比较好的总结,因此我就站在巨人的肩膀上来总结了相关函数的使用:
1.查看当前路径及路径下的文件:
os.getcwd():查看当前所在路径。
os.listdir(path):列举目录下的所有文件。返回的是列表类型。
os.path.abspath(path):返回path的绝对路径。
>>> import os
>>> os.getcwd()
'C:\\Python27'
>>> os.listdir(os.getcwd())
['1.txt', 'DLLs', 'Doc', 'include', 'Lib', 'libs', 'LICENSE-3RD-PARTY.txt', 'LICENSE.txt', 'man', 'messigray.png', 'Microsoft.VC90.CRT.manifest', 'msvcr90.dll', 'NEWS.txt', 'python.exe', 'python27.dll', 'pythonw.exe', 'README.txt', 'result0', 'Scripts', 'selenium', 'tcl', 'Thumbs.db', 'Tools']
>>> os.path.abspath('.')
'C:\\Python27'
>>> os.path.abspath('..')
'C:\\'
>>>
os.path.split(path)
:将路径分解为(文件夹,文件名),返回的是元组类型。可以看出,若路径字符串最后一个字符是\,则只有文件夹部分有值;若路径字符串中均无\,则只有文件名部分有值。若路径字符串有\,且不在最后,则文件夹和文件名均有值。且返回的文件夹的结果不包含\.
os.path.join(path1,path2,...)
:将path进行组合,若其中有绝对路径,则之前的path将被删除。
>>> os.path.split('D:\\pythontest\\ostest\\Hello.py')
('D:\\pythontest\\ostest', 'Hello.py')
>>> os.path.split('.')
('', '.')
>>> os.path.split('D:\\pythontest\\ostest\\')
('D:\\pythontest\\ostest', '')
>>> os.path.split('D:\\pythontest\\ostest')
('D:\\pythontest', 'ostest')
>>> os.path.join('D:\\pythontest', 'ostest')
'D:\\pythontest\\ostest'
>>> os.path.join('D:\\pythontest\\ostest', 'hello.py')
'D:\\pythontest\\ostest\\hello.py'
>>> os.path.join('D:\\pythontest\\b', 'D:\\pythontest\\a')
'D:\\pythontest\\a'
os.path.dirname(path)
:返回path中的文件夹部分,结果不包含’\’
>>> os.path.dirname('D:\\pythontest\\ostest\\hello.py')
'D:\\pythontest\\ostest'
>>> os.path.dirname('.')
''
>>> os.path.dirname('D:\\pythontest\\ostest\\')
'D:\\pythontest\\ostest'
>>> os.path.dirname('D:\\pythontest\\ostest')
'D:\\pythontest'
os.path.basename(path)
:返回path中的文件名。
>>> os.path.basename('D:\\pythontest\\ostest\\hello.py')
'hello.py'
>>> os.path.basename('.')
'.'
>>> os.path.basename('D:\\pythontest\\ostest\\')
''
>>> os.path.basename('D:\\pythontest\\ostest')
'ostest'
os.path.getmtime(path)
:文件或文件夹的最后修改时间,从新纪元到访问时的秒数。
os.path.getatime(path)
:文件或文件夹的最后访问时间,从新纪元到访问时的秒数。
os.path.getctime(path)
:文件或文件夹的创建时间,从新纪元到访问时的秒数。
>>> os.path.getmtime('D:\\pythontest\\ostest\\hello.py')
1481695651.857048
>>> os.path.getatime('D:\\pythontest\\ostest\\hello.py')
1481687717.8506615
>>> os.path.getctime('D:\\pythontest\\ostest\\hello.py')
1481687717.8506615
os.path.getsize(path)
:文件或文件夹的大小,若是文件夹返回0。
>>> os.path.getsize('D:\\pythontest\\ostest\\hello.py')
58L
>>> os.path.getsize('D:\\pythontest\\ostest')
0L
os.path.exists(path)
:文件或文件夹是否存在,返回True 或 False。
>>> os.listdir(os.getcwd())
['hello.py', 'test.txt']
>>> os.path.exists('D:\\pythontest\\ostest\\hello.py')
True
>>> os.path.exists('D:\\pythontest\\ostest\\Hello.py')
True
>>> os.path.exists('D:\\pythontest\\ostest\\Hello1.py')
False
>>> os.sep
'\\'
>>> os.extsep
'.'
>>> os.pathsep
';'
>>> os.linesep
'\r\n'
import os
def new_file(test_dir):
#列举test_dir目录下的所有文件(名),结果以列表形式返回。
lists=os.listdir(test_dir)
#sort按key的关键字进行升序排序,lambda的入参fn为lists列表的元素,获取文件的最后修改时间,所以最终以文件时间从小到大排序
#最后对lists元素,按文件修改时间大小从小到大排序。
lists.sort(key=lambda fn:os.path.getmtime(test_dir+'\\'+fn))
#获取最新文件的绝对路径,列表中最后一个值,文件夹+文件名
file_path=os.path.join(test_dir,lists[-1])
return file_path
#返回D:\pythontest\ostest下面最新的文件
print new_file('D:\\system files\\workspace\\selenium\\email126pro\\email126\\report')
注意:
> key=lambda fn:os.path.getmtime(test_dir+'\\'+fn)
> #相当于
def key(fn):
> return os.path.getmtime(test_dir+'\\'+fn)
2.
lists.sort(key=lambda fn:os.path.getmtime(test_dir+'\\'+fn))
相当于
sorted(lists,key=lambda fn:os.path.getmtime(test_dir+'\\'+fn) )
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。