#include
#include
int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPTSTR lpCmdLine, _In_ int nCmdShow)
{
// 变量初始化
LPCTSTR ExistFile = _T("D:\\File.txt");
LPCTSTR NewFile = _T("D:\\NewFile\\File.txt");
LPCTSTR NewNameFile = _T("D:\\NewFile\\Copy_File.txt");
// 文件的复制
BOOL ResCopy = CopyFile(ExistFile, NewFile, TRUE);
if (!ResCopy)
{
// 显示提示框
MessageBox(NULL, _T("复制失败"), _T("提示窗口"), MB_OK);
}
// 文件的移动
BOOL ResMove = MoveFile(ExistFile, NewNameFile);
if (!ResMove)
{
// 显示提示框
MessageBox(NULL, _T("移动失败"), _T("提示窗口"), MB_OK);
}
// 文件的删除
BOOL ResDelete = DeleteFile(NewFile);
if (!ResDelete)
{
// 显示提示框
MessageBox(NULL, _T("删除失败"), _T("提示窗口"), MB_OK);
}
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)