首页 > 其他 > 详细

os模块的相关知识整理总结

时间:2020-11-11 20:08:09      阅读:29      评论:0      收藏:0      [点我收藏+]

一、os.path相关

  1. os.path.join(path, str)--拼接路径
  2. os.path.isdir(path)--判断是不是文件夹
  3. os.path.isfile(path)--判断是不是文件
  4. os.path.dirname(file) --当前文件目录的父目录
    示例1:
def find_file(path):
    name_list = os.listdir(path)
    for name in name_list:
        # 拼接具体的文件路径
        abs_path = os.path.join(path, name)
        if os.path.isfile(abs_path):
            print(name)
        elif os.path.isdir(abs_path):
            find_file(abs_path)

示例2:

import os
BASE_PATH = os.path.dirname(os.path.dirname(__file__))
print(BASE_PATH)

os模块的相关知识整理总结

原文:https://www.cnblogs.com/messi-mu/p/13960466.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!