public static void CopyFolderContents(SPath fromPath, SPath toPath) { Logger.Trace("CopyFolderContents from {0} to {1}", fromPath, toPath); toPath.DeleteContents(); fromPath.MoveFiles(toPath, true); }