임시 파일(temp file) 또는 디렉토리 생성하는 방법을 소개합니다.
임시 파일 생성 위치는 OS마다 경로가 다를 수 있습니다. 리눅스의 경우 /tmp
경로 아래에 생성됩니다.
1. TemporaryFile : 임시 파일 생성 및 프로그램 종료 시 삭제
TemporaryFile()
으로 임시 파일을 생성할 수 있고, close()
호출 또는 프로그램 종료 시, 이 파일은 삭제됩니다.
import os
import tempfile
f = tempfile.TemporaryFile('w+')
f.write('Hello, Python')
f.seek(os.SEEK_SET)
content = f.read()
print(content)
f.close()
Output:
Hello, Python
with
를 이용하여 close를 생략할 수 있습니다.
import os
import tempfile
with tempfile.TemporaryFile('w+') as f:
f.write('Hello, Python')
f.seek(os.SEEK_SET)
content = f.read()
print(content)
2. TemporaryDirectory : 임시 디렉토리 생성 및 프로그램 종료 시 삭제
TemporaryDirectory()
는 임시 디렉토리를 생성합니다. close()
호출 또는 프로그램 종료 시 디렉토리는 삭제됩니다.
import tempfile
with tempfile.TemporaryDirectory() as tempDir:
if os.path.exists(tempDir):
print('temp dir: ', tempDir)
Output:
temp dir: /tmp/tmp462zzxf5
3. mkstemp : 임시 파일 생성 및 파일 유지
mkstemp()
는 임시 파일을 생성합니다. 하지만 프로그램이 종료되도 파일은 삭제되지 않고 남아있습니다.
파일을 삭제하려면 os.unlink(path)
처럼 명시적으로 삭제해야합니다.
import os
import tempfile
fd, path = tempfile.mkstemp()
print('temp path:', path)
with open(path, 'w+') as f:
f.write('Hello, Python')
f.seek(os.SEEK_SET)
content = f.read()
print(content)
if os.path.exists(path):
print("exists")
# delete the file
os.unlink(path)
if not os.path.exists(path):
print("not exists")
Output:
temp path: /tmp/tmpui3ibnl6
Hello, Python
exists
not exists
3.1 파일 이름의 prefix, suffix 설정
mkstemp(prefix='?', suffix='?')
으로 prefix와 suffix를 인자로 전달할 수 있습니다.
이 인자는 파일 이름을 만들 때 사용되며, 나머지 문자들만 랜덤으로 정해집니다.
import os
import tempfile
fd, path = tempfile.mkstemp(prefix='test-', suffix='.txt')
print('temp path:', path)
with open(path, 'w+') as f:
f.write('Hello, Python')
f.seek(os.SEEK_SET)
content = f.read()
print(content)
# delete the file
os.unlink(path)
Output:
temp path: /tmp/test-3x7obsfu.txt
Hello, Python
4. mkdtemp : 임시 디렉토리 생성 및 파일 유지
mkdtemp()
는 임시 디렉토리를 생성하고, 이 디렉토리는 프로그램 종료 시 삭제되지 않습니다.
삭제하려면 os.rmdir()
처럼 명시적으로 삭제해야 합니다.
import os
import tempfile
path = tempfile.mkdtemp()
print('temp dir path:', path)
if os.path.exists(path):
print("exists")
# delete empty dir
os.rmdir(path)
if not os.path.exists(path):
print("not exists")
Output:
temp dir path: /tmp/tmpnxmkx11h
exists
not exists
4.1 디렉토리 이름의 prefix, suffix 설정
mkdtemp()
도 임시 디렉토리를 생성할 때, 파일 이름의 prefix, suffix를 설정할 수 있습니다.
import os
import tempfile
path = tempfile.mkdtemp(prefix='test-', suffix='-dir')
print('temp dir path:', path)
# delete empty dir
os.rmdir(path)
Output:
temp dir path: /tmp/test-3xmqyr3p-dir
Loading script...
Related Posts
- Python - Yaml 파일 파싱하는 방법
- Python - 파일 내용 삭제
- Python - for문에서 리스트 순회 중 요소 값 제거
- Python - 두 리스트에서 공통 요소 값 찾기
- Python - 문자열 앞(뒤)에 0으로 채우기
- Python - 공백으로 문자열 분리
- Python - 중첩 리스트 평탄화(1차원 리스트 변환)
- Python - 16진수 문자열을 Int로 변환
- Python - 두 날짜, 시간 비교
- Python f-string으로 변수 이름, 값 쉽게 출력 (변수명 = )
- Python - nonlocal과 global 사용 방법
- Python 바다코끼리 연산자 := 알아보기
- Python - pip와 requirements.txt로 패키지 관리
- Python - 딕셔너리 보기 좋게 출력 (pprint)
- Python - Requests 사용 방법 (GET/POST/PUT/PATCH/DELETE)
- Python - 온라인 컴파일러 사이트 추천
- Python - os.walk()를 사용하여 디렉토리, 파일 탐색
- Python - 문자열 비교 방법
- Python - Text 파일 읽고 쓰는 방법 (read, write, append)
- Python - 리스트에서 첫번째, 마지막 요소 가져오는 방법
- Python - 두개의 리스트 하나로 합치기
- Python - 리스트의 마지막 요소 제거
- Python - 리스트의 첫번째 요소 제거
- Python 소수점 버림, 4가지 방법
- Python 코드 안에서 버전 확인 방법
- Python 소수점 반올림, round() 예제
- Python - 리스트 평균 구하기, 3가지 방법
- Python - bytes를 String으로 변환하는 방법
- Python - String을 bytes로 변환하는 방법
- Python 버전 확인 방법 (터미널, cmd 명령어)
- Python - 람다(Lambda) 함수 사용 방법
- Python - dict 정렬 (Key, Value로 sorting)
- Python - range() 사용 방법 및 예제
- Python - 리스트를 문자열로 변환
- Python - 문자를 숫자로 변환 (String to Integer, Float)