当前位置:网站首页>文件重命名
文件重命名
2022-07-03 03:06:00 【AphilGuo】
os.rename(ori_name, new_name)
import os
ori_path = './new_name'
folder_list = os.listdir(ori_path)
# print(folder_list)
for i in range(len(folder_list)):
folder_name = folder_list[i]
file_path = os.path.join(ori_path + '/'+ folder_name)
file_list = os.listdir(file_path)
for j in range(len(file_list)):
file_name = file_list[j]
new_name = file_name[:-5] + str(folder_name) + '-' + file_name[-5:]
ori_name = file_path + '/' +file_name
new_name = file_path + '/' +new_name
os.rename(ori_name, new_name)
边栏推荐
- Baidu map - surrounding search
- Force freeing memory in PHP
- 模糊查詢時報錯Parameter index out of range (1 > number of parameters, which is 0)
- tensorflow转pytorch笔记;tf.gather_nd(x,y)转pytorch
- Use of check boxes: select all, deselect all, and select some
- Practice of traffic recording and playback in vivo
- I2C 子系统(三):I2C Driver
- 内存泄漏工具VLD安装及使用
- Joking about Domain Driven Design (III) -- Dilemma
- [flutter] example of asynchronous programming code between future and futurebuilder (futurebuilder constructor setting | handling flutter Chinese garbled | complete code example)
猜你喜欢
Deep Reinforcement Learning for Intelligent Transportation Systems: A Survey 论文阅读笔记
Didi programmers are despised by relatives: an annual salary of 800000 is not as good as two teachers
你真的懂继电器吗?
Check log4j problems using stain analysis
内存泄漏工具VLD安装及使用
分布式事务
I2C 子系统(三):I2C Driver
Deep learning: multi-layer perceptron and XOR problem (pytoch Implementation)
Docker install redis
Pytest (6) -fixture (Firmware)
随机推荐
Global and Chinese ammonium dimolybdate market in-depth analysis and prospect risk prediction report 2022 Edition
I2C 子系统(三):I2C Driver
Notifydatasetchanged not applicable to recyclerview - notifydatasetchanged not working on recyclerview
What is the way out for children from poor families?
Super easy to use logzero
Cancer biopsy instruments and kits - market status and future development trends
MySql实战45讲【全局锁和表锁】
Creation and destruction of function stack frame
Didi programmers are despised by relatives: an annual salary of 800000 is not as good as two teachers
Privatization lightweight continuous integration deployment scheme -- 01 environment configuration (Part 2)
Find the storage address of the elements in the two-dimensional array
Add automatic model generation function to hade
Concrete CMS vulnerability
open file in 'w' mode: IOError: [Errno 2] No such file or directory
Last update time of all sqlserver tables
ComponentScan和ComponentScans的区别
Your family must be very poor if you fight like this!
Check log4j problems using stain analysis
【富瀚6630编码存录像,用rtsp服务器及时间戳同步实现vlc观看录像】
[fluent] future asynchronous programming (introduction | then method | exception capture | async, await keywords | whencomplete method | timeout method)