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()); } }