.Net笔记:System.IO之windows文件操作的深入分析
网络编程 2021-07-04 22:40www.168986.cn编程入门
本篇文章是对.Net中windows文件操作的使用进行了详细的分析介绍,需要的朋友参考下
在.Net中处理系统文件相关的几个类分别是File、Directory、FileInfo、DirectoryInfo、DriveInfo、FileSystemWatcher。本文介绍下这几个类的用法。
1.File类提供静态方法用来创建、移动、复制、删除文件的操作,并可以打开文件流
2.Directory类提供静态方法用来创建、移动、复制、删除目录的操作
3.FileInfo类用类实例实现创建、复制、移动、删除文件的操作
4.DirectoryInfo提供创建、移动、复制、删除目录的操作,并可以枚举子目录
5.DriveInfo可以获得windows操作系统中的磁盘信息
6.FileSystemWatcher用来监视文件或目录变化,并引发事件
7.Path类提供文件名目录名操作的静态方法
File、FileInfo、Directory、DirectoryInfo这几个类的使用方法都非常简单就不做赘述了。
1.如何使用DriveInfo获得windows系统磁盘信息
不允许在程序中自己构造DriveInfo的实例,可以通过DriveInfo的静态方法GetDrives()获得windows系统中所有的磁盘,包括硬盘,cd以及u盘;注意在访问磁盘属性时需要先判断其IsReady属性是否为true,IsReady为false时访问磁盘的一些属性时会抛出异常。如下实例代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace aboutio
{
class Program
{
static void Main(string[] args)
{
DriveInfo[] drives = DriveInfo.GetDrives();
foreach (DriveInfo drive in drives)
{
if(drive.IsReady)
Console.WriteLine("类型{0} 卷标{1} 名称{2} 总空间{3} 剩余空间{4}",drive.DriveType, drive.VolumeLabel,drive.Name,drive.TotalSize,drive.TotalFreeSpace);
else
Console.WriteLine("类型{0} is not ready",drive.DriveType);
}
Console.ReadLine();
}
}
}
2. 使用FileSystemWatcher监视目录
FileSystemWatcher用来监视目录或者文件的修改,创建,删除,要使FileSystemWatcher开始监视必须设置其EnableRaisingEvents属性为true,如下示例
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
namespace UseFileSystemWatcher
{
class Program
{
static void Main(string[] args)
{
//声明要监视的目录
string watchPath = "D:\\watch";
FileSystemWatcher watcher = new FileSystemWatcher(watchPath, ".");
//添加文件变化处理事件
watcher.Changed += new FileSystemEventHandler(Watcher_Changed);
//添加文件创建处理事件
watcher.Created += new FileSystemEventHandler(Watcher_Created);
//添加文件删除处理事件
watcher.Deleted += new FileSystemEventHandler(Watcher_Deleted);
//添加错误处理
watcher.Error += new ErrorEventHandler(Watcher_Error);
//启动监视
watcher.EnableRaisingEvents = true;
Thread.Sleep(1000 60);
Console.WriteLine("press any key to exit..");
Console.Read();
}
static void Watcher_Error(object sender, ErrorEventArgs e)
{
Console.WriteLine("错误" + e.ToString());
}
static void Watcher_Deleted(object sender, FileSystemEventArgs e)
{
Console.WriteLine(e.ChangeType + ":" + e.FullPath);
}
static void Watcher_Created(object sender, FileSystemEventArgs e)
{
Console.WriteLine(e.ChangeType + ":" + e.FullPath);
}
static void Watcher_Changed(object sender, FileSystemEventArgs e)
{
Console.WriteLine(e.ChangeType + ":" + e.FullPath);
}
}
}
3. Path 类提供了一组处理路径的静态方法
1)Path.GetDirectoryName(string path) 返回目录名,需要注意路径末尾是否有反斜杠对结果是有影响的,如下
Path.GetDirectoryName("d:\\abc") 将返回 d:\
Path.GetDirectoryName("d:\\abc\") 将返回 d:\abc
2)Path.GetRandomFileName()将返回随机的文件名
3)Path. GetFileNameWithoutExtension(“d:\\abc.txt”) 将返回abc
4)Path.GetInvalidPathChars() 将返回禁止在路径中使用的字符
5)Path. GetInvalidFileNameChars()将返回禁止在文件名中使用的字符
6) Path.Combine(string left,string right)合并两个路径
需要注意的是,以上提到的这几个文件系统相关的类的底层都调用了windows的api,也就是说这些类只可以在windows系统下用,而在其他操作系统下是不可用的。
1.File类提供静态方法用来创建、移动、复制、删除文件的操作,并可以打开文件流
2.Directory类提供静态方法用来创建、移动、复制、删除目录的操作
3.FileInfo类用类实例实现创建、复制、移动、删除文件的操作
4.DirectoryInfo提供创建、移动、复制、删除目录的操作,并可以枚举子目录
5.DriveInfo可以获得windows操作系统中的磁盘信息
6.FileSystemWatcher用来监视文件或目录变化,并引发事件
7.Path类提供文件名目录名操作的静态方法
File、FileInfo、Directory、DirectoryInfo这几个类的使用方法都非常简单就不做赘述了。
1.如何使用DriveInfo获得windows系统磁盘信息
不允许在程序中自己构造DriveInfo的实例,可以通过DriveInfo的静态方法GetDrives()获得windows系统中所有的磁盘,包括硬盘,cd以及u盘;注意在访问磁盘属性时需要先判断其IsReady属性是否为true,IsReady为false时访问磁盘的一些属性时会抛出异常。如下实例代码
代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace aboutio
{
class Program
{
static void Main(string[] args)
{
DriveInfo[] drives = DriveInfo.GetDrives();
foreach (DriveInfo drive in drives)
{
if(drive.IsReady)
Console.WriteLine("类型{0} 卷标{1} 名称{2} 总空间{3} 剩余空间{4}",drive.DriveType, drive.VolumeLabel,drive.Name,drive.TotalSize,drive.TotalFreeSpace);
else
Console.WriteLine("类型{0} is not ready",drive.DriveType);
}
Console.ReadLine();
}
}
}
2. 使用FileSystemWatcher监视目录
FileSystemWatcher用来监视目录或者文件的修改,创建,删除,要使FileSystemWatcher开始监视必须设置其EnableRaisingEvents属性为true,如下示例
代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
namespace UseFileSystemWatcher
{
class Program
{
static void Main(string[] args)
{
//声明要监视的目录
string watchPath = "D:\\watch";
FileSystemWatcher watcher = new FileSystemWatcher(watchPath, ".");
//添加文件变化处理事件
watcher.Changed += new FileSystemEventHandler(Watcher_Changed);
//添加文件创建处理事件
watcher.Created += new FileSystemEventHandler(Watcher_Created);
//添加文件删除处理事件
watcher.Deleted += new FileSystemEventHandler(Watcher_Deleted);
//添加错误处理
watcher.Error += new ErrorEventHandler(Watcher_Error);
//启动监视
watcher.EnableRaisingEvents = true;
Thread.Sleep(1000 60);
Console.WriteLine("press any key to exit..");
Console.Read();
}
static void Watcher_Error(object sender, ErrorEventArgs e)
{
Console.WriteLine("错误" + e.ToString());
}
static void Watcher_Deleted(object sender, FileSystemEventArgs e)
{
Console.WriteLine(e.ChangeType + ":" + e.FullPath);
}
static void Watcher_Created(object sender, FileSystemEventArgs e)
{
Console.WriteLine(e.ChangeType + ":" + e.FullPath);
}
static void Watcher_Changed(object sender, FileSystemEventArgs e)
{
Console.WriteLine(e.ChangeType + ":" + e.FullPath);
}
}
}
3. Path 类提供了一组处理路径的静态方法
1)Path.GetDirectoryName(string path) 返回目录名,需要注意路径末尾是否有反斜杠对结果是有影响的,如下
Path.GetDirectoryName("d:\\abc") 将返回 d:\
Path.GetDirectoryName("d:\\abc\") 将返回 d:\abc
2)Path.GetRandomFileName()将返回随机的文件名
3)Path. GetFileNameWithoutExtension(“d:\\abc.txt”) 将返回abc
4)Path.GetInvalidPathChars() 将返回禁止在路径中使用的字符
5)Path. GetInvalidFileNameChars()将返回禁止在文件名中使用的字符
6) Path.Combine(string left,string right)合并两个路径
需要注意的是,以上提到的这几个文件系统相关的类的底层都调用了windows的api,也就是说这些类只可以在windows系统下用,而在其他操作系统下是不可用的。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程