c#怎样删除指定文件名的文件

 

c#怎样删除指定文件名的文件

我有一个文件夹,里面有6个文件,我现在要删除字母B开头的三个文件,只需要剩下A开头的文件即可

用C#怎样操作???

 

foreach (string d in Directory.GetFileSystemEntries(文件夹路径))
{
if (File.Exists(d))
{
string me = Path.GetFileNameWithoutExtension(d);
if (me.StartsWith("B"))
{
File.Delete(d);
}}

 

上一篇:dedecms给当前发布的文章添加new图标


下一篇:R语言地理空间分析(三)矢量数据操作