Oto najlepsze i najczęściej stosowane metody zapisu i odczytu plików:
using System.IO;
File.AppendAllText(sFilePathAndName, sTextToWrite);//add text to existing file
File.WriteAllText(sFilePathAndName, sTextToWrite);//will overwrite the text in the existing file. If the file doesn't exist, it will create it.
File.ReadAllText(sFilePathAndName);
Starym sposobem, którego nauczyłem się na studiach, było korzystanie z czytnika / pisarki strumieniowej, ale metody we / wy File są mniej niezręczne i wymagają mniejszej liczby wierszy kodu. Możesz wpisać „Plik”. w swoim IDE (upewnij się, że dołączasz instrukcję importu System.IO) i zobacz wszystkie dostępne metody. Poniżej znajdują się przykładowe metody odczytu / zapisu ciągów do / z plików tekstowych (.txt.) Za pomocą aplikacji Windows Forms.
Dołącz tekst do istniejącego pliku:
private void AppendTextToExistingFile_Click(object sender, EventArgs e)
{
string sTextToAppend = txtMainUserInput.Text;
//first, check to make sure that the user entered something in the text box.
if (sTextToAppend == "" || sTextToAppend == null)
{MessageBox.Show("You did not enter any text. Please try again");}
else
{
string sFilePathAndName = getFileNameFromUser();// opens the file dailog; user selects a file (.txt filter) and the method returns a path\filename.txt as string.
if (sFilePathAndName == "" || sFilePathAndName == null)
{
//MessageBox.Show("You cancalled"); //DO NOTHING
}
else
{
sTextToAppend = ("\r\n" + sTextToAppend);//create a new line for the new text
File.AppendAllText(sFilePathAndName, sTextToAppend);
string sFileNameOnly = sFilePathAndName.Substring(sFilePathAndName.LastIndexOf('\\') + 1);
MessageBox.Show("Your new text has been appended to " + sFileNameOnly);
}//end nested if/else
}//end if/else
}//end method AppendTextToExistingFile_Click
Uzyskaj nazwę pliku od użytkownika za pomocą eksploratora plików / otwórz okno dialogowe pliku (będzie to konieczne, aby wybrać istniejące pliki).
private string getFileNameFromUser()//returns file path\name
{
string sFileNameAndPath = "";
OpenFileDialog fd = new OpenFileDialog();
fd.Title = "Select file";
fd.Filter = "TXT files|*.txt";
fd.InitialDirectory = Environment.CurrentDirectory;
if (fd.ShowDialog() == DialogResult.OK)
{
sFileNameAndPath = (fd.FileName.ToString());
}
return sFileNameAndPath;
}//end method getFileNameFromUser
Pobierz tekst z istniejącego pliku:
private void btnGetTextFromExistingFile_Click(object sender, EventArgs e)
{
string sFileNameAndPath = getFileNameFromUser();
txtMainUserInput.Text = File.ReadAllText(sFileNameAndPath); //display the text
}
string.Write(filename)
. Dlaczego rozwiązanie Microsofts jest prostsze / lepsze niż moje?