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

windows 不可恢复式的删除文件

时间:2015-02-11 14:34:33      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

//////////////////////////////////////////////////////////////////////////
//函数:EraseFile
//参数:strFilePath(文件的全路径)
//功能:不可恢复删除单个文件
//时间:
//////////////////////////////////////////////////////////////////////////
BOOL EraseFile(LPWSTR strFilePath)
{
HANDLE hfile = INVALID_HANDLE_VALUE;
BOOL bok = FALSE;
char ZeroBuf[512];
int index = 0;


ZeroMemory(ZeroBuf, sizeof(ZeroBuf));
do
{
SetFileAttributes(strFilePath, FILE_ATTRIBUTE_NORMAL);
hfile = CreateFile(strFilePath,
GENERIC_READ | GENERIC_WRITE,
0,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL,
NULL);

if (hfile == INVALID_HANDLE_VALUE)
{
break;
}

DWORD nsize = GetFileSize(hfile, NULL);

int nWriteCount = nsize / sizeof(ZeroBuf);
nWriteCount = max(nWriteCount, 1);
DWORD dwBytes = 0;

for (int i = 0; i < nWriteCount; i++)
{
WriteFile(hfile, ZeroBuf, sizeof(ZeroBuf), &dwBytes, NULL);
}

index++;
CloseHandle(hfile);

} while (index < 1);

bok = DeleteFile(strFilePath);
return bok;
}

windows 不可恢复式的删除文件

标签:

原文地址:http://blog.csdn.net/goodboy_wkx/article/details/43733681

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