python 将目录下所有文件夹的绝对路径写到文件中
2021-07-19 01:06
阅读:698
标签:imp pytho lan bsp file sdi lang 文件 code python 将目录下所有文件夹的绝对路径写到文件中 标签:imp pytho lan bsp file sdi lang 文件 code 原文地址:https://www.cnblogs.com/Doyoung/p/15018105.htmlimport 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 将目录下所有文件夹的绝对路径写到文件中
文章链接:http://soscw.com/index.php/essay/106262.html
文章标题:python 将目录下所有文件夹的绝对路径写到文件中
文章链接:http://soscw.com/index.php/essay/106262.html
评论
亲,登录后才可以留言!