コード例 #1
0
 public string RenameFile(int fileID, string newFileName)
 {
     try
     {
         return(BrowseUploadFactory.RenameFile(fileID, newFileName));
     }
     catch (Exception ex)
     {
         DotNetNuke.Services.Exceptions.Exceptions.LogException(ex);
         return(ex.Message.ToString());
     }
 }