Tôi cần lấy mã của mình để đọc nếu tệp không tồn tại, hãy tạo thêm phần khác. Ngay bây giờ nó đang đọc nếu nó tồn tại, hãy tạo và nối thêm. Đây là mã:
if (File.Exists(path))
{
using (StreamWriter sw = File.CreateText(path))
{
Tôi sẽ làm điều này?
if (! File.Exists(path))
{
using (StreamWriter sw = File.CreateText(path))
{
Biên tập:
string path = txtFilePath.Text;
if (!File.Exists(path))
{
using (StreamWriter sw = File.CreateText(path))
{
foreach (var line in employeeList.Items)
{
sw.WriteLine(((Employee)line).FirstName);
sw.WriteLine(((Employee)line).LastName);
sw.WriteLine(((Employee)line).JobTitle);
}
}
}
else
{
StreamWriter sw = File.AppendText(path);
foreach (var line in employeeList.Items)
{
sw.WriteLine(((Employee)line).FirstName);
sw.WriteLine(((Employee)line).LastName);
sw.WriteLine(((Employee)line).JobTitle);
}
sw.Close();
}
}