摘要:
C# 文件遍历 代码 public static class FileUtils { // 测试一下 public static void TestGetCurrentFileList() { var fs = GetFileList(Environment.CurrentDirectory, na 阅读全文
摘要:
C# winform统一异常处理 参考:https://www.easck.com/cos/2022/0920/1029476.shtml 源码 using PersistenceLayer; using System; using System.Collections.Generic; using 阅读全文
摘要:
C# HTTP工具HttpHelper 新建文件名HttpHelper.cs 代码如下: using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Net; 阅读全文
摘要:
Oracle使用expdp/impdp实现数据库迁移 导出 0. 准备导出路径 cd /u01/app/oracle mkdir bak && chmod 777 bak 1、创建目录(sqlplus) create directory bak as '/u01/app/oracle/bak'; 2 阅读全文