首页 > 其他 > 详细

shfileoperation 删除文件 FileDelete(CString strName)

时间:2015-11-16 17:11:39      阅读:265      评论:0      收藏:0      [点我收藏+]

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

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