Hi, I am making a program where it needs to copy a folder/directory and move it. I have the code to do this with a file, but I was wondering if there's a similar code to copy a folder. I intend to copy/move the folder, then delete it from the original path with the kill command. Here's what I'm currently using for files, a similar line to move folders would be excellent.

FileCopy("C:\path1", "C:\path2")
Kill("C:\path1")

Thanks for any input!