路径中获取文件全路径目录扩展名文件名称

Posted tbqdlkw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了路径中获取文件全路径目录扩展名文件名称相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;

namespace TBQDLKW
{
    class Program
    {
        static void Main(string[] args)
        {
            //一个文件目录
            string filePath = @"C:UsersJuYaNanDesktopDBCsST_CAN.dbc";
            Console.WriteLine("该文件的目录:" + filePath);
            string str = "获取文件的全路径:" + Path.GetFullPath(filePath);
            Console.WriteLine(str);
            str = "获取文件所在的目录:" + Path.GetDirectoryName(filePath);
            Console.WriteLine(str);
            str = "获取文件的名称含有后缀:" + Path.GetFileName(filePath);
            Console.WriteLine(str);
            str = "获取文件的名称没有后缀:" + Path.GetFileNameWithoutExtension(filePath);
            Console.WriteLine(str);
            str = "获取路径的后缀扩展名称:" + Path.GetExtension(filePath);
            Console.WriteLine(str);
            str = "获取路径的根目录:" + Path.GetPathRoot(filePath);
            Console.WriteLine(str);
            Console.ReadKey();
        }
    }
}

结果图:

技术图片

以上是关于路径中获取文件全路径目录扩展名文件名称的主要内容,如果未能解决你的问题,请参考以下文章

Part5-1-2 Nodejs 核心模块

带盘符的全路径文件名是啥?

如何在 Xcode 中获取 PNG 名称而不是整个目录路径?

PHP 从名称或完整路径获取文件扩展名

获取Golang中给定文件路径的目录名称(不是路径)

从名称或完整路径获取文件扩展名