【C#】【IO】【Threading】【實例】工作報表前的本地數據聚合操作

来源:https://www.cnblogs.com/vangoghpeng/archive/2023/10/11/17758243.html
-Advertisement-
Play Games

<工作記錄——Report> 報表前的數據獲取操作是高重覆性的,今天差不多完成了腳本,下述是代碼: 1 // See https://aka.ms/new-console-template for more information 2 using System.IO; 3 using System. ...


<工作記錄——Report>

報表前的數據獲取操作是高重覆性的,今天差不多完成了腳本,下述是代碼:

  1 // See https://aka.ms/new-console-template for more information
  2 using System.IO;
  3 using System.Threading;
  4 
  5 string SN = @"C0230U25";
  6 string sourcefold = @"F:\整圖圖片";
  7 string flasefold = @"F:\報錯";
  8 string rootPath = @"";
  9 Report r = new(rootPath);
 10 string[] foldlist = r.CreateFlaseFold(sourcefold, flasefold);
 11 //Console.WriteLine(r.FindSN(sourcefold, SN));
 12 ThreadInvote<Report> tp = new ThreadInvote<Report>(action, r, foldlist);
 13 
 14 static void action(Report r, string[] str, int num)
 15 {
 16     r.CopyLimitFold(str, num);
 17 }
 18 
 19 static void FindFalsePic()
 20 {
 21     foreach (var fold in Directory.GetDirectories(@"F:\報錯\1011"))
 22     {
 23         foreach (var file in Directory.GetFiles(fold, "*.jpg"))
 24             //Console.WriteLine(file[(fold.Length+1)..]);
 25             File.Copy(file, Path.Combine(@"F:\報錯\1011過殺", file[(fold.Length + 1)..]));
 26     }
 27 }
 28 
 29 //Thread t_0 = new Thread(() => r.CopyLimitFold(foldlist, 0));
 30 //Thread t_1 = new Thread(() => r.CopyLimitFold(foldlist, 1));
 31 //t_0.Start();
 32 //t_1.Start();
 33 //t_0.Join();
 34 //t_1.Join();
 35 
 36 
 37 # region 報表數據抓取類
 38 class Report
 39 {
 40     int count = 0;
 41     string rootPath;
 42     public Report(string rootPath)
 43     {
 44         this.rootPath = rootPath;
 45     }
 46 
 47     public string[] CreateFlaseFold(string sourcefold, string flasefold)
 48     {
 49         string[] foldlist = new string[4];
 50         string todaydate = Path.Combine(sourcefold, DateTime.Now.ToString("yyyy年MM月dd日"));
 51         foldlist[0] = todaydate;
 52         string yestoday = Path.Combine(sourcefold, DateTime.Now.AddDays(-1).ToString("yyyy年MM月dd日"));
 53         foldlist[1] = yestoday;
 54         string foldnamepath = Path.Combine(flasefold, DateTime.Now.ToString("MMdd"));
 55         foldlist[2] = foldnamepath;
 56         string foldnamepath_ng = String.Concat(foldnamepath, "過殺");
 57         foldlist[3] = foldnamepath_ng;
 58         if (!Directory.Exists(foldnamepath))
 59             Directory.CreateDirectory(foldnamepath);
 60         if (!Directory.Exists(foldnamepath_ng))
 61             Directory.CreateDirectory(foldnamepath_ng);
 62         return foldlist;
 63     }
 64 
 65     public void CopyLimitFold(string[] foldlist, int sw)
 66     {
 67         int count = 0;
 68         foreach (var item in
 69             Directory.GetDirectories(Directory.GetDirectories(foldlist[sw])[0]))
 70         {
 71             int limitdate = Convert.ToInt32(String.Concat("1", Directory.GetCreationTime(item).ToString("HHmm")));
 72             string ffolders = Path.Combine(foldlist[2], item[30..]);
 73             if (sw == 0 && limitdate >= 10000 && limitdate < 10800)
 74             {
 75                 if (!Directory.Exists(ffolders))
 76                     Directory.CreateDirectory(ffolders);
 77                 foreach (var fileitem in Directory.GetFiles(item))
 78                 {
 79                     File.Copy(fileitem, Path.Combine(foldlist[2], fileitem[30..]));
 80                 }
 81                 count++;
 82             }
 83             if (sw == 1 && limitdate >= 10800 || limitdate == 10000)
 84             {
 85                 //File.Copy(item, Path.Combine(foldlist[2], item[30..]));
 86                 if (!Directory.Exists(ffolders))
 87                     Directory.CreateDirectory(ffolders);
 88                 foreach (var fileitem in Directory.GetFiles(item))
 89                 {
 90                     File.Copy(fileitem, Path.Combine(foldlist[2], fileitem[30..]));
 91                 }
 92                 count++;
 93             }
 94         }
 95         if (sw == 0)
 96             Console.WriteLine($"{foldlist[sw]}:{count}");
 97         if (sw == 1)
 98             Console.WriteLine($"{foldlist[sw]}:{count}");
 99     }
100 
101     public int TotalFalseBoard()
102     {
103         foreach (var item in Directory.GetDirectories(rootPath))
104         {
105             string[] files = Directory.GetFiles(item, "*.jpg");
106             if (files.Length > 0)
107                 count++;
108         }
109         return count;
110     }
111 
112     public string FindSN(string sourcefold, string SN)
113     {
114         foreach (var item in Directory.GetDirectories(sourcefold))
115             foreach (var i_item in Directory.GetDirectories(Directory.GetDirectories(item)[0]))
116                 if (i_item.Contains(SN))
117                     return i_item;
118         return "NULL";
119     }
120 }
121 # endregion
122 
123 # region 多線程調用類
124 class ThreadInvote<T>
125 {
126     public ThreadInvote(Action<T, string[], int> action, T tt, string[] foldlist)
127     {
128         foreach (var item in Enumerable.Range(0, 2))
129         {
130             Thread t = new Thread((ThreadStart) => { action(tt, foldlist, item); });
131             t.Start();
132             t.Join();
133         }
134     }
135 }
136 #endregion
137 
138 
139 // Completed

上述代碼中,關鍵變數分別都在頂級語句中(SN、sourcefold、falsefold)

因為業務原因,所以需要剝離多層文件夾,並精準獲取指定文件夾中的所有文件然後進行拷貝,其中<多線程調用類>單純個人覺得在主方法中重覆性的創建多個Thread並啟用覺得很麻煩,所以單獨寫了一個泛型類來簡化主程式中的代碼。

 

想要運行上述程式的童鞋可以通過下述Python代碼來創建對應的sourcefold結構:

 1 import os
 2 
 3 # 根目錄
 4 root_path = r"C:\Users\Desktop\Practice"
 5 
 6 for item in range(1, 41):
 7     # 在root_path下創建40個文件夾,1-40
 8     foldname = os.path.join(root_path, str(item))
 9     os.mkdir(foldname)
10 
11     # 每個文件夾下再創建一個文件夾,1-40,1
12     foldname_son1 = os.path.join(foldname, str(item) + f'.{item}')
13     os.mkdir(foldname_son1)
14 
15     # 再1-40,1內再創建500個文件夾,1-40,1,1-500
16     for i_item in range(1, 501):
17         foldname_son1_son = os.path.join(foldname_son1, str(i_item) + f'..{i_item}')
18         os.mkdir(foldname_son1_son)
19 
20         # 每個文件夾下創建一個jpg圖片,併在1文件夾下多創建一張圖
21         pic_name = os.path.join(foldname_son1_son, str(item) + '.jpg')
22         if item == 1:
23             with open(pic_name[:-4] + '1.jpg', 'w'):
24                 pass
25         with open(pic_name, 'w'):
26             pass
27 
28         # 每個文件下創建一個txt文本
29         txt_name = os.path.join(foldname_son1_son, str(item) + '.txt')
30         with open(txt_name, 'w'):
31             pass

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1、ZGC簡介 1.1 介紹 ZGC 是一款低延遲的垃圾回收器,是 Java 垃圾收集技術的最前沿,理解了 ZGC,那麼便可以說理解了 java 最前沿的垃圾收集技術。 從 JDK11 中作為試驗特性推出以來,ZGC 一直在不停地發展中。 從 JDK14 開始,ZGC 開始支持 Windows。 在 ...
  • 作者:椰子Tyshawn 來源:https://blog.csdn.net/litianxiang_kaola 最近公司的在做服務化, 需要把所有model包里的類都實現Serializable介面, 同時還要顯示指定serialVersionUID的值. 聽到這個需求, 我腦海裡就突然出現了好幾個 ...
  • 本文深入探討了Go語言中方法的各個方面,包括基礎概念、定義與聲明、特性、實戰應用以及性能考量。文章充滿技術深度,通過實例和代碼演示,力圖幫助讀者全面理解Go方法的設計哲學和最佳實踐。 關註【TechLeadCloud】,分享互聯網架構、雲服務技術的全維度知識。作者擁有10+年互聯網服務架構、AI產品 ...
  • 內容概要 上一節內容 介紹了用開源系統若依(ruoyi)搭建頁面的過程。在實際項目中,經常遇到多數據源後者主從庫的情況。本節記錄若依多數據源配置過程中遇到的問題排查過程。 背景描述 1.上一節在ry-vue庫中新建了表t_user,這次新建資料庫jingyes,新加同樣的表t_user。其他功能不變 ...
  • Winsock是Windows操作系統上的套接字API,用於在網路上進行數據通信。套接字通信是一種允許應用程式在電腦網路上進行實時數據交換的技術。通過使用Windows提供的API,應用程式可以創建一個套接字來進行數據通信。這個套接字可以綁定到一個埠,以允許其他應用程式連接它。另外,Winsoc... ...
  • 在keycloak中集成了各種社區用戶的登錄與同步方案,當用戶從第三方完成oauth認證之後,回調到keycloak的endpoint地址,在這裡將會獲取社區用戶的信息,完成對數據從社區網站到keycloak網站的同步操作,下麵介紹3種同步時的類型,下圖是配置同步截圖: 各種模塊介紹 在Keyclo ...
  • 每個Spring Boot版本和內置容器不同,結果也不同,這裡以Spring Boot 2.7.10版本 + 內置Tomcat容器舉例。 概序 在SpringBoot2.7.10版本中內置Tomcat版本是9.0.73,SpringBoot內置Tomcat的預設設置如下: Tomcat的連接等待隊列 ...
  • 為了向雲原生演進,提高資源利用和彈性能力,RocketMQ在5.0進行了架構的調整與升級,先來看新特性之一,增加了Proxy層。 增加Proxy代理層 計算存儲分離 計算存儲分離是一種分層架構,將計算層與存儲層分開。 計算層指的是一些消耗計算資源的功能模塊比如協議解析、消費管理等,存儲指的是數據存儲 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...