首页 > 网络编程 > ASP.NET > 正文

.net core 读取本地指定目录下的文件的实例代码_实用技巧

2018-10-12 16:22:01

项目需求

asp.net core 读取log目录下的.log文件,.log文件的内容如下:

xxx.log

------------------------------------------begin---------------------------------
写入时间:2018-09-11 17:01:48
 userid=1000
 golds=10
 -------------------------------------------end---------------------------------

一个 begin end 为一组,同一个.log文件里 userid 相同的,取写入时间最大一组值,所需结果如下:

UserID   Golds   RecordDate
 1001     20     2018/9/11 17:10:48 
 1000     20     2018/9/11 17:11:48 
 1003     30     2018/9/11 17:12:48 
 1002     10     2018/9/11 18:01:48
 1001     20     2018/9/12 17:10:48 
 1000     30     2018/9/12 17:12:48 
 1002     10     2018/9/12 18:01:48

项目结构

Snai.File.FileOperation  Asp.net core 2.0 网站

项目实现

新建Snai.File解决方案,在解决方案下新建一个名Snai.File.FileOperation Asp.net core 2.0 空网站

把log日志文件拷备到项目下

修改Startup类的ConfigureServices()方法,注册访问本地文件所需的服务,到时在中间件中通过构造函数注入添加到中间件,这样就可以在一个地方控制文件的访问路径(也就是应用程序启动的时候)

public void ConfigureServices(IServiceCollection services){  services.AddSingleton<IFileProvider>(new PhysicalFileProvider(Directory.GetCurrentDirectory()));}

新建 Middleware 文件夹,在 Middleware下新建 Entity 文件夹,新建 UserGolds.cs 类,用来保存读取的日志内容,代码如下

namespace Snai.File.FileOperation.Middleware.Entity{ public class UserGolds {  public UserGolds()  {   RecordDate = new DateTime(1970, 01, 01);   UserID = 0;   Golds = 0;  }  public DateTime RecordDate { get; set; }  public int UserID { get; set; }  public int Golds { get; set; } }}

 在 Middleware 下新建 FileProviderMiddleware.cs 中间件类,用于读取 log 下所有日志文件内容,并整理成所需的内容格式,代码如下

namespace Snai.File.FileOperation.Middleware{ public class FileProviderMiddleware {  private readonly RequestDelegate _next;  private readonly IFileProvider _fileProvider;  public FileProviderMiddleware(RequestDelegate next, IFileProvider fileProvider)  {   _next = next;   _fileProvider = fileProvider;  }  public async Task Invoke(HttpContext context)  {   var output = new StringBuilder("");   //ResolveDirectory(output, "", "");   ResolveFileInfo(output, "log", ".log");   await context.Response.WriteAsync(output.ToString());  }  //读取目录下所有文件内容  private void ResolveFileInfo(StringBuilder output, string path, string suffix)  {   output.AppendLine("UserID Golds RecordDate");   IDirectoryContents dir = _fileProvider.GetDirectoryContents(path);   foreach (IFileInfo item in dir)   {    if (item.IsDirectory)    {     ResolveFileInfo(output,      item.PhysicalPath.Substring(Directory.GetCurrentDirectory().Length),      suffix);    }    else    {     if (item.Name.Contains(suffix))     {      var userList = new List<UserGolds>();      var user = new UserGolds();      IFileInfo file = _fileProvider.GetFileInfo(path + "//" + item.Name);      using (var stream = file.CreateReadStream())      {       using (var reader = new StreamReader(stream))       {        string content = reader.ReadLine();        while (content != null)        {         if (content.Contains("begin"))         {          user = new UserGolds();         }         if (content.Contains("写入时间"))         {          DateTime recordDate;          string strRecordDate = content.Substring(content.IndexOf(":") + 1).Trim();          if (DateTime.TryParse(strRecordDate, out recordDate))          {           user.RecordDate = recordDate;          }         }         if (content.Contains("userid"))         {          int userID;          string strUserID = content.Substring(content.LastIndexOf("=") + 1).Trim();          if (int.TryParse(strUserID, out userID))          {           user.UserID = userID;          }         }         if (content.Contains("golds"))         {          int golds;          string strGolds = content.Substring(content.LastIndexOf("=") + 1).Trim();          if (int.TryParse(strGolds, out golds))          {           user.Golds = golds;          }         }         if (content.Contains("end"))         {          var userMax = userList.FirstOrDefault(u => u.UserID == user.UserID);          if (userMax == null || userMax.UserID <= 0)          {           userList.Add(user);          }          else if (userMax.RecordDate < user.RecordDate)          {           userList.Remove(userMax);           userList.Add(user);          }         }         content = reader.ReadLine();        }       }      }      if (userList != null && userList.Count > 0)      {       foreach (var golds in userList.OrderBy(u => u.RecordDate))       {        output.AppendLine(golds.UserID.ToString() + " " + golds.Golds + " " + golds.RecordDate);       }       output.AppendLine("");      }     }    }   }  }  //读取目录下所有文件名  private void ResolveDirectory(StringBuilder output, string path, string prefix)  {   IDirectoryContents dir = _fileProvider.GetDirectoryContents(path);   foreach (IFileInfo item in dir)   {    if (item.IsDirectory)    {     output.AppendLine(prefix + "[" + item.Name + "]");     ResolveDirectory(output,      item.PhysicalPath.Substring(Directory.GetCurrentDirectory().Length),      prefix + " ");    }    else    {     output.AppendLine(path + prefix + item.Name);    }   }  } } public static class UseFileProviderExtensions {  public static IApplicationBuilder UseFileProvider(this IApplicationBuilder app)  {   return app.UseMiddleware<FileProviderMiddleware>();  } }}

上面有两个方法 ResolveFileInfo()和ResolveDirectory()

ResolveFileInfo()  读取目录下所有文件内容,也就是需求所用的方法

ResolveDirectory() 读取目录下所有文件名,是输出目录下所有目录和文件名,不是需求所需但也可以用

修改Startup类的Configure()方法,在app管道中使用文件中间件服务

public void Configure(IApplicationBuilder app, IHostingEnvironment env){  if (env.IsDevelopment())  {    app.UseDeveloperExceptionPage();  }  app.UseFileProvider();    app.Run(async (context) =>  {    await context.Response.WriteAsync("Hello World!");  });}

到此所有代码都已编写完成

启动运行项目,得到所需结果,页面结果如下

源码访问地址:https://github.com/Liu-Alan/Snai.File

总结

以上所述是小编给大家介绍的.net core 读取本地指定目录下的文件的相关知识,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

  • 相关标签:ASP.NET
  • 本文发布HTML5中文学习网 ,转载请注明出处,感谢您!
  • 相关文章


  • 曝网友假装外国人写投诉信 ofo秒退押金并回函致歉
  • 苹果市值缩水逾2000亿美元 遭多家投行下调目标价
  • Asp.net Core与类库读取配置文件信息的方法_实用技巧
  • asp.net在Repeater嵌套的Repeater中使用复选框详解_实用技巧
  • 利用IIS调试ASP.NET网站程序的完整步骤_实用技巧
  • Asp.Net Core轻松学习系列之配置文件_实用技巧
  • ASP.NET 页生命周期概述(小结)_实用技巧
  • 详解ASP.NET Core WebApi 返回统一格式参数_实用技巧
  • 2018年网络流行语有哪些?2018年十大网络流行语盘点
  • 华为首席财务官孟晚舟被暂扣 深圳市政府要求加方立即放人!
  • 独孤九贱(4)_PHP视频教程

    江湖传言:PHP是世界上最好的编程语言。真的是这样吗?这个梗究竟是从哪来的?学会本课程,你就会明白了。 PHP中文网出品的PHP入门系统教学视频,完全从初学者的角度出发,绝不玩虚的,一切以实用、有用...

    独孤九贱(5)_ThinkPHP5视频教程

    ThinkPHP是国内最流行的中文PHP开发框架,也是您Web项目的最佳选择。《php.cn独孤九贱(5)-ThinkPHP5视频教程》课程以ThinkPHP5最新版本为例,从最基本的框架常识开始,将...

    独孤九贱(1)_HTML5视频教程

    《php.cn原创html5视频教程》课程特色:php中文网原创幽默段子系列课程,以恶搞,段子为主题风格的php视频教程!轻松的教学风格,简短的教学模式,让同学们在不知不觉中,学会了HTML知识。 ...

    ThinkPHP5实战之[教学管理系统]

    本套教程,以一个真实的学校教学管理系统为案例,手把手教会您如何在一张白纸上,从零开始,一步一步的用ThinkPHP5框架快速开发出一个商业项目。

    PHP入门视频教程之一周学会PHP

    所有计算机语言的学习都要从基础开始,《PHP入门视频教程之一周学会PHP》不仅是PHP的基础部分更主要的是PHP语言的核心技术,是学习PHP必须掌握的内容,任何PHP项目的实现都离不开这部分的内容,通...

    作者信息

    kevin

    永远在学习的路上!

    相关教程

  • javascript初级视频教程 javascript初级视频教程
  • jquery 基础视频教程 jquery 基础视频教程
  • javascript三级联动视频教程 javascript三级联动视频教程
  • 独孤九贱(3)_JavaScript视频教程 独孤九贱(3)_JavaScript视频教程
  • 独孤九贱(6)_jQuery视频教程 独孤九贱(6)_jQuery视频教程
  • 热门教程