MiniExcel
MiniExcel copied to clipboard
How to overwrite exists file when using SaveAsAsync
Is there any configuration? or delete it by myself?
You can use Stream:
var stream = File.OpenWrite(fileName);
MiniExcelLibs.MiniExcel.SaveAs(stream, data);
...and it's already mentioned in the readme - check the last Q&A,