主题:vc++移动文件
soringster
[专家分:20] 发布于 2008-08-24 01:21:00
高手指点一下,我想把应用程序的log文件夹定时移动到新的目录下,怎样操作效果最好?
急~~~ 在线等
回复列表 (共4个回复)
沙发
soringster [专家分:20] 发布于 2008-08-24 04:03:00
怎么没人说话呢?
板凳
SKing [专家分:1500] 发布于 2008-08-24 17:20:00
在程序中开一个工作线程,定时进行新建文件夹、文件复制操作。
3 楼
eivy [专家分:20] 发布于 2008-08-29 03:27:00
写个 批处理文件 再加到 "计划任务" 去 定时 运行
4 楼
chengtao786 [专家分:0] 发布于 2008-09-04 19:42:00
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);
我来回复