在读文件的时候往往需要遍历文件夹,python的os.path包含了很多文件、文件夹操作的方法:

os.path.abspath(path)#返回绝对路径
os.path.basename(path)#返回文件名
os.path.commonprefix(list)#返回多个路径中,所有path共有的最长的路径。
os.path.dirname(path)#返回文件路径
os.path.exists(path)#路径存在则返回True,路径损坏返回False
os.path.lexists#路径存在则返回True,路径损坏也返回True
os.path.expanduser(path)#把path中包含的"~"和"~user"转换成用户目录
os.path.expandvars(path)#根据环境变量的值替换path中包含的”$name”和”${name}”
os.path.getatime(path)#返回最后一次进入此path的时间。
os.path.getmtime(path)#返回在此path下最后一次修改的时间。
os.path.getctime(path)#返回path的大小
os.path.getsize(path)#返回文件大小,如果文件不存在就返回错误
os.path.isabs(path)#判断是否为绝对路径
os.path.isfile(path)#判断路径是否为文件
os.path.isdir(path)#判断路径是否为目录
os.path.islink(path)#判断路径是否为链接
os.path.ismount(path)#判断路径是否为挂载点()
os.path.join(path1[,path2[,...]])#把目录和文件名合成一个路径
os.path.normcase(path)#转换path的大小写和斜杠
os.path.normpath(path)#规范path字符串形式
os.path.realpath(path)#返回path的真实路径
os.path.relpath(path[,start])#从start开始计算相对路径
os.path.samefile(path1,path2)#判断目录或文件是否相同
os.path.sameopenfile(fp1,fp2)#判断fp1和fp2是否指向同一文件
os.path.samestat(stat1,stat2)#判断stattuplestat1和stat2是否指向同一个文件
os.path.split(path)#把路径分割成dirname和basename,返回一个元组
os.path.splitdrive(path)#一般用在windows下,返回驱动器名和路径组成的元组
os.path.splitext(path)#分割路径,返回路径名和文件扩展名的元组
os.path.splitunc(path)#把路径分割为加载点与文件
os.path.walk(path,visit,arg)#遍历path,进入每个目录都调用visit函数,visit函数必须有3个参数(arg,dirname,names),dirname表示当前目录的目录名,names代表当前目录下的所有文件名,args则为walk的第三个参数
os.path.supports_unicode_filenames#设置是否支持unicode路径名


下面是将文件下的末尾几个随机文件删除的简单代码实现:

pasting
#coding:utf-8
importsys
importrandom
importos
reload(sys)
sys.setdefaultencoding('utf-8')

path='./new/'
foriinos.listdir(path):
path_file=os.path.join(path+i)
ifos.path.isdir(path_file):#判断是不是一个文件夹
file=os.listdir(path_file)
n=random.randint(5,8)
forjinfile[n:]:#随机删除文件夹下末尾的文件
os.remove(os.path.join(path_file)+'/'+j)

更多相关文章

  1. 当使用一个传送到另一个的python文件时,我可以将stdin与argv结合
  2. 从Django开发服务器的根服务提供静态文件
  3. 如何从单一路径获取上层路径?
  4. Python第十天 print >> f,和fd.write()的区别 stdout的buffer 标
  5. 如何使用os.listdir()忽略隐藏文件?
  6. 用python解析word文件(二):table
  7. python cookboo 文件与IO 函数
  8. 解决Linux下运行Python脚本显示“: 没有那个文件或目录”的问题
  9. eclipse中写python文件找不到

随机推荐

  1. android customactivityoncrashchau 程序
  2. android   CheckBox 用法
  3. android照相及照片上传
  4. Android第五期 - 更新自己的apk本地与网
  5. 使用程序创建Android桌面快捷方式
  6. android下拉菜单spinner的使用方法
  7. Android Studio compile error : enum co
  8. Graphics composition on android 4.3
  9. android开机启动流程说明
  10. android自定义控件