폴더명 추출
# 폴더명 추출
for item in os.listdir(file_path+App):
sub_folder = os.path.join(file_path+App, item) # 폴더경로 + 폴더명
sub_folder2 = os.path.join(item) # 폴더명만
if os.path.isdir(sub_folder):
# print("Application_version = " + sub_folder2)
print("Application = " + sub_folder2)
파일 열기
# 파일 열기
with open(file_path+App+App_txt, "r", encoding="utf-8") as file:
file_content = file.read()
print("Application_version_txt = " + file_content)
ZIP 파일 목록 출력
# ZIP 파일 목록 출력
if len(zip_files) >= 2:
for i in range(0,len(zip_files)):
print("Resource = " + zip_files[i])
elif len(zip_files) == 1:
print("Resource = " + zip_files[0])
# 파일 열기
with open(file_path+Rsc+Rsc_txt, "r", encoding="utf-8") as file:
file_content = file.read()
print("Resource_version_txt = " + file_content)
'Python > 업무자동화' 카테고리의 다른 글
[python] zipfile.ZipFile로 압축 해제 시 오류 (0) | 2024.07.10 |
---|---|
[python] Selenium 웹크롤러 pyinstaller로 실행 파일 만들기 (0) | 2024.04.05 |
[Python] Pyinstaller 실행파일 만들기 (0) | 2024.01.24 |
Python을 활용한 파일, 폴더명 읽기, 압축 파일 해제 (0) | 2024.01.19 |
Python Selenium, bs4를 활용한 웹크롤링 (0) | 2024.01.19 |