MFC 通过CFileFind的getFilePath()方法得到的文件绝对路径如何用来删除这个指定的文件。
我自己写的测试源码如下:#include"iostream"#include"afx.h"#include"string"usingnamespacestd;intmai...
我自己写的测试源码如下:
#include "iostream"
#include "afx.h"
#include "string"
using namespace std;
int main(){
CFileFind finder;
CString path("d:\\");
BOOL hasNext;
hasNext = finder.FindFile(path+"\\1.*");
while(hasNext){
hasNext = finder.FindNextFile();
cout<<(LPCTSTR)finder.GetFilePath()<<endl;
char* pFile = (LPSTR)(LPCTSTR)finder.GetFilePath();
TCHAR* pFileName = _T(pFile);
CFile::Remove(pFileName);
}
return 1;
}
要删除的文件肯定是存在的,编译,链接都通过了,但是执行的时候就会出异常,不知道是为什么。希望大家指点我一下,最好修改下我的源码再,小弟先谢过了! 展开
#include "iostream"
#include "afx.h"
#include "string"
using namespace std;
int main(){
CFileFind finder;
CString path("d:\\");
BOOL hasNext;
hasNext = finder.FindFile(path+"\\1.*");
while(hasNext){
hasNext = finder.FindNextFile();
cout<<(LPCTSTR)finder.GetFilePath()<<endl;
char* pFile = (LPSTR)(LPCTSTR)finder.GetFilePath();
TCHAR* pFileName = _T(pFile);
CFile::Remove(pFileName);
}
return 1;
}
要删除的文件肯定是存在的,编译,链接都通过了,但是执行的时候就会出异常,不知道是为什么。希望大家指点我一下,最好修改下我的源码再,小弟先谢过了! 展开
2个回答
展开全部
如果文件被打开,或被使用中,或是只读文件(保护状态下 attrib 显示 R 的文件),不让删的。
CString path("d:\\");
hasNext = finder.FindFile(path+\\1.*); -- 相连后,4个反斜杠 是不是多了。
CString path("d:\\");
hasNext = finder.FindFile(path+\\1.*); -- 相连后,4个反斜杠 是不是多了。
追问
嗯,反斜杠确实是多了,谢谢提醒!
抛去反斜杠的问题,删除文件的问题上,我是自己在d盘根目录下手动创建了一个1.txt文件,这个文件肯定是有可以被读写删除的权限的并且肯定是没有被使用或者打开的,我在想是不是代码中出了什么问题了。
追答
你可以查一下Remove参数类型是否符合要求。我现在手头没有VC++编译器。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询