Exemplo n.º 1
0
        public string StartPostFile(string fileName)
        {
            string fName = "";

            try
            {
                fName = WSCommon.GetTempFilePath(Path.GetFileName(fileName));
                if (CIO.FileExists(fName))
                {
                    CIO.blRemoveFile(fName);
                }
                return(fName);
            }
            catch (Exception ex)
            {
                CLog.stLogException(new Exception("StartPostFile : ", ex));
                return("");
            }
        }