Files
IPAToolClient/functions.py
2025-11-06 22:54:20 +03:00

14 lines
277 B
Python

import traceback
from shutil import move
from time import sleep
def move_ipa(from_path: str, to_path: str):
while True:
try:
move(from_path, to_path)
return
except Exception:
traceback.print_exc()
sleep(10)