Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
import subprocess |
|
|
|
def delete_directory(path): |
|
subprocess.call(["rm", "-rf", path]) |
|
|
|
def copy_directory(from_path, to_path): |
|
subprocess.call(["cp", "-a", from_path + "/.", to_path]) |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.