py中的目录与文件判别代码

夏夜,蟋蟀劲鸣,星光灿烂,月光清澈。孩提时的晨在小山上快活的玩味着每一朵花,每一株草,亦或躺在绿油油的草地数星星。一切都是那么的美好,那么的惬意。
>>>importos导入模块
>>>os.listdir("d:\\python25")列出所有目录和文件
['w9xpopen.exe','README.txt','NEWS.txt','LICENSE.txt','python.exe','pythonw.exe','Lib','DLLs','include','libs','tcl','Tools','Doc','odbchelper.py','odbchelper.pyc','test.log','sqlConnection.py','sqlConnection.pyc']
>>>dirname="d:\\python25"支持自定义
>>>os.listdir(dirname)
['w9xpopen.exe','README.txt','NEWS.txt','LICENSE.txt','python.exe','pythonw.exe','Lib','DLLs','include','libs','tcl','Tools','Doc','odbchelper.py','odbchelper.pyc','test.log','sqlConnection.py','sqlConnection.pyc']
>>>[fforfinos.listdir(dirname)筛选出一个list,存放filename
ifos.path.isfile(os.path.join(dirname,f))]
['w9xpopen.exe','README.txt','NEWS.txt','LICENSE.txt','python.exe','pythonw.exe','odbchelper.py','odbchelper.pyc','test.log','sqlConnection.py','sqlConnection.pyc']
>>>[fforfinos.listdir(dirname)筛选出一个list,存放dirname
ifos.path.isdir(os.path.join(dirname,f))]
['Lib','DLLs','include','libs','tcl','Tools','Doc'] 判别的应用 >>>os.path.isdir("D:\\")
True
>>>os.path.isdir("D:\\python25\\odbchelper.py")
False
>>>os.path.isfile("D:\\python25\\odbchelper.py")
True 当前目录 >>>os.getcwd()
'D:\\Python25' 通配符的使用,引入glob IDLE1.2.1
>>>importglob
>>>glob.glob('D:\\python25\\*.exe')
['D:\\python25\\w9xpopen.exe','D:\\python25\\python.exe','D:\\python25\\pythonw.exe']
>>>glob.glob('D:\\python25\\py*.exe')
['D:\\python25\\python.exe','D:\\python25\\pythonw.exe']
>>>

本文py中的目录与文件判别代码到此结束。业精于勤而荒于嬉,行成于思而毁于随。小编再次感谢大家对我们的支持!

标签: py