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.
原文地址:https://blog.csdn.net/caimouse/article/details/143983901
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!