摘要: $timeOutDay = 30 $filePath = "E:\log" $allFile = Get-ChildItem -Path $filePath $i = 0 foreach($file in $allFile) { $daySpan = ((Get-Date) - $file.Last 阅读全文
posted @ 2020-11-13 13:54 Something_lzm 阅读(374) 评论(0) 推荐(0)
摘要: .net core 3.0 项目 错误信息如下: Unable to start Kestrel. System.IO.IOException: Failed to bind to address http://localhost:5000. System.AggregateException: O 阅读全文
posted @ 2019-10-15 15:42 Something_lzm 阅读(17227) 评论(0) 推荐(1)
摘要: 首先确保自己要连接的服务器开启着服务。 然后cmd到自己的安装目录 不写后面的服务器地址默认连接本地的127.0.0.1:27017端口 show dbs 展示当前链接的全部数据库 use 表名 进入到当前的数据库 show collections 展示当前连接的全部表 db.表名.find() 查 阅读全文
posted @ 2019-03-11 15:43 Something_lzm 阅读(370) 评论(0) 推荐(0)