c# File文件操作

当使用C#处理文件时,可以使用System.IO命名空间中的FileFileInfo类来执行各种文件操作。以下是一些基本操作的示例:

  1. 创建文件
string filePath = @"C:\path\to\file.txt";
File.Create(filePath);
  1. 写入文件
string filePath = @"C:\path\to\file.txt";
string content = "Hello, World!";
File.WriteAllText(filePath, content);
 //写入文件
 using var fs = File.OpenWrite("D:\\Logs\\1.txt");
 using StreamWriter streamWriter = new StreamWriter(fs);
 streamWriter.WriteLine("hello world!");
  1. 读取文件内容
string filePath = @"C:\path\to\file.txt";
string content = File.ReadAllText(filePath);
Console.WriteLine(content);
//读取文件
using var fs = File.OpenRead("D:\\Logs\\1.txt");
using StreamReader streamReader = new StreamReader(fs);
string str = streamReader.ReadToEnd();
  1. 复制文件
string sourceFilePath = @"C:\path\to\sourceFile.txt";
string destFilePath = @"C:\path\to\destinationFile.txt";
File.Copy(sourceFilePath, destFilePath);
  1. 删除文件
string filePath = @"C:\path\to\file.txt";
File.Delete(filePath);

对于FileInfo类的操作也类似,不同之处在于它提供了更多的文件属性信息。以下是使用FileInfo类的示例:

  1. 获取文件信息
string filePath = @"C:\path\to\file.txt";
FileInfo fileInfo = new FileInfo(filePath);
Console.WriteLine("File Name: " + fileInfo.Name);
Console.WriteLine("File Size: " + fileInfo.Length);
Console.WriteLine("Creation Time: " + fileInfo.CreationTime);
  1. 移动文件
string sourceFilePath = @"C:\path\to\sourceFile.txt";
string destFilePath = @"C:\path\to\destinationFolder\destinationFile.txt";
FileInfo fileInfo = new FileInfo(sourceFilePath);
fileInfo.MoveTo(destFilePath);
  1. 检查文件是否存在
string filePath = @"C:\path\to\file.txt";
FileInfo fileInfo = new FileInfo(filePath);
if (fileInfo.Exists)
{
    Console.WriteLine("File exists");
}

这些示例演示了FileFileInfo类的一些基本操作,你可以根据自己的需求进行更多的操作。

你可能感兴趣的:(c#基础,c#)