File.WriteAllLines 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的檔案、將一或多個字串寫入檔案,然後關閉檔案。
多載
WriteAllLines(String, String[], Encoding) |
建立新的檔案、使用指定的編碼將指定的字串陣列寫入檔案,然後關閉檔案。 |
WriteAllLines(String, IEnumerable<String>, Encoding) |
使用指定的編碼方式建立新的檔案、將字串集合寫入檔案,然後關閉檔案。 |
WriteAllLines(String, IEnumerable<String>) |
建立新的檔案、將字串集合寫入檔案,然後關閉檔案。 |
WriteAllLines(String, String[]) |
建立新的檔案、將指定的字串數位寫入檔案,然後關閉檔案。 |
WriteAllLines(String, String[], Encoding)
- 來源:
- File.cs
- 來源:
- File.cs
- 來源:
- File.cs
建立新的檔案、使用指定的編碼將指定的字串陣列寫入檔案,然後關閉檔案。
public:
static void WriteAllLines(System::String ^ path, cli::array <System::String ^> ^ contents, System::Text::Encoding ^ encoding);
public static void WriteAllLines (string path, string[] contents, System.Text.Encoding encoding);
static member WriteAllLines : string * string[] * System.Text.Encoding -> unit
Public Shared Sub WriteAllLines (path As String, contents As String(), encoding As Encoding)
參數
- path
- String
要寫入的檔案。
- contents
- String[]
要寫入檔案的字串數位。
例外狀況
比 2.1 舊的 .NET Framework 和 .NET Core 版本:path
是長度為零的字串、只包含空格符,或包含一或多個無效字元。 您可以使用 GetInvalidPathChars() 方法來查詢無效的字元。
path
或 contents
null
。
指定的路徑、檔名或兩者都超過系統定義的最大長度。
指定的路徑無效(例如,它位於未對應的磁碟驅動器上)。
開啟檔案時發生 I/O 錯誤。
path
指定唯讀的檔案。
-或-
path
指定隱藏的檔案。
-或-
目前平臺不支援此作業。
-或-
path
指定目錄。
-或-
呼叫端沒有必要的許可權。
path
格式無效。
呼叫端沒有必要的許可權。
範例
下列程式代碼範例示範如何使用 WriteAllLines 方法將文字寫入檔案。 在此範例中,如果檔案不存在,則會建立檔案,並將文字加入其中。
using System;
using System.IO;
using System.Text;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
// This text is added only once to the file.
if (!File.Exists(path))
{
// Create a file to write to.
string[] createText = { "Hello", "And", "Welcome" };
File.WriteAllLines(path, createText, Encoding.UTF8);
}
// This text is always added, making the file longer over time
// if it is not deleted.
string appendText = "This is extra text" + Environment.NewLine;
File.AppendAllText(path, appendText, Encoding.UTF8);
// Open the file to read from.
string[] readText = File.ReadAllLines(path, Encoding.UTF8);
foreach (string s in readText)
{
Console.WriteLine(s);
}
}
}
open System
open System.IO
open System.Text
let path = @"c:\temp\MyTest.txt"
// This text is added only once to the file.
if File.Exists path |> not then
// Create a file to write to.
let createText = [ "Hello"; "And"; "Welcome" ]
File.WriteAllLines(path, createText, Encoding.UTF8)
// This text is always added, making the file longer over time
// if it is not deleted.
let appendText =
"This is extra text" + Environment.NewLine
File.AppendAllText(path, appendText, Encoding.UTF8)
// Open the file to read from.
let readText = File.ReadAllLines(path, Encoding.UTF8)
for s in readText do
printfn $"{s}"
Imports System.IO
Imports System.Text
Public Class Test
Public Shared Sub Main()
Dim path As String = "c:\temp\MyTest.txt"
Dim sw As StreamWriter
' This text is added only once to the file.
If File.Exists(path) = False Then
' Create a file to write to.
Dim createText() As String = {"Hello", "And", "Welcome"}
File.WriteAllLines(path, createText, Encoding.UTF8)
End If
' This text is always added, making the file longer over time
' if it is not deleted.
Dim appendText As String = "This is extra text" + Environment.NewLine
File.AppendAllText(path, appendText, Encoding.UTF8)
' Open the file to read from.
Dim readText() As String = File.ReadAllLines(path, Encoding.UTF8)
Dim s As String
For Each s In readText
Console.WriteLine(s)
Next
End Sub
End Class
備註
如果目標檔案已經存在,則會遭到截斷並覆寫。
指定字串陣列和檔案路徑時,這個方法會開啟指定的檔案、使用指定的編碼將字串陣列寫入檔案,然後關閉檔案。
適用於
WriteAllLines(String, IEnumerable<String>, Encoding)
- 來源:
- File.cs
- 來源:
- File.cs
- 來源:
- File.cs
使用指定的編碼方式建立新的檔案、將字串集合寫入檔案,然後關閉檔案。
public:
static void WriteAllLines(System::String ^ path, System::Collections::Generic::IEnumerable<System::String ^> ^ contents, System::Text::Encoding ^ encoding);
public static void WriteAllLines (string path, System.Collections.Generic.IEnumerable<string> contents, System.Text.Encoding encoding);
static member WriteAllLines : string * seq<string> * System.Text.Encoding -> unit
Public Shared Sub WriteAllLines (path As String, contents As IEnumerable(Of String), encoding As Encoding)
參數
- path
- String
要寫入的檔案。
- contents
- IEnumerable<String>
要寫入檔案的行。
- encoding
- Encoding
要使用的字元編碼。
例外狀況
2.1 之前的 .NET Framework 和 .NET Core 版本:path
是長度為零的字串、只包含空格符,或包含 GetInvalidPathChars() 方法定義的一或多個無效字元。
path
、contents
或 encoding
null
。
path
無效(例如,它位於未對應的磁碟驅動器上)。
開啟檔案時發生 I/O 錯誤。
path
超過系統定義的最大長度。
path
格式無效。
呼叫端沒有必要的許可權。
path
指定唯讀的檔案。
-或-
path
指定隱藏的檔案。
-或-
目前平臺不支援此作業。
-或-
path
是目錄。
-或-
呼叫端沒有必要的許可權。
備註
如果目標檔案已經存在,則會遭到截斷並覆寫。
您可以使用這個方法來建立包含下列各項的檔案:
LINQ to Objects 查詢檔案行的結果,如使用 ReadLines 方法取得。
實作字串 IEnumerable<T> 的集合內容。
適用於
WriteAllLines(String, IEnumerable<String>)
- 來源:
- File.cs
- 來源:
- File.cs
- 來源:
- File.cs
建立新的檔案、將字串集合寫入檔案,然後關閉檔案。
public:
static void WriteAllLines(System::String ^ path, System::Collections::Generic::IEnumerable<System::String ^> ^ contents);
public static void WriteAllLines (string path, System.Collections.Generic.IEnumerable<string> contents);
static member WriteAllLines : string * seq<string> -> unit
Public Shared Sub WriteAllLines (path As String, contents As IEnumerable(Of String))
參數
- path
- String
要寫入的檔案。
- contents
- IEnumerable<String>
要寫入檔案的行。
例外狀況
2.1 之前的 .NET Framework 和 .NET Core 版本:path
是長度為零的字串、只包含空格符,或包含 GetInvalidPathChars() 方法定義的一或多個無效字元。
path
或 contents
null
。
path
無效(例如,它位於未對應的磁碟驅動器上)。
開啟檔案時發生 I/O 錯誤。
path
超過系統定義的最大長度。
path
格式無效。
呼叫端沒有必要的許可權。
path
指定唯讀的檔案。
-或-
path
指定隱藏的檔案。
-或-
目前平臺不支援此作業。
-或-
path
是目錄。
-或-
呼叫端沒有必要的許可權。
範例
下列範例會將選取的行從範例數據檔寫入檔案。
using System;
using System.IO;
using System.Linq;
class Program
{
static string dataPath = @"c:\temp\timestamps.txt";
static void Main(string[] args)
{
CreateSampleFile();
var JulyWeekends = from line in File.ReadLines(dataPath)
where (line.StartsWith("Saturday") ||
line.StartsWith("Sunday")) &
line.Contains("July")
select line;
File.WriteAllLines(@"C:\temp\selectedDays.txt", JulyWeekends);
var MarchMondays = from line in File.ReadLines(dataPath)
where line.StartsWith("Monday") &&
line.Contains("March")
select line;
File.AppendAllLines(@"C:\temp\selectedDays.txt", MarchMondays);
}
static void CreateSampleFile()
{
DateTime TimeStamp = new DateTime(1700, 1, 1);
using (StreamWriter sw = new StreamWriter(dataPath))
{
for (int i = 0; i < 500; i++)
{
DateTime TS1 = TimeStamp.AddYears(i);
DateTime TS2 = TS1.AddMonths(i);
DateTime TS3 = TS2.AddDays(i);
sw.WriteLine(TS3.ToLongDateString());
}
}
}
}
open System
open System.IO
let dataPath = @"c:\temp\timestamps.txt"
let createSampleFile () =
let timeStamp = DateTime(1700, 1, 1)
use sw = new StreamWriter(dataPath)
for i = 0 to 499 do
let ts1 = timeStamp.AddYears i
let ts2 = ts1.AddMonths i
let ts3 = ts2.AddDays i
ts3.ToLongDateString() |> sw.WriteLine
createSampleFile ()
let julyWeekends =
File.ReadLines dataPath
|> Seq.filter (fun line ->
(line.StartsWith "Saturday"
|| line.StartsWith "Sunday")
&& line.Contains "July")
File.WriteAllLines(@"C:\temp\selectedDays.txt", julyWeekends)
let marchMondays =
File.ReadLines dataPath
|> Seq.filter (fun line -> line.StartsWith "Monday" && line.Contains "March")
File.AppendAllLines(@"C:\temp\selectedDays.txt", marchMondays)
Imports System.IO
Imports System.Linq
Class Program
Shared dataPath As String = "c:\temp\timestamps.txt"
Public Shared Sub Main(ByVal args As String())
CreateSampleFile()
Dim JulyWeekends = From line In File.ReadLines(dataPath) _
Where (line.StartsWith("Saturday") OrElse _
line.StartsWith("Sunday")) And line.Contains("July") _
Select line
File.WriteAllLines("C:\temp\selectedDays.txt", JulyWeekends)
Dim MarchMondays = From line In File.ReadLines(dataPath) _
Where line.StartsWith("Monday") AndAlso line.Contains("March") _
Select line
File.AppendAllLines("C:\temp\selectedDays.txt", MarchMondays)
End Sub
Private Shared Sub CreateSampleFile()
Dim TimeStamp As New DateTime(1700, 1, 1)
Using sw As New StreamWriter(dataPath)
For i As Integer = 0 To 499
Dim TS1 As DateTime = TimeStamp.AddYears(i)
Dim TS2 As DateTime = TS1.AddMonths(i)
Dim TS3 As DateTime = TS2.AddDays(i)
sw.WriteLine(TS3.ToLongDateString())
Next
End Using
End Sub
End Class
備註
WriteAllLines(String, IEnumerable<String>) 方法的預設行為是使用UTF-8編碼來寫出數據,而不使用位元組順序標記 (BOM)。 如果需要在檔案開頭包含UTF-8標識元,例如位元組順序標記,請使用具有 UTF8 編碼的 WriteAllLines(String, IEnumerable<String>, Encoding) 方法多載。
如果目標檔案已經存在,則會遭到截斷並覆寫。
您可以使用這個方法來建立集合類別的內容,該集合類別會在其建構函式中接受 IEnumerable<T>,例如 List<T>、HashSet<T>或 SortedSet<T> 類別。
適用於
WriteAllLines(String, String[])
- 來源:
- File.cs
- 來源:
- File.cs
- 來源:
- File.cs
建立新的檔案、將指定的字串數位寫入檔案,然後關閉檔案。
public:
static void WriteAllLines(System::String ^ path, cli::array <System::String ^> ^ contents);
public static void WriteAllLines (string path, string[] contents);
static member WriteAllLines : string * string[] -> unit
Public Shared Sub WriteAllLines (path As String, contents As String())
參數
- path
- String
要寫入的檔案。
- contents
- String[]
要寫入檔案的字串數位。
例外狀況
比 2.1 舊的 .NET Framework 和 .NET Core 版本:path
是長度為零的字串、只包含空格符,或包含一或多個無效字元。 您可以使用 GetInvalidPathChars() 方法來查詢無效的字元。
path
或 contents
null
。
指定的路徑、檔名或兩者都超過系統定義的最大長度。
指定的路徑無效(例如,它位於未對應的磁碟驅動器上)。
開啟檔案時發生 I/O 錯誤。
path
指定唯讀的檔案。
-或-
path
指定隱藏的檔案。
-或-
目前平臺不支援此作業。
-或-
path
指定目錄。
-或-
呼叫端沒有必要的許可權。
path
格式無效。
呼叫端沒有必要的許可權。
範例
下列程式代碼範例示範如何使用 WriteAllLines 方法將文字寫入檔案。 在此範例中,如果檔案不存在,則會建立檔案,並將文字加入其中。
using System;
using System.IO;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
// This text is added only once to the file.
if (!File.Exists(path))
{
// Create a file to write to.
string[] createText = { "Hello", "And", "Welcome" };
File.WriteAllLines(path, createText);
}
// This text is always added, making the file longer over time
// if it is not deleted.
string appendText = "This is extra text" + Environment.NewLine;
File.AppendAllText(path, appendText);
// Open the file to read from.
string[] readText = File.ReadAllLines(path);
foreach (string s in readText)
{
Console.WriteLine(s);
}
}
}
open System
open System.IO
let path = @"c:\temp\MyTest.txt"
// This text is added only once to the file.
if File.Exists path |> not then
// Create a file to write to.
let createText = [ "Hello"; "And"; "Welcome" ]
File.WriteAllLines(path, createText)
// This text is always added, making the file longer over time
// if it is not deleted.
let appendText =
"This is extra text" + Environment.NewLine
File.AppendAllText(path, appendText)
// Open the file to read from.
let readText = File.ReadAllLines path
for s in readText do
printfn $"{s}"
Imports System.IO
Public Class Test
Public Shared Sub Main()
Dim path As String = "c:\temp\MyTest.txt"
Dim sw As StreamWriter
' This text is added only once to the file.
If File.Exists(path) = False Then
' Create a file to write to.
Dim createText() As String = {"Hello", "And", "Welcome"}
File.WriteAllLines(path, createText)
End If
' This text is always added, making the file longer over time
' if it is not deleted.
Dim appendText As String = "This is extra text" + Environment.NewLine
File.AppendAllText(path, appendText)
' Open the file to read from.
Dim readText() As String = File.ReadAllLines(path)
Dim s As String
For Each s In readText
Console.WriteLine(s)
Next
End Sub
End Class
備註
如果目標檔案已經存在,則會遭到截斷並覆寫。
WriteAllLines 方法的預設行為是使用UTF-8編碼來寫出數據,而不使用位元組順序標記 (BOM)。 如果需要在檔案開頭包含UTF-8標識元,例如位元組順序標記,請使用具有 UTF8 編碼的 WriteAllLines(String, String[], Encoding) 方法多載。
指定字串陣列和檔案路徑時,這個方法會開啟指定的檔案、將字元串陣列寫入檔案,然後關閉檔案。