您好,登錄后才能下訂單哦!
這篇文章主要介紹了C#怎么使用dir命令實現文件搜索功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
具體如下:
以往,我都是使用 System.IO.Directory.GetDirectories() 和 System.IO.Directory.GetFiles() 方法遍歷目錄搜索文件。但實際的執行效果始終差強人意,在檢索多種類型文件方面不夠強大,尤其是在檢索特殊文件夾或遇到權限不足時會引發程序異常。
這次為朋友寫了個檢索圖片的小程序,在仔細研究了 Process 以及 ProcessStartInfo 之后,決定利用這兩個類以及系統命令 dir 對文件進行檢索。
private void search() { // 多種后綴可使用 exts 定義的方式 var ext = "*.jpg"; var exts = "*.jpg *.png *.gif"; var folder = "D:\\"; var output = new StringBuilder(); if (System.IO.Directory.Exists(folder)) { string path = System.IO.Path.Combine(folder, exts); string args = string.Format("/c dir \"{0}\" /b/l/s", path); // 如果僅搜索文件夾可以使用下面的參數組合 // string args = string.Format("/c dir \"{0}\" /ad-s-h/b/l/s", folder); var compiler = new System.Diagnostics.Process(); compiler.StartInfo.FileName = "cmd.exe"; compiler.StartInfo.Arguments = args; compiler.StartInfo.CreateNoWindow = true; compiler.StartInfo.UseShellExecute = false; compiler.StartInfo.RedirectStandardOutput = true; compiler.OutputDataReceived += (obj, p) => { // 根據 p.Data 是否為空判斷 dir 命令是否已執行完畢 if (string.IsNullOrEmpty(p.Data) == false) { output.AppendLine(p.Data); // 可以寫個自定義類 <T> // 然后利用 static <T> FromFile(string path) 的方式進行實例化 // 最后利用 List<T>.Add 的方法將其加入到 List 中以便后續處理 // * 數據量很大時慎用 } else { // 運行到此處則表示 dir 已執行完畢 // 可以在此處添加對 output 的處理過程 // 也可以自定義完成事件并在此處觸發該事件, // 將 output 作為事件參數進行傳遞以便外部程序調用 } }; compiler.Start(); compiler.BeginOutputReadLine(); // 開始異步讀取 compiler.Close(); } }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“C#怎么使用dir命令實現文件搜索功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。