python 遍历文件夹

2021/10/13 17:16:55

本文主要是介绍python 遍历文件夹,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

本段python``代码可以遍历某个文件夹及其下所有子目录文件夹。
例如对所有文件重命名等。

import os
data_dir = "target_dir"
path = "/workspace/.../Data/"

def getFileList(dir, Filelist, ext=None):
	newDir = dir

	if os.path.isfile(dir):
		if ext is None:
			Filelist.append(dir)
			#or you can quit the program
		else:
			if ext in dir[-3:]:
				try:
					#你想对目标文件执行的操作
					os.rename(path + dir, path + dir.replace('.png', '.jpg'))
				except Exception as e:
					print(e)
				else:
					#操作成功print log
					print("rename" + dir + "success") 
				Filelist.append(dir)
		
		elif os.path.isdir(dir):
			for s in os.listdir(dir):
				newDir = os.path.join(dir,s)
				getFileList(newDir, Filelist, ext)

		return Filelist

imglist = getFileList(data_dir, [], 'png')



这篇关于python 遍历文件夹的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程