在C#中,可以使用System.IO
命名空间中的FileInfo
类来处理文件操作。以下是一些常见的文件操作示例:
using System.IO;
string filePath = @"C:\example\newfile.txt";
File.Create(filePath);
using System.IO;
string filePath = @"C:\example\file.txt";
string content = File.ReadAllText(filePath);
Console.WriteLine(content);
using System.IO;
string filePath = @"C:\example\file.txt";
string content = "Hello, World!";
File.WriteAllText(filePath, content);
using System.IO;
string filePath = @"C:\example\file.txt";
string content = "\nThis is a new line.";
File.AppendAllText(filePath, content);
using System.IO;
string filePath = @"C:\example\file.txt";
File.Delete(filePath);
using System.IO;
string filePath = @"C:\example\file.txt";
bool exists = File.Exists(filePath);
Console.WriteLine(exists);
using System.IO;
string filePath = @"C:\example\file.txt";
FileInfo fileInfo = new FileInfo(filePath);
long size = fileInfo.Length;
DateTime createdTime = fileInfo.CreationTime;
Console.WriteLine($"Size: {size} bytes, Created: {createdTime}");
这些示例展示了如何使用FileInfo
类执行基本的文件操作。在实际项目中,你可能需要根据需求对这些操作进行调整,例如使用异常处理来确保程序的健壮性。