10 lines
290 B
Python
10 lines
290 B
Python
import os
|
|
|
|
dist_path = "E:/ANT/dist/reflector_inspector.exe"
|
|
if os.path.exists(dist_path):
|
|
size_mb = os.path.getsize(dist_path) / (1024 * 1024)
|
|
print(f"빌드 성공: {dist_path}")
|
|
print(f"파일 크기: {size_mb:.1f} MB")
|
|
else:
|
|
print("빌드 실패: exe 파일이 없음")
|