Line 303:
Line 303:
|Returns a pointer to the command block being processed.
|Returns a pointer to the command block being processed.
|May return NULL if invalid client or if nothing's processed, please error check.
|May return NULL if invalid client or if nothing's processed, please error check.
+
|}
+
+
===File Commands===
+
{| class="wikitable"
+
!Name
+
!Prototype
+
!Description
+
!Return / Error Codes [[#Defines|Error Codes]]
+
!Notes
+
|-
+
|FSOpenFile
+
|<code>FSStatus FSOpenFile FSClient *client, FSCmdBlock *block, const char *path, const char *mode, FSFileHandle *fileHandle, FSRetFlag errHandling );
+
|Open file stream
+
|00, 01, 03, 04, 06, 07, 08, 09, 10, 12, 13, 15, 17, 18,19
+
|
+
|-
+
|FSCloseFile
+
|<code>FSStatus FSCloseFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle FSRetFlag errHandling );
+
|Close file stream.
+
|00, 01, 17
+
|
+
|-
+
|FSReadFile
+
|<code>FSStatus FSReadFile FSClient *client, FSCmdBlock *block, void *dest, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlagflag, FSRetFlag errHandling
+
|Read data from an open file.
+
|Non-negative value ( >= 0 ) = Number of elements read, 01, 09, 15, 17, 18
+
|
+
|-
+
|FSWriteFile
+
|<code>FSStatus FSWriteFile( FSClient *client, FSCmdBlock *block, const void *source, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlag flag, FSRetFlag errHandling );
+
|Write data to file
+
|Non-negative value ( >= 0 ) = Number of elements write, 01, 09, 11, 12, 13m 14, 15, 17, 18
+
|
+
|-
+
|FSAppendFile
+
|<code>FSStatus FSAppendFile( FSClient *client, FSCmdBlock *block, FSSize size, FSCount count, FSFileHandle fileHandle, FSRetFlag errHandling );
+
|Append file.
+
|Non-negative value ( >= 0 ) = Newly appended size (newly added preallocation area [Byte] divided by size), 01, 09, 11, 12, 13, 15, 17, 18, 19
+
|
+
|-
+
|FSTruncateFile
+
|<code>FSStatus FSTruncateFile( FSClient*client, FSCmdBlock*block, FSFileHandlefileHandle, FSRetFlag errHandling );
+
|Truncate file at file position
+
|00, 01, 09, 12, 13, 14, 15, 17,18
+
|
+
|-
+
|FSFlushFile
+
|<code>FSStatus FSFlushFile( FSClient*client, FSCmdBlock*block, FSFileHandlefileHandle, FSRetFlag errHandling );
+
|Flush file.
+
|00, 01, 09, 15, 17,18
+
|
+
|-
+
|FSGetPosFile
+
|<code>FSStatus FSGetPosFile( FSClient*client, FSCmdBlock*block, FSFileHandlefileHandle, FSFilePosition*returnedFpos, FSRetFlag errHandling );
+
|Get position of specified file stream.
+
|00, 01, 15, 17, 18
+
|
+
|-
+
|FSSetPosFile
+
|<code>FSStatus FSSetPosFile( FSClient*client, FSCmdBlock*block, FSFileHandlefileHandle, FSFilePositionfpos, FSRetFlag errHandling );
+
|Set position of specified file stream
+
|00, 01, 15, 17, 18
+
|
+
|-
+
|FSGetStatFile
+
|<code>FSStatus FSGetStatFile( FSClient*client, FSCmdBlock*block, FSFileHandlefileHandle, FSStat*returnedStat, FSRetFlag errHandling );
+
|Get stat information of specified file.
+
|00, 01, 15, 17, 18
+
|
+
|-
+
|FSIsEof
+
|<code>FSStatus FSIsEof( FSClient*client, FSCmdBlock*block, FSFileHandlefileHandle, FSRetFlag errHandling );
+
|Determine if the current file position of specified file stream is at the end-of-file(EOF).
+
|00, 01, 02, 15, 17, 18
+
|
+
|-
+
|FSOpenDir
+
|<code>FSStatus FSOpenDir( FSClient *client, FSCmdBlock *block, const char *path, FSDirHandle *dirHandle, FSRetFlag errHandling );
+
|Open directory stream
+
|00, 01, 03, 06, 08, 10, 15, 17, 18
+
|
+
|-
+
|FSCloseDir
+
|<code>FSStatus FSCloseDir( FSClient*client, FSCmdBlock*block, FSDirHandle dirHandle, FSRetFlag errHandling );
+
|Close directory stream.
+
|00, 01, 17
+
|
+
|-
+
|FSReadDir
+
|<code>FSStatus FSReadDir( FSClient*client, FSCmdBlock*block, FSDirHandle dirHandle, FSDirEntry*returnedDirEntry, FSRetFlag errHandling );
+
|Read next directory entry.
+
|00, 01, 02, 15,17, 18
+
|
+
|-
+
|FSRewindDir
+
|<code>FSStatus FSRewindDir( FSClient*client, FSCmdBlock*block, FSDirHandle dirHandle, FSRetFlag errHandling );
+
|Set position of specified directory stream to the head.
+
|00, 01, 02, 15,17, 18
+
|
+
|-
+
|FSGetCwd
+
|<code>FSStatus FSGetCwd( FSClient*client, FSCmdBlock*block, char*returnedPath, u32 bytes, FSRetFlag errHandling );
+
|Get current work directory.
+
|00, 01
+
|
+
|-
+
|FSMakeDir
+
|<code>FSStatus FSMakeDir( FSClient*client, FSCmdBlock*block, const char*path, FSRetFlag errHandling );
+
|Create directory.
+
|00, 01, 05, 06, 08, 10, 12, 13, 14, 17, 18, 19
+
|
+
|-
+
|FSRemove
+
|<code>FSStatus FSRemove( FSClient*client, FSCmdBlock*block, const char*path, FSRetFlag errHandling );
+
|Remove file or directory.
+
|00, 01, 04, 06, 08, 09, 10, 12,13, 14, 15, 17, 18, 19
+
|
+
|-
+
|FSRename
+
|<code>FSStatus FSRename( FSClient*client, FSCmdBlock*block, const char*oldpath, const char*newpath, FSRetFlag errHandling );
+
|Rename file or directory.
+
|00, 01, 04,05 06, 08, 10, 12, 13, 14, 15,17,18,19
+
|
+
|-
+
|FSFlushQuota
+
|<code>FSStatus FSFlushQuota( FSClient*client, FSCmdBlock*block, const char*path, FSRetFlag errHandling );
+
|Flush journaling data of quota.
+
|00, 01, 06, 14, 15, 17,18,19
+
|
+
|-
+
|FSRollbackQuota
+
|<code>FSStatus FSRollbackQuota( FSClient*client, FSCmdBlock*block, const char*path, FSRetFlag errHandling );
+
|Rollback journaling data of quota.
+
|00, 01, 04, 06, 14, 15, 17, 18
+
|
+
|-
+
|FSGetStat
+
|<code>FSStatus FSGetStat( FSClient*client, FSCmdBlock*block, const char*path, FSStat*returnedStat, FSRetFlag errHandling );
+
|Get stat information of specified entry.
+
|00, 01, 06, 10, 15, 16, 18, 19
+
|
+
|-
+
|FSGetFreeSpaceSize
+
|<code>FSStatus FSGetFreeSpaceSize( FSClient*client, FSCmdBlock*block, const char*path, FSFreeSpaceSize *returnedFreeSize, FSRetFlag errHandling );
+
|Get free space size in quota.
+
|00, 01, 06, 10, 15, 17,18
+
|
+
|-
|}
|}