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);