博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python目录和文件的列表清单
阅读量:5128 次
发布时间:2019-06-13

本文共 718 字,大约阅读时间需要 2 分钟。

import os # 通过给定的文件夹,列举出这个文件夹当中,所有的文件,以及文件夹,子文件夹当中的所有文件 def listFilesToTxt(dir,file):     # 1.列举出,当前给定的文件夹,下的所有子文件夹,以及子文件     file_list = os.listdir(dir)     # print(file_list)     # 2.针对于,列举的列表,进行遍历     for file_name in file_list:         new_fileName = dir + "/" +file_name     #     判定,是否是目录,listFile         if os.path.isdir(new_fileName):             # print(new_fileName)             file.write(new_fileName+"\n")             listFilesToTxt(new_fileName,file)         else:             # print("\t"+file_name)             file.write("\t"+file_name+"\n")     file.write("\n")     # 打印一下文件名称 f = open("long/list.txt","a") listFilesToTxt("files",f) f.close()

转载于:https://www.cnblogs.com/yunlongaimeng/p/8699197.html

你可能感兴趣的文章
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
FastDFS使用
查看>>