码迷,mamicode.com
首页 > Windows程序 > 详细

API删除文件

时间:2014-07-28 21:21:04      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   文件   io   for   div   ar   

using System;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
    class Program
    {
        [DllImport("kernel32.dll")]
        public static extern uint DeleteFile(string fileName);
        [DllImport("kernel32.dll")]
        public static extern uint GetLastError();
        [DllImport("kernel32.dll")]
        public static extern uint FormatMessage(uint dwFlag, ref IntPtr source, uint messageId, uint languageId, ref string lpBuffer, uint size, ref IntPtr va_list);
        static void Main(string[] args)
        {
            string str = null;
            IntPtr tempptr = IntPtr.Zero;
            if (DeleteFile("C:\test.txt") != 0)
                Console.Write("删除成功!");
            else{
                FormatMessage(0x1300, ref tempptr, GetLastError(), 0, ref str, 0, ref tempptr);
                Console.Write("删除失败!\n失败原因:" + str);
            }
        }
    }
}

 

API删除文件,布布扣,bubuko.com

API删除文件

标签:style   blog   color   文件   io   for   div   ar   

原文地址:http://www.cnblogs.com/cause/p/3873222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!