问题描述
stringstrName=File1.PostedFile.FileName;intintExt=strName.LastIndexOf(".");//取得文件扩展名stringstrExt=strName.Substring(intExt);stringstrNewName;DateTimedatNow=DateTime.Now;strNewName=File1.PostedFile.ContentLength.ToString();取得的文件名是F:网络图片洋葱头yctd9.jpg但是我想只取得的名称是yctd9.jpg。求高手指导。
解决方案
解决方案二:
System.IO.Path.GetFileName(File1.PostedFile.FileName)
解决方案三:
楼上正解多研究一下System.IO.Path,它就是专门处理各种路径问题的
解决方案四:
//获取上传文件名stringstrName=FileUpload1.FileName;
解决方案五:
System.IO.Path.GetFileName
解决方案六:
System.IO.Path.GetFileName(File1.PostedFile.FileName)
解决方案七:
System.IO.Path.GetFileName(strName)像楼主这种字符串处理函数用用其实也是蛮能锻炼脑子的.
解决方案八:
intintExt=strName.LastIndexOf(".");//取得文件扩展名stringstrExt=strName.Substring(intExt);-------------------------------------------------------------------楼主有才
解决方案九:
//获取上传文件名vs2005中stringstrName=FileUpload1.FileName;//如果是vs03stringstrname=file1.postfile.filename.substring(0,file1.postfile.filename.lastindexof("\"));其实和你取得文件扩展名一样。
解决方案十:
楼上正解
解决方案十一:
呵呵,楼上的都能解决啊还可以按照“”split啊拿到最后一个呵呵
解决方案十二:
1楼正解
解决方案十三:
多谢了。我会恏恏努力学习得。3Q。