Windows下对文件夹下所有图片批量重命名(附C++,python,matlab代码)
https://blog.csdn.net/u011574296/article/details/72956446:
Windows下对文件夹下所有图片批量重命名(附C++,python,matlab代码)
 版权声明:本文为博主原创文章,欢迎转载,请注明出处 https://blog.csdn.net/u011574296/article/details/72956446
原文件夹
重命名之后
C++
#include <iostream>  
#include <io.h>  //对系统文件进行操作的头文件
#include <string>  
#include <sstream>
#include<vector>
using namespace std;
const int N = 6;   //整型格式化输出为字符串后的长度,例如,N=6,则整型转为长度为6的字符串,12转为为000012
const string FileType = ".jpg";    // 需要查找的文件类型
/* 函数说明 整型转固定格式的字符串
输入:
n 需要输出的字符串长度
i 需要结构化的整型
输出:
返回转化后的字符串
*/
string int2string(int n, int i)
{
    char s[BUFSIZ];
    sprintf(s, "%d", i);
    int l = strlen(s);  // 整型的位数
    if (l > n)
    {
        cout << "整型的长度大于需要格式化的字符串长度!";
    }
    else
    {
        stringstream M_num;
        for (int i = 0;i < n - l;i++)
            M_num << "0";
        M_num << i;
        return M_num.str();
    }
}
int main()
{
    _finddata_t c_file;   // 查找文件的类
    string File_Directory ="E:\\image";   //文件夹目录
    string buffer = File_Directory + "\\*" + FileType;
    //long hFile;  //win7系统,_findnext()返回类型可以是long型
    intptr_t hFile;   //win10系统 ,_findnext()返回类型为intptr_t ,不能是long型
    hFile = _findfirst(buffer.c_str(), &c_file);   //找第一个文件
    if (hFile == -1L)   // 检查文件夹目录下存在需要查找的文件
        printf("No %s files in current directory!\n", FileType);
    else
    {
        printf("Listing of files:\n");
        int i = 0;
        string newfullFilePath;
        string oldfullFilePath;
        string str_name;
        do
        {
            oldfullFilePath.clear();
            newfullFilePath.clear();
            str_name.clear();
            //旧名字
            oldfullFilePath = File_Directory + "\\" + c_file.name;
            //新名字
            ++i;
            str_name = int2string(N, i);    //整型转字符串
            newfullFilePath = File_Directory + "\\"+ str_name + FileType;
            /*重命名函数rename(const char* _OldFileName,const char* _NewFileName)
              第一个参数为旧文件路径,第二个参数为新文件路径*/
            int c = rename(oldfullFilePath.c_str(), newfullFilePath.c_str());  
            if (c == 0)
                puts("File successfully renamed");
            else
                perror("Error renaming file");
        } while (_findnext(hFile, &c_file) == 0);  //如果找到下个文件的名字成功的话就返回0,否则返回-1  
        _findclose(hFile);
    }
    return 0;
}- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
将整型格式化输出到字符串中,我是使用了stringstream类,写了一个函数实现这个功能,还有一种实现方式是,使用sprintf将数字转为字符串,同时可以格式化字符串。如下: 
char s[50]; 
int i = 1; 
sprintf(s,”%06d”, i); // 将整型i转为字符串s,指定宽度为6,不足的左边补0
sprintf 的更多用法,可以参考博客:C++字符串格式化 sprintf、printf
/* 函数说明 整型转固定格式的字符串
输入:
n 需要输出的字符串长度
i 需要结构化的整型
输出:
返回转化后的字符串
*/
string int2string(int n, int i)
{
    char s[BUFSIZ];
    sprintf(s, "%d", i);
    int l = strlen(s);  // 整型的位数
    if (l > n)
    {
        cout << "整型的长度大于需要格式化的字符串长度!";
    }
    else
    {
        stringstream M_num;
        for (int i = 0;i < n - l;i++)
            M_num << "0";
        M_num << i;
        return M_num.str();
    }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
python
import os
path = "E:\\image"
filelist = os.listdir(path) #该文件夹下所有的文件(包括文件夹)
count=0
for file in filelist:
    print(file)
for file in filelist:   #遍历所有文件
    Olddir=os.path.join(path,file)   #原来的文件路径
    if os.path.isdir(Olddir):   #如果是文件夹则跳过
        continue
    filename=os.path.splitext(file)[0]   #文件名
    filetype=os.path.splitext(file)[1]   #文件扩展名
    Newdir=os.path.join(path,str(count).zfill(6)+filetype)  #用字符串函数zfill 以0补全所需位数
    os.rename(Olddir,Newdir)#重命名
    count+=1- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
matlab
%%  
%图片保存路径为:  
%E:\image\car  
%E:\image\person  
%car和person是保存车和行人的文件夹  
%这些文件夹还可以有多个,  
%放在image文件夹里就行  
%该代码的作用是将图片名字改成000123.jpg这种形式  
%%  
clc;  
clear;  
maindir='E:\image\';  
name_long=6; %图片名字的长度,如000123.jpg为6,最多9位,可修改  
num_begin=1; %图像命名开始的数字如000123.jpg开始的话就是123  
subdir = dir(maindir);  
n=1;  
for i = 1:length(subdir)  
  if ~strcmp(subdir(i).name ,'.') && ~strcmp(subdir(i).name,'..')  
     subsubdir = dir(strcat(maindir,subdir(i).name));  
    for j=1:length(subsubdir)  
         if ~strcmp(subsubdir(j).name ,'.') && ~strcmp(subsubdir(j).name,'..')  
            img=imread([maindir,subdir(i).name,'\',subsubdir(j).name]);  
            imshow(img);  
            str=num2str(num_begin,'%09d');  
            newname=strcat(str,'.jpg');  
            newname=newname(end-(name_long+3):end);  
            system(['rename ' [maindir,subdir(i).name,'\',subsubdir(j).name] ' ' newname]);  
            num_begin=num_begin+1;  
            fprintf('当前处理文件夹%s',subdir(i).name);  
            fprintf('已经处理%d张图片\n',n);  
            n=n+1;  
           pause(0.1);%可以将暂停去掉  
         end  
    end  
  end  
end  - 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
 
                    
                
 
 
                
            
         浙公网安备 33010602011771号
浙公网安备 33010602011771号