得到文件名,文件扩展名字,服务器路径
string fileNamePath=txtFileName.Text.Trim();
string uriString=txtServerPath.Text.Trim();
string fileName=fileNamePath.Substring(fileNamePath.LastIndexOf(" //")+1 );
string fileNameExt=fileName.Substring(fileName.LastIndexOf(".")+1);
if(uriString.EndsWith("/")==false) uriString=uriString+"/";
string fileNamePath=txtFileName.Text.Trim();
string uriString=txtServerPath.Text.Trim();
string fileName=fileNamePath.Substring(fileNamePath.LastIndexOf(" //")+1 );
string fileNameExt=fileName.Substring(fileName.LastIndexOf(".")+1);
if(uriString.EndsWith("/")==false) uriString=uriString+"/";