首页 > Windows开发 > 详细

API删除文件

时间:2014-07-28 21:21:04      阅读:447      评论:0      收藏:0      [点我收藏+]
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删除文件

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!