zoukankan      html  css  js  c++  java
  • c# Path 类

    Path类

    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace _02Path的使用方法
    {
        class Program
        {
            static void Main(string[] args)
            {
                string str = @"E:dotNetStudy文件操作学习New.txt";
    
                //获取文件名;
                string fileName = Path.GetFileName(str);
                Console.WriteLine(fileName);
    
                //获取文件目录;
                string dirName = Path.GetDirectoryName(str);
                Console.WriteLine(dirName);
    
                //获取文件目录完整路径;
                string dirPath = Path.GetFullPath(str);
                Console.WriteLine(dirPath);
    
                //获取文件扩展名;
                string fileExt = Path.GetExtension(str);
                Console.WriteLine(fileExt);
    
                //获取文件名不带扩展名;
                string fileName1 = Path.GetFileNameWithoutExtension(str);
                Console.WriteLine(fileName1);
    
                //组合文件名称
                string cName = Path.Combine(@"E:a", "st.txt");
                Console.WriteLine(cName);
                //输出:E:ast.txt
                Console.ReadKey(); 
                
            }
        }
    }

  • 相关阅读:
    3、UML中的类图及类图之间的关系
    2、GoF的23种设计模式
    1、软件设计模式概念
    枚举
    泛型
    MySQL
    蚁群算法MATLAB解VRP问题
    蚁群算法MATLAB解TSP问题
    模拟退火解TSP问题MATLAB代码
    模拟退火学习
  • 原文地址:https://www.cnblogs.com/nymz/p/13824915.html
Copyright © 2011-2022 走看看