#include <nitro/fs.h>
BOOL FS_CreateDirectory(const char *path, u32 permit);
path |
Path name of the directory to create. |
permit |
Specifies the combination of FS_PERMIT_* flags that specify the access rights to the directory.(This is reserved for future implementation. Access rights are currently ignored.) |
Returns TRUE if the directory was created properly; returns FALSE otherwise. In case of failure, the error details can be obtained using FS_GetArchiveResultCode()
.
Creates the new directory specified by the arguments. The function returns FALSE in the following situations:
FS_PERMIT_*
FS_DeleteDirectory
FS_RenameDirectory
FS_GetResultCode
2009/02/05 Explained that access rights are currently ignored.
2007/09/18 Initial version.
CONFIDENTIAL