科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件如何利用Path类处理.NET文件

如何利用Path类处理.NET文件

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

.NET框架通过利用包含在System.IO 命名空间中的Path类提供了访问这些细节的简单方法。本文针对.NET Framework 2.0详细介绍了Path类中可以获得各种信息。

作者:builder.com.cn 2007年4月26日

关键字:

  • 评论
  • 分享微博
  • 分享邮件
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace PathClassCSharp {
class Program {
static void Main(string[] args){
string testPath;
string p1;
string p2;
char[] fnChars;
inti;
testPath = "c:\\techrepublic.txt";
p1 = "c:\\";
p2 = "test.exe";
Console.WriteLine("Directory name: " + Path.GetDirectoryName(testPath));
if (Path.HasExtension(testPath)) {
Console.WriteLine("File extension: " + Path.GetExtension(testPath));
}
Console.WriteLine("Filename: " + Path.GetFileName(testPath));
Console.WriteLine("Filename w/o ext: " + Path.GetFileNameWithoutExtension(testPath));
Console.WriteLine("Full path: " + Path.GetFullPath(testPath));
fnChars = Path.GetInvalidFileNameChars();
if (Path.IsPathRooted(testPath)) {
Console.WriteLine("Root: " + Path.GetPathRoot(testPath));
}
Console.WriteLine("Random file name: " + Path.GetRandomFileName());
Console.WriteLine("Temp file name: " + Path.GetTempFileName());
if (File.Exists(testPath)) {
Console.WriteLine("File does exist.");
}
if (File.Exists(Path.Combine(p1, p2))) {
Console.WriteLine("The file " + Path.Combine(p1, p2) + " exists.");
} else {
Console.WriteLine("The file " + Path.Combine(p1, p2) + " does not exist.");
} } } }
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章