如何获取文件名

        /// <summary>
        
/// 获得文件名
        
/// </summary>
        
/// <param name="FileName"></param>
        
/// <returns></returns>

        private string GetFileName(string FileName)
        
{
            FileInfo fi
=new FileInfo(FileName);
            
return fi.Name.Replace(fi.Extension,"");
        }

posted on 2006-11-12 16:44  散步的蠕虫  阅读(233)  评论(0编辑  收藏  举报

导航