python批量读取文件名并写入txt文件中

yipeiwu_com5年前Python基础

本文实例为大家分享了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设计】。

相关文章

对python中的argv和argc使用详解

主要问题 为什么argv中第一个,即index=0的内容就是文件名? python中argc是用什么实现的? 概念解释 argc:argument counter,命令行参数个数 ar...

python中的for循环

python中的for循环

Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。 语法: for循环的语法格式如下: for iterating_var in sequence:...

python 实现矩阵按对角线打印

python 实现矩阵按对角线打印

如下所示: Description: 将一个矩阵(二维数组)按对角线向右进行打印。(搜了一下发现好像是美团某次面试要求半小时手撕的题) Example: Input: [ [1,2,...

关于 Python opencv 使用中的 ValueError: too many values to unpack

最近在OpenCV-Python接口中使用cv2.findContours()函数来查找检测物体的轮廓。 根据网上的 教程,Python OpenCV的轮廓提取函数会返回两个值...

python简单判断序列是否为空的方法

本文实例讲述了python简单判断序列是否为空的方法。分享给大家供大家参考。具体如下: 假设有如下序列: m1 = [] m2 = () m3 = {} 判断他们是否为空的高效...