17 lines
313 B
C++
17 lines
313 B
C++
#pragma once
|
|
|
|
#include "define.h"
|
|
#include "windows.h"
|
|
|
|
class DLL_DECLARE MyFolder
|
|
{
|
|
public:
|
|
MyFolder(void);
|
|
~MyFolder(void);
|
|
|
|
public:
|
|
static BOOL CopyFoler( const TCHAR* pszFrom, const TCHAR* pszTo );
|
|
static BOOL DeleteFoler( const TCHAR* pszPath );
|
|
static void CreteFolder( const TCHAR* pszFoletPath );
|
|
};
|