python os模板方法
作者:互联网
import os filepath="D:\\python\\qoamgge" def os_getcwd(): os.getcwd()#os.getcwd() 获取当前脚本路径 def os_listdir(): os.listdir(os.getcwd())#os.listdir() 获取指定目录下的所有文件夹或者文件名称 def os_mkdir(): os.mkdir("D:\\python\\qoamgge")#创建一个文件夹os.makedirs() def os_rmdir(): os.rmdir("D:\\python\\qoamgge")#删除一个文件夹 def os_makedirs(): os.makedirs(filepath)#创建多级目录文件夹 def os_getcwd(): os.removedirs(filepath)#删除一个文件:os.remove(filepath) def os_removedirs(): os.removedirs(r'd:python')# 删除多个空目录: def os_path_isfile(): os.path.isfile(filepath)# 检验给出的路径是否是一个文件: def os_path_isdir(): os.path.isdir(filepath)# 检验给出的路径是否是一个目录: def os_isabs(): os.isabs()# 判断是否是绝对路径: def os_exists(): os.path.exists()# 检验路径是否真的存在:。例如检验D盘下是否有Python文件夹 def os_dirname(): os.path.dirname(filepath)# 获取路径名: def os_getcwd(): os.path.basename(filepath)# 获取文件名: def os_rename(): os.rename(old,new)# 重命名文件或者目录: os_getcwd() def os_getcwd(): os.stat(file)# 获取文件属性: def os_getsize(): os.getsize(filename)# 获取文件大小: # 获取文件属性和时间戳:os.chmod(file) # 分离一个路径的目录名和文件名:os.path.split()。例如:os.path.split(r'/home/qiye/qiye.txt) # 返回结果是一个元祖:('/home/qiye','qiye.txt') # 分离扩展名:os.path.splitext()。例如:例如:os.path.split(r'/home/qiye/qiye.txt) # 返回结果是一个元祖:('/home/qiye/qiye','.txt') # 读取和设置环境变量:os.getenv()和os.putenv()
标签:qiye,filepath,python,getcwd,模板,path,os,def 来源: https://www.cnblogs.com/onelove1/p/13158880.html