码迷,mamicode.com
首页 > Windows程序 > 详细

C#获取路径中最后一个文件夹的名字

时间:2018-11-15 14:34:27      阅读:957      评论:0      收藏:0      [点我收藏+]

标签:name   static   filename   ons   adk   code   u3d   ace   文件   

 1 using System;
 2 using System.IO;
 3 
 4 namespace ConsoleApplication1
 5 {
 6     class Program
 7     {
 8         static void Main(string[] args)
 9         {
10             string path1 = @"E:\uniuProject5.6.2\art\UnityArt(u3d5.6.2)\Assets\Cloth\FBX\Character\Models";
11             string path2 = @"E:\uniuProject5.6.2\art\UnityArt(u3d5.6.2)\Assets\Cloth\FBX";
12             string path3 = @"E:\uniuProject5.6.2\art\UnityArt(u3d5.6.2)";
13             string path4 = @"E:\uniuProject5.6.2\art\UnityArt(u3d5.6)lklk";
14 
15             Console.WriteLine(Path.GetFileNameWithoutExtension(path1));
16             Console.WriteLine(Path.GetFileNameWithoutExtension(path2));
17             Console.WriteLine(Path.GetFileNameWithoutExtension(path3));
18             Console.WriteLine(Path.GetFileNameWithoutExtension(path4));
19 
20             Console.ReadKey();
21         }
22     }
23 }

打印结果:

技术分享图片

C#获取路径中最后一个文件夹的名字

标签:name   static   filename   ons   adk   code   u3d   ace   文件   

原文地址:https://www.cnblogs.com/luguoshuai/p/9963200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!