C# 对文件与文件夹的操作包括删除、移动与复制

时间:2023-11-16 07:20:46 

在.Net中,对文件(File)和文件夹(Folder)的操作可以使用File类和Directory类,也可以使用FileInfo类和DirectoryInfo类。文件夹(Folder)是只在Windows操作系统中使用的名词。在操作系统的理论中,人们更习惯于使用目录(Directory)这个名词。或许微软为了有朝一日将.Net移植到其他的操作系统中(实际上也有很多人也在做着这个项目),所以还是以Directory来命名操作文件夹的类。

File类和Directory类都是静态类。使用它们的好处是不需要初始化对象。如果你对某一个文件或文件夹只进行一次操作,那你最好使用该静态类的静态方法,比如File.Move,File.Delete等等。如果你需要对一个文件或文件夹进行多次操作,那最好还是使用FileInfo和DirectoryInfo类。因为File类和Directory是静态类,所以你每次对一个文件或文件夹进行操作之前,它们都需要对该文件或文件夹进行一些检查,比如authentication。如果使用FileInfo类和DirectoryInfo类,只在初始化类的对象时进行相关的检查工作,也就是说只需要做一次,所以如果你需要对某个文件或文件夹进行多次操作,那最好使用FileInfo类和DirectoryInfo类。

下面的这段代码演示了如何获得文件夹的信息,包括获得文件夹下的子文件夹,以及文件夹下的文件。这里使用了DirectoryInfo 类来完成,当然你也可以使用Directory静态类。


void DisplayFolder()
{
string folderFullName = @"c:\temp";
DirectoryInfo theFolder = new DirectoryInfo(folderFullName);
if (!theFolder.Exists)
throw new DirectoryNotFoundException("Folder not found: " + folderFullName);
// list all subfolders in folder
Console.WriteLine("Subfolders:");
foreach (DirectoryInfo subFolder in theFolder.GetDirectories())
{
Console.WriteLine(subFolder.Name);
}
// list all files in folder
Console.WriteLine();
Console.WriteLine("Files:");
foreach (FileInfo file in theFolder.GetFiles())
{
Console.WriteLine(file.Name);
}
}


下面演示了如何使用FileInfo类来获得文件的相关信息,包括文件的创建日期,文件的大小等等。当然你同样也可以使用File静态类来完成。


void DisplayFileInfo()
{
string folderFullName = @"c:\temp";
string fileName = "New Text Document.txt";
string fileFullName = Path.Combine(folderFullName, fileName);
FileInfo theFile = new FileInfo(fileFullName);
if (!theFile.Exists)
throw new FileNotFoundException("File not found: " + fileFullName);
Console.WriteLine(string.Format("Creation time: {0}", theFile.CreationTime.ToString()));
Console.WriteLine(string.Format("Size: {0} bytes", theFile.Length.ToString()));
}


下面的代码分别使用了File类和FileInfo类来演示如何删除文件


void DeleteFile1()
{
string fileToBeDeleted = @"c:\temp\New Text~ Document (3).txt";
if (File.Exists(fileToBeDeleted))
{
File.Delete(fileToBeDeleted);
}
}
void DeleteFile2()
{
string fileToBeDeleted = @"c:\temp\New Text~ Document (3).txt";
FileInfo file = new FileInfo(fileToBeDeleted);
if (file.Exists)
{
file.Delete();
}
}


下面的代码分别使用了Directory类和DirectoryInfo类来演示如何删除文件夹


void DeleteFolder1()
{
string folderToBeDeleted = @"c:\temp\test";
if (Directory.Exists(folderToBeDeleted))
{
// true is recursive delete:
Directory.Delete(folderToBeDeleted, true);
}
}

void DeleteFolder2()
{
string folderToBeDeleted = @"c:\temp\test";
DirectoryInfo folder = new DirectoryInfo(folderToBeDeleted);
if (folder.Exists)
{
folder.Delete(true);
}
}


下面的代码分别使用了File类和FileInfo类来演示如何移动文件


void MoveFile1()
{
string fileToMove = @"c:\temp\New Text Document.txt";
string fileNewDestination = @"c:\temp\test.txt";
if (File.Exists(fileToMove) && !File.Exists(fileNewDestination))
{
File.Move(fileToMove, fileNewDestination);
}
}

void MoveFile2()
{
string fileToMove = @"c:\temp\New Text Document.txt";
string fileNewDestination = @"c:\temp\test.txt";
FileInfo file = new FileInfo(fileToMove);
if (file.Exists)
{
file.MoveTo(fileNewDestination);
}
}


下面的代码分别使用了Directory类和DirectoryInfo类来演示如何移动文件夹


void MoveFolder1()
{
string folderToMove = @"c:\temp\test";
string folderNewDestination = @"c:\temp\test2";
if (Directory.Exists(folderToMove))
{
Directory.Move(folderToMove, folderNewDestination);
}
}

void MoveFolder2()
{
string folderToMove = @"c:\temp\test";
string folderNewDestination = @"c:\temp\test2";
DirectoryInfo folder = new DirectoryInfo(folderToMove);
if (folder.Exists)
{
folder.MoveTo(folderNewDestination);
}
}


下面的代码分别使用了File类和FileInfo类来演示如何复制文件


void CopyFile1()
{
string sourceFile = @"c:\temp\New Text Document.txt";
string destinationFile = @"c:\temp\test.txt";
if (File.Exists(sourceFile))
{
// true is overwrite
File.Copy(sourceFile, destinationFile, true);
}
}

void CopyFile2()
{
string sourceFile = @"c:\temp\New Text Document.txt";
string destinationFile = @"c:\temp\test.txt";
FileInfo file = new FileInfo(sourceFile);
if (file.Exists)
{
// true is overwrite
file.CopyTo(destinationFile, true);
}
}
标签:文件操作
0
投稿

猜你喜欢

  • C#操作目录与文件的方法步骤

    2023-11-23 20:45:52
  • Java热门笔试试题整理

    2023-11-25 08:56:33
  • 详解c# 中的DateTime

    2023-05-15 01:48:58
  • 发布 Android library 到 Maven 解析

    2022-11-01 22:20:13
  • Java 高并发的三种实现案例详解

    2023-12-16 10:57:30
  • 详解Java中List的正确的删除方法

    2021-09-19 13:20:42
  • Android动画之雷达扫描效果

    2021-06-10 08:06:52
  • Android编程中沉浸式状态栏的三种实现方式详解

    2022-02-10 11:56:23
  • C++多重继承与虚继承分析

    2023-04-22 14:49:16
  • Android实现本地上传图片并设置为圆形头像

    2022-05-17 03:50:28
  • JavaWeb简单文件上传流程的实战记录

    2023-04-02 09:14:59
  • Kotlin利用Regex如何构建正则表达式详解

    2022-12-25 18:31:10
  • Android ViewPager导航小圆点实现无限循环效果

    2022-07-09 13:10:33
  • C#定义并实现单链表实例解析

    2022-04-15 12:53:09
  • SpringMVC中RequestBody注解的List参数传递方式

    2023-06-29 09:56:04
  • Java运行时环境之ClassLoader类加载机制详解

    2022-07-18 04:54:05
  • C#基于WinForm实现串口通讯

    2023-12-26 02:03:39
  • anroid开发教程之spinner下拉列表的使用示例

    2023-10-05 05:42:22
  • C# 邮件发送和接收实现代码

    2021-11-23 03:32:36
  • Android实现蓝牙串口通讯

    2023-03-19 09:22:21
  • asp之家 软件编程 m.aspxhome.com