您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python如何批量讀取文件名并寫入txt文件中,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
先說下腳本使用的環境吧,在做項目的過程中需要動態加載圖片,使用Unity的Resources.Load方法,但是百十張圖片怎么能一 一寫下他們的名字作為加載的路徑呢?總不能一個一個編輯后存到數組中吧,(雖然我最初是這么做的)。所以必須有一個批量的工具,必須的。
于是乎激發了我的靈感,下面看代碼。備注少,不動的給我留言,我會及時回復的。
#coding=utf-8 import sys import os, glob reload(sys) sys.setdefaultencoding('utf-8') #輸出路徑,自行修改 TxtPath="C://Users//yupu//Desktop//f.txt" def BFS_Dir(dirPath, dirCallback = None, fileCallback = None): queue = [] ret = [] f=open(TxtPath,'w') # r只讀,w可寫,a追加 queue.append(dirPath); while len(queue) > 0: tmp = queue.pop(0) if(os.path.isdir(tmp)): ret.append(tmp) for item in os.listdir(tmp): queue.append(os.path.join(tmp, item)) if dirCallback: dirCallback(tmp) elif(os.path.isfile(tmp)): ret.append(tmp) if fileCallback: mPath , ext = os.path.splitext(tmp) names = os.path.split(mPath) if(ext==".meta"): continue else: print names[1] f.write(names[1]) f.write('\n') fileCallback(tmp) f.close() return ret def printDir(dirPath): print "dir: " + dirPath def printFile(dirPath): print "file: " + dirPath if __name__ == '__main__': while True: path = raw_input("Path:") try: b = BFS_Dir(path , printDir, printFile) print ("\r\n *******\r\n"+"*********Done*********"+"\r\n **********\r\n") except: print "Unexpected error:", sys.exc_info() raw_input('press enter key to rehandle')
關于“python如何批量讀取文件名并寫入txt文件中”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。