I am trying to create a function that will recursively copy a source folder and all files and folders inside of it to a different location.
At the moment, I have to
Using GetDirectories/GetFiles is somewhat out of date in my eyes, I would use Directory.EnumerateFileSystemEntries(source); instead as it is faster.
Directory.EnumerateFileSystemEntries(source);