How can I copy an entire folder that contains multiple layers of subfolders?
When I need to copy an entire folder, I can use the `copy file()` function for step-by-step copying each file in this folder. Using `Files In Directory()` to obtain the names of all files in the folder, and for looping copying files.
However, if the folder I need to copy contains subfolders, using `copy file` will result in errors. In fact, if there are multiple layers of subfolders within the fol...