随笔分类 -  操作文件

摘要:/// Html 代码 <button type="button" class="btn btn-primary" onclick="InportTicket()">导入</button> <input id="fileToUpload" type="file" name="upfile" styl 阅读全文
posted @ 2019-01-09 14:56 叁王爷
摘要:/// JS脚本 window.open("../Ticket/ExportTicket"); /// Action 代码 [HttpGet] public ActionResult ExportTicket(TicketSearch search) { if (search != null) { 阅读全文
posted @ 2019-01-09 14:48 叁王爷
摘要:1、使用 ICSharpCode.SharpZipLib 压缩还原可以实现功能,但在发布程序或者调试程序时报“不能加载这个dll库 2、使用 System.IO.Compression.FileSystem.dll 也可以实现,不过这是点Net 4.5 版本才能使用 3、还是第三种比较好用:使用 W 阅读全文
posted @ 2018-03-20 16:05 叁王爷 阅读(2113) 评论(2) 推荐(0)
摘要://在 Ini 文件中写数据 [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); 阅读全文
posted @ 2018-01-03 16:23 叁王爷 阅读(308) 评论(0) 推荐(0)