mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-16 13:30:55 +00:00
8 lines
141 B
Python
8 lines
141 B
Python
![]() |
import os
|
||
|
import shutil
|
||
|
|
||
|
source_dir = os.getcwd()
|
||
|
target_dir = "{{ cookiecutter.__final_destination }}"
|
||
|
|
||
|
shutil.move(source_dir, target_dir)
|