美文网首页
os模块的目录操作

os模块的目录操作

作者: 不懒狮Blaise | 来源:发表于2018-04-11 15:16 被阅读0次
    os.getcwd() 获取当前位置
    os.chdir('..') 切换到上一层
    os.path.dirname(os.path.abspath('__file__')) 获取该文件的目录
    
    #遍历目录下的内容
    for (root, dirs, files) in os.walk(file_path):
        print(os.path.join(root, files))
    
    #获得文件的修改时间
    statinfo = os.stat(file)
    statinfo.st_mtime
    
    

    相关文章

      网友评论

          本文标题:os模块的目录操作

          本文链接:https://www.haomeiwen.com/subject/gxhecxtx.html