我有一个文件夹,里面有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);
}}