65 lines
1.5 KiB
C
65 lines
1.5 KiB
C
//-------------------------------------------------------------------------------------------------
|
|
// <copyright file="dirutil.h" company="Outercurve Foundation">
|
|
// Copyright (c) 2004, Outercurve Foundation.
|
|
// This software is released under Microsoft Reciprocal License (MS-RL).
|
|
// The license and further copyright text can be found in the file
|
|
// LICENSE.TXT at the root directory of the distribution.
|
|
// </copyright>
|
|
//
|
|
// <summary>
|
|
// Directory helper functions.
|
|
// </summary>
|
|
//-------------------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
enum DIR_DELETE
|
|
{
|
|
DIR_DELETE_FILES = 1,
|
|
DIR_DELETE_RECURSE = 2,
|
|
DIR_DELETE_SCHEDULE = 4,
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL DAPI DirExists(
|
|
__in_z LPCWSTR wzPath,
|
|
__out_opt DWORD *pdwAttributes
|
|
);
|
|
|
|
HRESULT DAPI DirCreateTempPath(
|
|
__in_z LPCWSTR wzPrefix,
|
|
__out_ecount_z(cchPath) LPWSTR wzPath,
|
|
__in DWORD cchPath
|
|
);
|
|
|
|
HRESULT DAPI DirEnsureExists(
|
|
__in_z LPCWSTR wzPath,
|
|
__in_opt LPSECURITY_ATTRIBUTES psa
|
|
);
|
|
|
|
HRESULT DAPI DirEnsureDelete(
|
|
__in_z LPCWSTR wzPath,
|
|
__in BOOL fDeleteFiles,
|
|
__in BOOL fRecurse
|
|
);
|
|
|
|
HRESULT DAPI DirEnsureDeleteEx(
|
|
__in_z LPCWSTR wzPath,
|
|
__in DWORD dwFlags
|
|
);
|
|
|
|
HRESULT DAPI DirGetCurrent(
|
|
__deref_out_z LPWSTR* psczCurrentDirectory
|
|
);
|
|
|
|
HRESULT DAPI DirSetCurrent(
|
|
__in_z LPCWSTR wzDirectory
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|