byte[] bytes = File.ReadAllBytes(templatefilePath); using (var fs = new FileStream(excelPath, System.IO.FileMode.OpenOrCreate, FileAccess.ReadWrite)) { fs.Write(bytes); } 完善一下代码
时间: 2024-02-10 22:14:25 浏览: 165
JDK1.7 之java.nio.file.Files 读取文件仅需一行代码实现
完善后的代码如下:
```
byte[] bytes = File.ReadAllBytes(templatefilePath);
using (var fs = new FileStream(excelPath, System.IO.FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
fs.Write(bytes, 0, bytes.Length);
fs.Flush();
}
```
在原来的基础上,我添加了写入字节数组的长度参数和刷新流的操作,确保文件内容写入磁盘。同时,我也将文件访问权限改为了读写模式,以便后续可以对写入的文件进行操作。
阅读全文