win32 api 文件和目录管理
2021-05-03 06:27
标签:printf win span 存在 实例 目录管理 bool filename str 实例:列出文件夹下的所有文件 win32 api 文件和目录管理 标签:printf win span 存在 实例 目录管理 bool filename str 原文地址:http://www.cnblogs.com/nival/p/7750212.htmlBOOL DeleteFile ( LPCTSTR lpFileName ); //删除文件
BOOL CopyFile (
LPCTSTR lpExistingFileName ,
LPCTSTR lpNewFileName ,
BOOL bFailIfExists );
/*
复制文件,如果目标文件存在,第三个参数为TRUE则不覆盖报错,为FALSE即覆盖
*/
BOOL MoveFile (
LPCTSTR lpExistingFileName ,
LPCTSTR lpNewFileName );
// 移动文件或者重命名文件
BOOL CreateDirectory (
LPCTSTR lpPathName ,
LPSECURITY_ATTRIBUTES lpSecurityAttributes );
//创建文件夹
BOOL GetCurrentDirectory (
LPCTSTR nBufferLength ,
LPTSTR lpBuffer );
//获取当前目录
BOOL SetCurrentDirectory (
LPCTSTR lpPathName );
//设置当前目录
#include