os.walk() 方法
os.walk() 方法用于通过在目录树种游走输出在目录中的文件名,向上或者向下。语法格式如下:
os.walk(top, topdown=True, onerror=None, followlinks=False)
# top -- 将要遍历的目录地址。根目录下的每一个文件夹(包含它自己), 产生3-元组 (dirpath, dirnames, filenames)【文件夹路径, 文件夹名字, 文件名】。
# topdown --可选,为True或者没有指定, 一个目录的的3-元组将比它的任何子文件夹的3-元组先产生 (目录自上而下)。如果topdown为 False, 一个目录的3-元组将比它的任何子文件夹的3-元组后产生 (目录自下而上)。
# onerror -- 可选,是一个函数; 它调用时有一个参数, 一个OSError实例。报告这错误后,继续walk,或者抛出exception终止walk。
# followlinks -- 设置为 true,则通过软链接访问目录。
os.walk 的返回值是一个生成器(generator),也就是说我们需要不断的遍历它,来获得所有的内容。每次遍历的对象都是返回的是一个三元组(root, dirs, files):
- root 所指的是当前正在遍历的这个文件夹的本身的地址
- dirs 是一个 list ,内容是该文件夹中所有的目录的名字(不包括子目录)
- files 同样是 list , 内容是该文件夹中所有的文件(不包括子目录)
实例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import os
for root, dirs, files in os.walk(".", topdown=False):
for name in files:
print(os.path.join(root, name))
for name in dirs:
print(os.path.join(root, name))
执行以上程序输出结果为:
./.bash_logout
./amrood.tar.gz
./.emacs
./httpd.conf
./www.tar.gz
./mysql.tar.gz
./test.py
./.bashrc
./.bash_history
./.bash_profile
./tmp
./tmp/test.py
os.path
实例:
# -*- coding: UTF-8 -*-
import os
print os.path.abspath("d:\\new\\test.txt") #返回绝对路径
>>> d:\new\test.txt
print os.path.basename("d:\\new\\test.txt") #返回文件名
>>> test.txt
print os.path.dirname("d:\\new\\test.txt") #返回文件路径
>>> d:\new
print os.path.exists("d:\\new")
>>> True
print os.path.lexists("d:\\new")
>>> True
print os.path.expanduser("d:\\new\\text.txt")
>>> d:\new\text.txt
print os.path.getatime("d:\\new") #最后访问时间
>>> 1322235096.47
print os.path.getmtime("d:\\new") #最后修改路径时间
>>> 1322235096.47
print os.path.getctime("d:\\new") #创建时间
>>> 1321610018.9
print os.path.getsize("d:\\new\\") #获取路径的大小 字节为单位
>>> 16384
print os.path.isabs("d:\\") #判断是否为绝对路径
>>> True
print os.path.isfile("d:\\new\\hello.txt") #判断路径是否为文件
>>> True
print os.path.isdir("d:\\new") #判断路径是否为目录
>>> True
print os.path.islink("d:\\new\\hello.txt") #判断路径是否为链接
>>> False
print os.path.join("d:\\new","hello.txt") #把目录和文件名合成一个路径
>>> d:\new\hello.txt
print os.path.normcase("d:\\new\\hello.txt")#规范path字符串形式
>>> d:\new\hello.txt
print os.path.realpath("d:\\new\\hello.txt")#返回path的真实路径
>>> hello.txt
print os.path.split("d:\\new\\hello.txt") #分离文件名 返回元组
>>> ('d:\\new', 'hello.txt')
print os.path.splitdrive("d:\\new\\hello.txt") #分离磁盘驱动器与路径 返回元组
>>> ('d:', '\\new\\hello.txt')
print os.path.splitext("d:\\new\\hello.txt") #分离扩展名 返回元组
>>> ('d:\\new\\hello', '.txt')
os.stat() 方法
os.stat() 方法用于在给定的路径上执行一个系统 stat 的调用。
os.stat(path)
# path--指定路径
返回值:
- st_mode: inode 保护模式
- st_ino: inode 节点号。
- st_dev: inode 驻留的设备。
- st_nlink: inode 的链接数。
- st_uid: 所有者的用户ID。
- st_gid: 所有者的组ID。
- st_size: 普通文件以字节为单位的大小;包含等待某些特殊文件的数据。
- st_atime: 上次访问的时间。
- st_mtime: 最后一次修改的时间。
- st_ctime: 由操作系统报告的"ctime"。在某些系统上(如Unix)是最新的元数据更改的时间,在其它系统上(如Windows)是创建时间(详细信息参见平台的文档)。
实例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import os, sys
# 显示文件 "a2.py" 信息
statinfo = os.stat('a2.py')
print statinfo
"""
输出:
posix.stat_result(st_mode=33188, st_ino=3940649674337682L, st_dev=277923425L, st
_nlink=1, st_uid=400, st_gid=401, st_size=335L, st_atime=1330498089, st_mtime=13
30498089, st_ctime=1330498089)
"""