python 将目录下所有文件夹的绝对路径写到文件中

时间:2021-07-16 17:33:40   收藏:0   阅读:0
import os

dirlist = os.listdir()
#打开文件
fo = open("dirs.txt","w")
#遍历
for dir in dirlist:
#判断如果是文件夹
    if os.path.isdir(dir):
    	#写
        file.write(str(os.path.abspath(dir)+";"))
#关闭文件
file.close()
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!