/* Include the best multiplexing layer supported by this system.
* The following should be ordered by performances, descending. */
#ifdef _WIN32
#include "ae_wsiocp.c"
#else
#ifdef HAVE_EVPORT
#include "ae_evport.c"
#else
#ifdef HAVE_EPOLL
#include "ae_epoll.c"
#else
#ifdef HAVE_KQUEUE
#include "ae_kqueue.c"
#else
#include "ae_select.c"
#endif
#endif
#endif
#endif
你用的编译器是什么?
是用的vs2012吗?
如果是 在MFC下面可以这样
MoveFile(LPCTSTR lpExistingFileName, // file 丛亮nameLPCTSTR lpNewFileName // new file name)
BOOL MoveMyFile()
{
//获取当前文件目录
CString strFileName = "YourFilePath/YourFileName"
CString 轿睁strNewFile = "YourNewPath/YourNewFileName"
渗帆宽 return MoveFile(strFileName,strNewFile)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)