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

os模块

时间:2020-04-11 00:17:36      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:for   opd   dir   file   目录树   string   位置   方法   import   

# -*- coding: utf-8 -*-
import os

# os.walk() 方法用于通过在目录树中游走输出在目录中的文件名,向上或者向下。
# 主要是针对目录,也就是文件夹,获取文件夹下所有的文件及目录

for root, dirs, files in os.walk(os.getcwd(), topdown=True):
    # print(root, ‘\n‘, dirs, ‘\n‘, files)
    # root 该文件的位置  string
    # dirs 文件夹       list
    # files  文件名     list
    # print(list(os.walk(os.getcwd(), topdown=True)))

    print(root)
    for name in dirs:
        print(‘11‘)
        print(os.path.join(root, name))
    for name in files:
        print(‘22‘)
        print(os.path.join(root, name))
    print(‘\n‘ * 2)

os模块

标签:for   opd   dir   file   目录树   string   位置   方法   import   

原文地址:https://www.cnblogs.com/hui-code/p/12677112.html

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