用 C# 将流写入文件
Muhammad Maisam Abbas
2021年4月29日
本教程将讨论使用 C# 将流写入文件的方法。
在 C# 中使用 Stream.CopyTo()
方法将流写入文件
C# 中的 Stream.CopyTo()
方法将流的内容复制到另一个流。我们可以在第二个流中打开一个文件,然后使用 C# 中的 Stream.CopyTo()
方法将输入流的内容复制到输出流。
using System;
using System.IO;
namespace read_integer
{
class Program
{
static void Main(string[] args)
{
using(Stream inStream = File.OpenRead(@"C:\File\file.txt"))
{
using(Stream outStream = File.OpenWrite(@"C:\File\file1.txt"))
{
inStream.CopyTo(outStream);
}
}
}
}
}
在上面的代码中,我们使用 C# 中的 inStream.CopyTo(outStream)
方法将输入流 inStream
的内容写入输出流 outStream
。我们首先打开路径 C:\File
内的输入文件 file.txt
,以将数据读取到 inStream
流中。之后,我们在相同目录 C:\File
内打开输出文件 file1.txt
,并使用 outStream
流进行写入。然后,使用 Stream.CopyTo()
方法将 inStream
的内容写入 outStream
。
Author: Muhammad Maisam Abbas
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn