系统
ubuntu20.04
工具
python
要求
文件夹中有22个子文件夹,每个子文件又包含56个文件,要求将每个子文件夹中的第一个文件放到一个新文件夹中,第二个放一个新的中,一直到最后。
解决方案
1.复制源文件
1
2
3
4
5
6
7
8
9
10
11
12
|
import os
import shutil
#源文件路径
source_path = '......'
#复制的新文件的路径
copy_source_path = '.....'
#直接复制过去的话,经常会提示文件存在,所以加个判断语句
#判断路径是否存在源文件,如果有则删除
if os.path.exists(copy_source_path):
shutil.rmtree(copy_source_path)
#复制文件过去
shutil.copytree(source_path,copy_source_path)
|
保留源文件可以增加自己操作的容错性,并可以检查自己操作是否满足要求,当然也可以直接复制粘贴源文件
2.创建新文件夹
1
2
3
4
5
6
7
8
|
def creat(files):
#创建名称为1~56的新文件夹
for i in range ( 1 , 57 ):
#判断路径是否存在同名文件夹,如果没有则创建
if not os.path.exists(files + '/' + str (i)):
os.makedirs(files + '/' + str (i))
#输入路径
creat( '......' )
|
3.按顺序命名并转移到新文件中
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#上面新文件夹所在路径
target_path = '.......'
#总文件夹路径
for file in os.listdir(copy_source_path):
j = 1
#拼接出文件完整路径
source_path_1 = os.path.join(copy_source_path, file )
source_list = os.listdir(source_path_1)
#对获取的文件名排序,否则是乱序修改
source_list_1 = sorted (source_list)
#子文件夹路径
for file_1 in source_list_1:
#源文件地址,这里的源文件我用的是复制的文件
oldname_path = os.path.join(source_path_1,file_1)
#新文件夹路径
for file_2 in os.listdir(target_path):
if str (j) = = file_2:
target_path_1 = os.path.join(target_path,file_2)
#新文件路径以及新名称,这里新名称我是用的子文件名+文件序号+文件原来名称,而上面的判断语句就是判断文件序号与新文件夹名称是否相同
newname_path = os.path.join(target_path_1, file + '-' + str (j) + '-' + file_1)
#renamen指令不仅能重新命名而且不保留源文件以达到转移的目的
os.rename(oldname_path,newname_path)
#要对每个子文件夹中的文件顺序命名,注意j所在的循环,不要放错
j + = 1
|
到此这篇关于python按顺序重命名文件并分类转移到各个文件夹中的实现代码的文章就介绍到这了,更多相关python重命名文件并分类转移到各个文件夹中内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_48395629/article/details/107444902