使用C# File.Create()方法创建文件的简单教程

C#中的File类提供了一系列的静态方法,可以用来操作文件,其中有一个方法叫做Create,可以用来创建文件。

使用方法:

// 创建文件
string path = @"D:\test.txt";
File.Create(path);

上面的代码中,File.Create()方法接收一个文件路径作为参数,如果文件不存在,则创建,如果文件已存在,则覆盖。

File.Create()方法返回一个FileStream对象,可以用来对文件进行操作,比如写入数据、读取数据等。

// 创建文件并写入数据
string path = @"D:\test.txt";
using(FileStream fs = File.Create(path))
{
    byte[] info = new UTF8Encoding(true).GetBytes("Hello World!");
    fs.Write(info, 0, info.Length);
}

上面的代码中,File.Create()方法创建了一个文件,并使用FileStream对象将字符串“Hello World!”写入到文件中。

File.Create()方法可以用来创建文件,并可以使用FileStream对象对文件进行操作,比如写入数据、读取数据等。

本文链接:http://task.lmcjl.com/news/7361.html

展开阅读全文