File.WriteAllLines メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
新しいファイルを作成し、1 つ以上の文字列をファイルに書き込んでから、ファイルを閉じます。
オーバーロード
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[]
ファイルに書き込む文字列配列。
例外
.NET Framework および .NET Core バージョン 2.1 より前: path
は長さ 0 の文字列で、空白のみを含むか、1 つ以上の無効な文字を含みます。
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
は長さ 0 の文字列、空白のみを含む、または GetInvalidPathChars() メソッドで定義された 1 つ以上の無効な文字を含みます。
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
は長さ 0 の文字列、空白のみを含む、または GetInvalidPathChars() メソッドで定義された 1 つ以上の無効な文字を含みます。
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>) メソッドの既定の動作では、バイト オーダー マーク (BOM) なしで UTF-8 エンコードを使用してデータを書き出します。 バイト オーダー マークなどの UTF-8 識別子をファイルの先頭に含める必要がある場合は、UTF8 エンコードで WriteAllLines(String, IEnumerable<String>, Encoding) メソッドオーバーロードを使用します。
ターゲット ファイルが既に存在する場合は、切り捨てられ、上書きされます。
このメソッドを使用すると、List<T>、HashSet<T>、SortedSet<T> クラスなど、コンストラクター内の IEnumerable<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[]
ファイルに書き込む文字列配列。
例外
.NET Framework および .NET Core バージョン 2.1 より前: path
は長さ 0 の文字列で、空白のみを含むか、1 つ以上の無効な文字を含みます。
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 メソッドの既定の動作は、バイト オーダー マーク (BOM) なしで UTF-8 エンコードを使用してデータを書き出すことです。 バイト オーダー マークなどの UTF-8 識別子をファイルの先頭に含める必要がある場合は、UTF8 エンコードで WriteAllLines(String, String[], Encoding) メソッドオーバーロードを使用します。
文字列配列とファイル パスを指定すると、このメソッドは指定されたファイルを開き、文字列配列をファイルに書き込んでから、ファイルを閉じます。
適用対象
.NET