File.ReadAllText(path) // (回傳string)
File.ReadAllLines(path) // (回傳array of strings)
File.ReadAllBytes(path) // (回傳一個byte array)
下列四個static methods同樣只需要一個步驟就可把資料寫入到檔案中,傳入參數是路徑以及寫入的資料
File.WriteAllText(path, string)
File.WriteAllLines(path, array of strings)
File.WriteAllBytes(path, bytes)
File.AppendAllText(path, string)