You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
638 B
17 lines
638 B
1 month ago
|
import shutil
|
||
|
import os
|
||
|
|
||
|
share_dll_dir = os.path.join(os.getcwd(), "ClientRes/HotFixBytes")
|
||
|
share_desc_dir = os.path.join(os.getcwd(), "ClientRes/SvrDesc")
|
||
|
|
||
|
client_dll_dir = os.path.join(os.getcwd(), "../pandora_cli_proj/pandora/Assets/HotFixBytes")
|
||
|
client_desc_dir = os.path.join(os.getcwd(), "../pandora_cli_proj/pandora/Assets/SvrDesc")
|
||
|
|
||
|
#if __name__ == '__main__':
|
||
|
#if os.path.exists(client_dll_dir):
|
||
|
# shutil.rmtree(client_dll_dir)
|
||
|
#shutil.copytree(share_dll_dir, client_dll_dir)
|
||
|
|
||
|
# if os.path.exists(client_desc_dir):
|
||
|
# shutil.rmtree(client_desc_dir)
|
||
|
# shutil.copytree(share_desc_dir, client_desc_dir)
|