Add files via upload

This commit is contained in:
OusmBlueNinja 2023-10-04 21:09:31 -05:00 committed by GitHub
parent e905832868
commit 78fedaa97d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

34
packages/filemanip.py Normal file
View File

@ -0,0 +1,34 @@
# ["filemanip", "packages.filemanip", ["mv", "cp"]]
import os
import shutil
def mv(command: list):
if len(command) != 2:
print("Usage: mv [source] [destination]")
return
source = command[0]
destination = command[1]
try:
shutil.move(source, destination)
print(f"Moved '{source}' to '{destination}'")
except Exception as e:
print(f"Error moving '{source}' to '{destination}': {str(e)}")
def cp(command: list):
if len(command) != 2:
print("Usage: cp [source] [destination]")
return
source = command[0]
destination = command[1]
try:
shutil.copy2(source, destination)
print(f"Copied '{source}' to '{destination}'")
except Exception as e:
print(f"Error copying '{source}' to '{destination}': {str(e)}")
# made by OusmBlueNinja