摘要:
获取当前程序所在的目录 // 获取当前程序的执行目录信息 Console.WriteLine(AppDomain.CurrentDomain.BaseDirectory); // asp.net使用,不过在console下也是 /xxx/bin/Debug/net8.0/ Console.Write 阅读全文
2024年4月16日 #
摘要:
// 获取文件夹中后缀是txt的文件 string directoryPath = @"/Users/Code/Wechat.Crawler/Links"; string[] filePaths = Directory.GetFiles(directoryPath, "*.txt"); // 获取文 阅读全文