Backto Python Index
import os
# concatenate path
os.path.join(part1,part2,part3)
# list all file/sub-dir names in the current directory given by path
# not for files in sub-dir
os.listdir(path)
# to list all file/dir names inside the dir whichever depth it locates
os.walk(path)
## to list all files
for dirpath,dirnames,filenames in os.walk(path):
for filename in filenames:
print(os.path.join(dirpath,filename))
得到当前工作目录,即当前Python脚本工作的目录路径: os.getcwd()
返回指定目录下的所有文件和目录名:os.listdir()
函数用来删除一个文件:os.remove()
删除多个目录:os.removedirs(r“c:\python”)
检验给出的路径是否是一个文件:os.path.isfile()
检验给出的路径是否是一个目录:os.path.isdir()
判断是否是绝对路径:os.path.isabs()
检验给出的路径是否真地存:os.path.exists()
返回一个路径的目录名和文件名:os.path.split() eg os.path.split('/home/swaroop/byte/code/poem.txt') 结果:('/home/swaroop/byte/code', 'poem.txt')
分离扩展名:os.path.splitext()
获取路径名:os.path.dirname()
获取文件名:os.path.basename()
运行shell命令: os.system()
读取和设置环境变量:os.getenv() 与os.putenv()
给出当前平台使用的行终止符:os.linesep Windows使用'\r\n',Linux使用'\n'而Mac使用'\r'
指示你正在使用的平台:os.name 对于Windows,它是'nt',而对于Linux/Unix用户,它是'posix'
重命名:os.rename(old, new)
创建多级目录:os.makedirs(r“c:\python\test”)
创建单个目录:os.mkdir(“test”)
获取文件属性:os.stat(file)
修改文件权限与时间戳:os.chmod(file)
终止当前进程:os.exit()
获取文件大小:os.path.getsize(filename)
换路径:os.chdir("path")
深度分析
- os.walk(path):os.walk输入一个路径名称,以yield的方式(其实是一个生成器)返回一个三元组 dirpath, dirnames, filenames,dirpath为目录的路径,为一个字符串。dirnames列出了目录路径下面所有存在的目录的名称,为一个list。filenames列出了目录路径下面所有文件的名称,为一个list。层层嵌套迭代。
Ref
- python使用os.listdir和os.walk获得文件的路径: 清清楚楚,明明白白
- 关于python文件操作 : 罗列了 python 常用的文件操作, 方便查找, 非常完备了