Subject edited by HansV to correct typos
I am creating a backup file archiving system in which I have to copy files and directories of files (and directories of directories of files, etc.). To copy files, I use the File class’s Copy method. To copy directories of files I–but there’s the problem: It seems that there is no Copy method in the Directory class. There is a Move method, but I don’t want to disturb the original. Two questions: 1. Why is there no Copy method in the Directory class? 2. Is there a reasonable workaround to this limitation?
Thank you,
John Littell