Dưới đây là một số thao tác cơ bản
Dùng File.ReadAllText() để đọc nội dung tệp và lưu vào một chuỗi.
using System;
using System.IO;
class Program
{
static void Main()
{
string path = "data.txt";
string content = File.ReadAllText(path);
Console.WriteLine(content);
}
}
Dùng File.ReadAllLines() để đọc từng dòng thành mảng string[].
string[] lines = File.ReadAllLines("data.txt");
foreach (string line in lines)
{
Console.WriteLine(line);
}
Dùng StreamReader để đọc từng dòng, hữu ích khi file lớn.
using (StreamReader reader = new StreamReader("data.txt"))
{
string line;
while ((line = reader.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
Dùng File.WriteAllText() để ghi nội dung mới vào file (nếu file có sẵn thì bị ghi đè).
File.WriteAllText("data.txt", "Xin chào! Đây là nội dung mới.");
Dùng File.WriteAllLines() để ghi danh sách dòng vào file.
string[] lines = { "Dòng 1", "Dòng 2", "Dòng 3" };
File.WriteAllLines("data.txt", lines);
Dùng File.AppendAllText() để ghi thêm nội dung vào cuối file.
File.AppendAllText("data.txt", "\nDòng mới được thêm vào.");
Hoặc File.AppendAllLines() nếu cần ghi thêm nhiều dòng.
string[] newLines = { "Dòng 4", "Dòng 5" };
File.AppendAllLines("data.txt", newLines);
Dùng StreamWriter để ghi từng dòng hoặc ghi thêm dữ liệu.
using (StreamWriter writer = new StreamWriter("data.txt"))
{
writer.WriteLine("Dòng đầu tiên");
writer.WriteLine("Dòng thứ hai");
}
Ghi thêm vào file (append = true):
using (StreamWriter writer = new StreamWriter("data.txt", append: true))
{
writer.WriteLine("Dòng mới thêm vào");
}
if (File.Exists("data.txt"))
{
Console.WriteLine("File tồn tại.");
}
else
{
Console.WriteLine("File không tồn tại.");
}
if (File.Exists("data.txt"))
{
File.Delete("data.txt");
Console.WriteLine("File đã bị xóa.");
}
Khi làm việc với file lớn, dùng StreamReader và StreamWriter thay vì File.ReadAllText().
Ví dụ: Copy nội dung từ file A sang file B
using (StreamReader reader = new StreamReader("input.txt"))
using (StreamWriter writer = new StreamWriter("output.txt"))
{
string line;
while ((line = reader.ReadLine()) != null)
{
writer.WriteLine(line);
}
}
Tìm kiếm:
Trong C#, bạn có thể xử lý tệp TXT bằng cách sử dụng System.IO.