일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Mac
- 자바스크립트
- Programming
- Oracle DB
- docker
- 오라클 디비
- JavaScript
- SAP ERP
- 도커
- IT
- 자바
- SAP ABAP
- 머신러닝
- 파이썬
- Spring Framework
- sap mm
- Java
- 딥러닝
- db
- 노드
- SAP
- 오라클
- nodejs
- ABAP
- 유럽여행
- oracle
- Python
- 비지니스영어
- 영어
- node.js
Archives
- Today
- Total
JIHYUN JEONG
파이썬(Python)폴더 내 파일 이름 바꾸기 본문
파이썬(Python)폴더 내 파일 이름 바꾸기를 해보겠습니다.
아래와 같은 폴더 구조에서 rename.py 파일을 사용합니다.
from os import rename, listdir import os
# 현재 위치의 파일 목록 files = listdir('.')
count = 1
for file in files: if file == '.DS_Store' or file == 'rename.py': continue
# os.chdir('/Users/jihyun/Google 드라이브/대학원/2019-2/정량적데이터분석과연구/Paper_project/data2/all/' + file) os.chdir('파일경로' + file) file_name = listdir('.')
for name in file_name:
new_name = 'lime_' + str(count) + '.json' rename(name, new_name) count += 1 |
'Information Technology > Python' 카테고리의 다른 글
IBM Cloud에 Python Flask App 배포하기 (0) | 2020.07.07 |
---|---|
웹 개발 나만 알고 싶은 유용한 사이트 TOP 3 (0) | 2020.03.30 |
[파이썬/Python] datetime, pytz 모듈 (timezone Asia Seoul 타임존 서울) 현재시간으로 하기 (0) | 2019.12.01 |
[파이썬/Python] 예제 - 사전 만들기(영어), 만들면서 배우는 파이썬 (0) | 2019.02.12 |
Comments