예제 #1
0
 public int MoveToSkinFolder(string installPath)
 {
     try {
         Microsoft.VisualBasic.FileIO.FileSystem.MoveDirectory(
             Path.Combine(DownloadFolderName, _downloadHandler.GetFolderName()),
             Path.Combine(installPath, "skins", Entry.Name), true);
     } catch (Exception e) {
         _lastException = e;
         return(1);
     }
     return(0);
 }