Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.06 KB

CeCreateDirectory.md

File metadata and controls

53 lines (35 loc) · 1.06 KB

Home

Function name : CeCreateDirectory

Group: Remote Application Programming (RAPI) - Library: rapi


This function creates a new directory.


Code examples:

Pocket PC: custom RAPI class for operating with files and folders on mobile device

Declaration:

BOOL CeCreateDirectory(
  LPCWSTR lpPathName,
  LPSECURITY_ATTRIBUTES lpSecurityAttributes
);  

FoxPro declaration:

DECLARE INTEGER CeCreateDirectory IN rapi;
	STRING  lpPathName,;
	INTEGER lpSecurityAttributes
  

Parameters:

lpPathName [in] Long pointer to a null-terminated string that specifies the path of the directory to be created.

lpSecurityAttributes [in] Ignored; set to NULL.


Return value:

Nonzero indicates success.


Comments:

See also: CeRemoveDirectory function.