码迷,mamicode.com
首页 > 其他好文 > 详细

os模块

时间:2018-09-01 12:12:34      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:删除   name   style   文件路径   chdir   base   file   path   gets   

1. os模块中带path的

# 判断指定对象是否为文件
os.path.isfile()
# 判断指定对象是否为目录
os.path.isdir()
# 判断指定对象是否存在
os.path.exists()
# 获得文件的大小,若为目录则为0
os.path.getsize()
# 获得返回路径的目录和文件名
os.path.split()
print(os.path.split(os.path.abspath(__file__)))
# 返回文件名
os.path.basename(path)
# 返回文件路径
os.path.dirname()

2. 不带path的

# 指定路径下所有的目录和文件名
os.listdir(path)

# 得到当前的工作目录
os.getcwd()

#  创建目录
os.mkdir()

# 删除指定目录
os.rmdir()

# 删除文件
os.remove()

# 改变到指定目录
os.chdir(path)

 

os模块

标签:删除   name   style   文件路径   chdir   base   file   path   gets   

原文地址:https://www.cnblogs.com/dempsey888/p/9568872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!