C#里演示使用路径类Path
C#里演示使用路径类Path
不管什么语言,目录的操作是必须的。
因为程序都跟数据打交道,而数据保存的形式,一般是文件。
当文件存放多了,就需要分类,而分类就是建立文件夹,这样就需要对文件夹的操作。
下面就来演示一下C#里使用Path类。
/*
* C# Program to Demonstrate the Operations of C# Path Class
*/
using System;
using System.IO;
class Test
{
public static void Main()
{
string p = @"c:\srip\sri.txt";
string p2 = @"c:\srip\sri";
string p3 = @"srip";
if (Path.HasExtension(p))
{
Console.WriteLine("{0} has an extension.", p);
}
if (!Path.HasExtension(p2))
{
Console.WriteLine("{0} has no extension.", p2);
}
if (!Path.