파일
-
[ AWS ] Python boto3를 이용한 S3 파일 업로드 / 다운로드AWS Infra 2022. 12. 28. 16:09
파일 업로드 import boto3s3 = boto3.client('s3')bucket = '버킷명's3.upload_file('original_object',bucket, 'upload_object', ExtraArgs={'ContentType':'image/jpeg'})# original_object, upload_object는 'test/' + upload_object 와 같이 경로와 같이 써준다 * ExtraArgs는 "boto3.s3.transfer.S3Transfer" 를 따른다https://boto3.amazonaws.com/v1/documentation/api/latest/reference/customizations/s3.html S3 customization reference - Boto..
-
[Python] Extract directory and filename. (디렉토리와 파일명 추출하기)Python/Python Programming 2019. 10. 18. 14:00
os.path.split : 디렉토리 경로와 파일명을 튜플로 리턴 os.path.dirname : 디렉토리 경로를 리턴 os.path.basename : 파일명을 리턴 경로와 파일명이 모두 필요하면 split 을 사용하면 되고, 각각의 정보가 필요하면 dirname과 basename을 쓰면 된다 os.path.split from os.path import split filename = 'C:\\test\\text.txt' os.path.split(filename) ------------------------------------------ ('C:\\test', 'text.txt') os.path.dirname from os.path import dirname filename = 'C:\\test\\te..