FileInfo.CreateText メソッド
新しいテキスト ファイルに書き込みを行う StreamWriter を作成します。
Public Function CreateText() As StreamWriter
[C#]
public StreamWriter CreateText();
[C++]
public: StreamWriter* CreateText();
[JScript]
public function CreateText() : StreamWriter;
戻り値
新しい StreamWriter 。
例外
例外の種類 | 条件 |
---|---|
UnauthorizedAccessException | 指定したファイル名はディレクトリです。 |
IOException | ディスクが読み取り専用です。 |
SecurityException | 呼び出し元に、必要なアクセス許可がありません。 |
解説
既定では、すべてのユーザーに、新しいファイルに対する完全な読み書きアクセス権が与えられます。
このメソッドの使用例については、以下の「使用例」を参照してください。その他の一般的な I/O タスクまたは関連する I/O タスクの例を次の表に示します。
実行するタスク | 参考例があるトピック |
---|---|
テキスト ファイルに書き込む。 | ファイルへのテキストの書き込み |
テキスト ファイルから読み取る。 | ファイルからのテキストの読み取り |
テキストをファイルに追加する。 | ログ ファイルのオープンと追加 |
ファイルをコピーする。 | File.Copy |
ファイルの名前を変更、またはファイルを移動する。 | File.Move |
ファイルを削除する。 | File.Delete |
バイナリ ファイルから読み取る。 | 新しく作成したデータ ファイルの読み取りと書き込み |
バイナリ ファイルに書き込む。 | 新しく作成したデータ ファイルの読み取りと書き込み |
ディレクトリを作成する。 | CreateDirectory |
使用例
[Visual Basic, C#, C++] CreateText メソッドの例を次に示します。
Imports System
Imports System.IO
Imports System.Text
Public Class Test
Public Shared Sub Main()
Dim path As String = "c:\temp\MyTest.txt"
Dim fi As FileInfo = New FileInfo(path)
If fi.Exists = False Then
'Create a file to write to.
Dim sw As StreamWriter = fi.CreateText()
sw.WriteLine("Hello")
sw.WriteLine("And")
sw.WriteLine("Welcome")
sw.Flush()
sw.Close()
End If
'Open the file to read from.
Dim sr As StreamReader = fi.OpenText()
Do While sr.Peek() >= 0
Console.WriteLine(sr.ReadLine())
Loop
sr.Close()
End Sub
End Class
[C#]
using System;
using System.IO;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
FileInfo fi = new FileInfo(path);
if (!fi.Exists)
{
//Create a file to write to.
using (StreamWriter sw = fi.CreateText())
{
sw.WriteLine("Hello");
sw.WriteLine("And");
sw.WriteLine("Welcome");
}
}
//Open the file to read from.
using (StreamReader sr = fi.OpenText())
{
string s = "";
while ((s = sr.ReadLine()) != null)
{
Console.WriteLine(s);
}
}
}
}
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::IO;
int main() {
String* path = S"c:\\temp\\MyTest.txt";
FileInfo* fi = new FileInfo(path);
if (!fi->Exists) {
//Create a file to write to.
StreamWriter* sw = fi->CreateText();
try {
sw->WriteLine(S"Hello");
sw->WriteLine(S"And");
sw->WriteLine(S"Welcome");
} __finally {
if (sw) __try_cast<IDisposable*>(sw)->Dispose();
}
}
//Open the file to read from.
StreamReader* sr = fi->OpenText();
try {
String* s = S"";
while (s = sr->ReadLine()) {
Console::WriteLine(s);
}
} __finally {
if (sr) __try_cast<IDisposable*>(sr)->Dispose();
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
.NET Framework セキュリティ:
- FileIOPermission (ファイルの読み書き用) FileIOPermissionAccess.Read 、 FileIOPermissionAccess.Write (関連する列挙体)
参照
FileInfo クラス | FileInfo メンバ | System.IO 名前空間 | StreamWriter | 入出力操作 | ファイルからのテキストの読み取り | ファイルへのテキストの書き込み | 基本のファイル I/O | 新しく作成したデータ ファイルの読み取りと書き込み