在WinForm中,文件操作與I/O處理通常通過System.IO命名空間中的類來實現。以下是一些常用的文件操作和I/O處理方法:
string content = File.ReadAllText("pathToFile.txt");
File.WriteAllText("pathToFile.txt", "content");
if (File.Exists("pathToFile.txt"))
{
// 文件存在
}
Directory.CreateDirectory("pathToFolder");
File.Copy("sourceFile.txt", "destinationFile.txt");
File.Move("sourceFile.txt", "destinationFile.txt");
File.Delete("pathToFile.txt");
byte[] data = File.ReadAllBytes("pathToFile.txt");
File.WriteAllBytes("pathToFile.txt", data);
這些方法可以幫助您在WinForm應用程序中進行文件操作和I/O處理。請注意,使用這些方法時應該確保有足夠的權限來執行這些操作。