日常生活的交流与学习

首页 新随笔 联系 管理

2024年4月16日 #

摘要: 获取当前程序所在的目录 // 获取当前程序的执行目录信息 Console.WriteLine(AppDomain.CurrentDomain.BaseDirectory); // asp.net使用,不过在console下也是 /xxx/bin/Debug/net8.0/ Console.Write 阅读全文
posted @ 2024-04-16 22:57 lazycookie 阅读(33) 评论(0) 推荐(0) 编辑

摘要: // 获取文件夹中后缀是txt的文件 string directoryPath = @"/Users/Code/Wechat.Crawler/Links"; string[] filePaths = Directory.GetFiles(directoryPath, "*.txt"); // 获取文 阅读全文
posted @ 2024-04-16 21:10 lazycookie 阅读(78) 评论(0) 推荐(0) 编辑