标签:
From:http://blog.csdn.net/lvwx369/article/details/41440883
注意:其中namePath 为全局变量 Cstring namePath;
BOOL FileDelete(CString strName)
{
namePath = strName;
SHFILEOPSTRUCT FileOp;
ZeroMemory((void*)&FileOp, sizeof(SHFILEOPSTRUCT));
FileOp.fFlags = FOF_NOCONFIRMATION;
FileOp.hNameMappings = NULL;
FileOp.hwnd = NULL;
FileOp.lpszProgressTitle = NULL;
FileOp.pFrom = namePath.GetBuffer(namePath.GetLength() + 2);//
FileOp.pTo = NULL;
FileOp.wFunc = FO_DELETE;
namePath.ReleaseBuffer();
return SHFileOperation(&FileOp) == 0;
}
shfileoperation 删除文件 FileDelete(CString strName)
标签:
原文地址:http://www.cnblogs.com/ourran/p/4969200.html