python os


方法 功能
os.getcwd() 得到当前工作目录,即当前Python脚本工作的目录路径
os.path.exists() 检验给出的路径是否真地存
os.listdir() 返回指定目录下的所有文件和目录名
os.remove() 删除一个文件
os.removedirs(r“c:/python”) 删除多个目录
os.path.isfile() 检验给出的路径是否是一个文件
os.path.isdir() 检验给出的路径是否是一个目录
os.path.isabs() 判断是否是绝对路径
os.path.split() 返回一个路径的目录名和文件名
os.path.split(‘/home/swaroop/byte/code/poem.txt’) 结果:(‘/home/swaroop/byte/code’, ‘poem.txt’)
os.path.splitext() 分离扩展名
os.path.dirname() 获取路径名
os.path.basename() 获取文件名
os.mkdir(path) 创建文件夹
————————————————
原文链接:https://blog.csdn.net/I_fole_you/article/details/121010993

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279558.html

(0)
上一篇 2022年8月8日
下一篇 2022年8月8日

相关推荐

发表回复

登录后才能评论