Skip to content

Commit

Permalink
[ADD] 작업 완료시 작업 폴더를 새 창으로 띄우는 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
C4NU committed Aug 16, 2023
1 parent b4986dc commit 064a245
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
########################################
import sys # 시스템 모듈
import os
from fileinput import filename
import subprocess
########################################
import WebP_module as webp # WebP 변환 모듈
########################################
Expand Down Expand Up @@ -82,6 +82,7 @@ def SaveFile(self):
for index in range(self.listWidget.count()):
self.converter.ConvertImage(self.listWidget.item(index).text(), strSavePath+'/', self.fileName[index])

os.startfile(strSavePath)
self.listWidget.clear()
self.fileName.clear()

Expand Down

0 comments on commit 064a245

Please sign in to comment.