Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在目录中搜索与特定模式匹配的所有文件。令人惊讶的是,自从 vb6 (Dir) 以来,我就不必这样做了……我敢肯定,从那时起事情已经发生了变化!
-谢谢
使用SearchOption.AllDirectories参数:
using System.IO; Directory.GetFiles(@"C:\", "*.mp3", SearchOption.AllDirectories);