典型的递归方法: //定义一个list集合 List<String> list = new List<String>(); public void director(string dirs) { //绑定到指定的文件夹目录 DirectoryInfo dir = new DirectoryInfo(dirs); //检索表示当前目录的文件和子目录 FileSystemInfo[] fsinfos = dir.GetFileSystemInfos(); //遍历检索的文件和子目录 f
1 #获取文件夹内的图片 2 import os 3 def get_imlist(path): 4 return [os.path.join(path,f) for f in os.listdir(path) if f.endswith('.jpg')] 5 6 img_path = get_imlist("database") 7 print(img_path)
package com.henu.util; import java.io.File; public class TakeFilePathAndName { public static void main(String[] args) { // This is the path where the file's name you want to take. String path = "C://Documents and Settings//yinxm//デスクトップ//TestFile&quo
1.用法:将js内容拷到一文件中,命名为batchRename.js: 该文件可以放到任何你想更改文件名的文件夹目录,然后dos(或 linux 终端)进入该文件夹,然后执行node batchRename.js: 然后它就会把该文件夹下的所有文件名前面加上它所在的文件夹名和一个"-". 它的执行是递归的,会影响下面的所有子目录. 2.重命名文件的规则可以通过修改里面带注释那个if里的逻辑进行自定义. var path = require("path"); v