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.
我想知道(使用 c#)如何删除某个目录中名称包含 *mhz.prj 的文件。
事实上,这个文件夹中有几个文件,例如我只想删除 Amhz.prj Bmhz.prj。我的问题是文件名的结尾很重要。
这将循环C:\MyDir并删除任何扩展名为prj.
C:\MyDir
prj
foreach(var file in Directory.GetFiles(@"C:\MyDir", "*.prj")) { File.Delete(Path.GetFullPath(file)); }