//新建类 重写Npoi流方法 public class NpoiMemoryStream : MemoryStream { public NpoiMemoryStream() { AllowClose = true; } public bool AllowClose { get; set; } public override void Close() { if (AllowClose) base.Close(); } } using (var ms = new NpoiMemoryStream
根据文件后缀名称将文件移动到指定的文件夹下面,具体代码如下: demo中使用的是 .png 具体的情况根据你的需求可以更改 using System; using System.IO; public class FileMove { public FileMove() { // TODO: } // copy all file(*.png) in folder src to dest private static void moveFiles(string srcFolder, string d