Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
7 lines (5 sloc) 185 Bytes
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])