public static string[] GetUploadFileInfo(string UCProcessType, string filePath)
 {
     string[] ret = new string[4];
     ret[0] = OAConfig.GetConfig("MOSS认证", "ServerWeb");
     if (UCProcessType == "")
     {
         ret[1] = "Temp";
     }
     else
     {
         ret[1] = UCProcessType;
     }
     ret[2] = MossObject.GetFolderName();                                       //文件夹
     ret[3] = MossObject.GetFileName() + System.IO.Path.GetExtension(filePath); //文件名
     return(ret);
 }