码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2021-07-16 17:33:40      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:imp   pytho   lan   bsp   file   sdi   lang   文件   code   

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()

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

标签:imp   pytho   lan   bsp   file   sdi   lang   文件   code   

原文地址:https://www.cnblogs.com/Doyoung/p/15018105.html

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