C# 删除指定文件

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
string pa = @"d:\hello world.pdf";
File.Delete(pa);
Console.ReadKey();
}
}
}

posted @ 2017-10-23 12:03  _小马哥  阅读(8954)  评论(0编辑  收藏  举报