回 帖 发 新 帖 刷新版面

主题:vc++移动文件

高手指点一下,我想把应用程序的log文件夹定时移动到新的目录下,怎样操作效果最好?
急~~~  在线等

回复列表 (共4个回复)

沙发

怎么没人说话呢?

板凳

在程序中开一个工作线程,定时进行新建文件夹、文件复制操作。

3 楼

写个  批处理文件      再加到  "计划任务"  去  定时   运行

4 楼

BOOL MoveFile(
  LPCTSTR lpExistingFileName, // file name
  LPCTSTR lpNewFileName       // new file name
);

//The new name must not already exist.There is an example..

if (MoveFile("c:\\1.txt","d:\\1.txt"))
   MessageBox ("文件移动成功",MB_OK);
else
   MessageBox ("文件没有成功移动",MB_OK | MB_ICONERROR);

我来回复

您尚未登录,请登录后再回复。点此登录或注册