반응형
치환
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def replaceInFile(file_path, oldstr, newstr):
fr = open(file_path, 'r')
lines = fr.readlines()
fr.close()
fw = open(file_path, 'w')
for line in lines:
fw.write(line.replace(oldstr, newstr))
fw.close()
# 호출: 123.txt 파일에서 comma(,) 없애기
replaceInFile("C:\\docker\\example\\123.txt", "nbc", "abc")
|
cs |
업로드
requests 모듈을 설치를 따로 해줘야 하고
requests.post ( 주소 , 보낼형식)이런식이라고 생각하면된다.
파일복사
1
2
3
4
5
6
|
import shutil #기본적으로 제공되는듯
before = r'C:\\docker\\example\\123.txt'
after = r'C:\\docker\\example\\1234.txt'
shutil.copy(before, after)
|
cs |
반응형
'Python' 카테고리의 다른 글
vscode python 에러 - 용어가 cmdlet, 함수, 스크립트 파일 또는 실행할 수 있는 프로그램 이름으로 인식되지 않습니다 (0) | 2023.04.15 |
---|---|
python batch runner (0) | 2022.08.12 |
json 사용법 (Python) (0) | 2021.08.02 |
언더스코어(underscore) (0) | 2021.07.25 |
댓글