File(2)
-
경로(Path), 파일명, 확장자 조작 함수
# import, 변수초기화 import os org_path = "/path1/path2/file.jpg" # 파일 추출 file = os.path.basename(org_path) print("파일명 추출", file) # 파일명 추출 file.jpg # 경로 추출 path = os.path.dirname(org_path) print("경로 추출", path) # 경로 추출 /path1/path2 # 경로와 파일명 추출 path, file = os.path.split(org_path) #- 경로와 파일명을 분리 print("경로와 파일명 추출", path, file) # 경로와 파일명 추출 /path1/path2 file.jpg # 파일명과 확장자 추출 filename, fileext = os.pat..
2021.03.12 -
[Command] 라이브러리 파일 정보 확인
# Architectures 확인 명령 > xcrun -sdk iphoneos lipo -info lib.a Architectures in the fat file: lib.a are: armv7 arm64 > file lib.a lib.a: Mach-O universal binary with 2 architectures lib.a (for architecture armv7): current ar archive random library lib.a (for architecture arm64): current ar archive random library > lipo -info lib.a Architectures in the fat file: lib.a are: armv7 arm64 # 라이브러리 내부에 포..
2016.09.26