File.WriteAllText(String,String,Encoding)是一个内置的File类方法,用于创建新文件,使用指定的编码将指定的字符串写入文件,然后关闭该文件。如果目标文件已经存在,则将其覆盖。
句法:
public static void WriteAllText (string path, string contents, System.Text.Encoding encoding);
参数:此函数接受三个参数,如下所示:
- path: This is the specified file where specified string are going to be written.
- contents: This is the specified string to write to the file.
- encoding: This is the specified encoding to apply to the string.
例外情况:
- ArgumentException:路径是长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
- ArgumentNullException:路径为null。
- PathTooLongException:指定的路径,文件名或两者都超过系统定义的最大长度。
- DirectoryNotFoundException:指定的路径无效。
- IOException:打开文件时发生I / O错误。
- UnauthorizedAccessException:该路径指定了一个只读文件。或路径指定了隐藏的文件。或当前平台不支持此操作。或路径指定目录。或呼叫者没有所需的权限。
- NotSupportedException:路径格式无效。
- SecurityException:调用者没有所需的权限。
下面是说明File.WriteAllText(String,String)方法的程序。
程序1:最初没有创建文件。下面的代码本身创建一个文件file.txt并将指定的字符串数组写入该文件。
// C# program to illustrate the usage
// of File.WriteAllText(String, String,
// Encoding) method
// Using System, System.IO and
// System.Text namespaces
using System;
using System.IO;
using System.Text;
class GFG {
public static void Main()
{
// Specifying a file
string path = @"file.txt";
// Creating a string
string createText = "GeeksforGeeks" + Environment.NewLine;
// Writing the string to the file
File.WriteAllText(path, createText, Encoding.UTF8);
// Reading the contents of the file
string readText = File.ReadAllText(path, Encoding.UTF8);
Console.WriteLine(readText);
}
}
输出:
GeeksforGeeks
运行上述代码后,将显示以上输出,并创建一个新文件file.txt,如下所示-
程序2:最初,将创建一个文件file.txt ,其内容如下所示-
下面的代码用指定的字符串覆盖文件内容。
// C# program to illustrate the usage
// of File.WriteAllText(String, String,
// Encoding) method
// Using System, System.IO and
// System.Text namespaces
using System;
using System.IO;
using System.Text;
class GFG {
public static void Main()
{
// Specifying a file
string path = @"file.txt";
// Creating a string
string createText = "GFG is a cs portal." + Environment.NewLine;
// Overwriting the string to the file
File.WriteAllText(path, createText, Encoding.UTF8);
// Reading the contents of the file
string readText = File.ReadAllText(path, Encoding.UTF8);
Console.WriteLine(readText);
}
}
输出:
GFG is a cs portal.
运行上述代码后,将显示以上输出,文件file.txt的内容如下所示: