FS_*FileAuto,FS_*DirectoryAuto

Syntax


#include <nitro/fs.h>

BOOL FS_CreateFileAuto(const char *path, u32 permit);
BOOL FS_DeleteFileAuto(const char *path);
BOOL FS_RenameFileAuto(const char *src, const char *dst);
BOOL FS_CreateDirectoryAuto(const char *path, u32 permit);
BOOL FS_DeleteDirectoryAuto(const char *path);
BOOL FS_RenameDirectoryAuto(const char *src, const char *dst);

Arguments

These are the same as those of the normal functions without the "Auto" suffix.

Return Values

These are the same as those of the normal functions without the "Auto" suffix.

Description

Except for the fact that the directory operations performed on the target path will be automatically supplemented, these are the same as the normal functions without the "Auto" suffix. The following operations are supplemented as follows with these functions.

Note

See Also

FS_CreateDirectory FS_DeleteDirectory FS_RenameDirectory FS_CreateFile FS_DeleteFile FS_RenameFile

Revision History

2008/01/25 Initial version.


CONFIDENTIAL