MFC中一些函数的用法

1.GetTickCount,函数。

GetTickCount返回(retrieve)从操作系统启动到现在所经过(elapsed)的毫秒数,它的返回值是DWORD。

DWORD GetTickCount(void);

常常用来判断某个方法执行的时间,或用t2-t1来判断某个数据处理过程的耗时。


2.CFileDialog中的GetPathName(),返回目录和文件名

GetFileName()只返回文件名


3.MoveFileEx()

The MoveFileEx function moves an existing file or directory. 

BOOL MoveFileEx(
  LPCTSTR lpExistingFileName,  // file name
  LPCTSTR lpNewFileName,       // new file name
  DWORD dwFlags                // move options
);

你可能感兴趣的:(MFC中一些函数的用法)