欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C# 从路径中获取文件名及其扩展名

程序员文章站 2022-06-12 08:28:31
...
using System;
using System.Collections.Generic;
using System.Linq;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(Exam.getFileNames("c:\\program files\\Maths\\all.dat"));
            Console.Read();
        }
    }
    class Exam
    {
        /* 获取文件名
         * string strFilePaht="文件路径"; 
         * Path.GetFileNameWithoutExtension(strFilePath);
         * 这个就是获取文件名的还有的就是用Substring截取 
         * strFilePaht.Substring(path.LastIndexOf("\\") + 1, path.Length - 1 - path.LastIndexOf("\\")); 
         * strFilePaht.Substring(path.LastIndexOf("."), path.Length - path.LastIndexOf("."));
         * 提问者评价或者用openFileDialog1.SafeFileName
         */
        public static string getFileNames(string file)//1
        {
            return file.Substring(file.LastIndexOf("\\") + 1);
        }
    }
}


转载于:https://my.oschina.net/u/1017188/blog/333651