FS:RenameFile: Difference between revisions
Jump to navigation
Jump to search
Steveice10 (talk | contribs) m →Request |
Steveice10 (talk | contribs) m Use common types, minor cleanup. |
||
Line 1: | Line 1: | ||
=Request= | =Request= | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
! Index Word | ! Index Word | ||
! Description | |||
|- | |- | ||
| | | 0 | ||
| Header code [0x08050244] | |||
|- | |- | ||
| | | 1 | ||
| Transaction (usually 0) | |||
|- | |- | ||
| | | 2-3 | ||
| u64, Source Archive Handle | |||
|- | |- | ||
| | | 4 | ||
| [[Filesystem_services#PathType|Source File Path Type]] | |||
|- | |- | ||
| | | 5 | ||
| Source File Path Size | |||
|- | |- | ||
| 7 | | | 6-7 | ||
| u64, Destination Archive Handle | |||
|- | |- | ||
| 8 || | | 8 | ||
| [[Filesystem_services#PathType|Destination File Path Type]] | |||
|- | |- | ||
| 9 | | | 9 | ||
| Destination File Path Size | |||
|- | |- | ||
| 10 | | 10 | ||
| (SourceFilePathSize << 14) <nowiki>|</nowiki> 0x402 | |||
|- | |- | ||
| 11 | | | 11 | ||
| Source File Path Data | |||
|- | |- | ||
| 12 | | 12 | ||
| (DestinationFilePathSize << 14) <nowiki>|</nowiki> 0x802 | |||
|- | |- | ||
| 13 | | | 13 | ||
| Destination File Path Data | |||
|} | |} | ||
Line 38: | Line 45: | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
! Index Word | ! Index Word | ||
! Description | |||
|- | |- | ||
| 0 | | 0 | ||
| Header code | |||
|- | |- | ||
| 1 | | | 1 | ||
| Result code | |||
|} | |} | ||
=Description= | |||
Renames or moves a file. The file is moved from the path srcFileLowPath in archive srcArchive to destFileLowPath in destArchive. ''This call does not work with directories'', use [[FS:RenameDirectory|RenameDirectory]] instead. ('''NOTE:''' Moving files to different archives wasn't tested.) | |||
=Errors= | =Errors= |
Revision as of 21:11, 17 October 2015
Request
Index Word | Description |
---|---|
0 | Header code [0x08050244] |
1 | Transaction (usually 0) |
2-3 | u64, Source Archive Handle |
4 | Source File Path Type |
5 | Source File Path Size |
6-7 | u64, Destination Archive Handle |
8 | Destination File Path Type |
9 | Destination File Path Size |
10 | (SourceFilePathSize << 14) | 0x402 |
11 | Source File Path Data |
12 | (DestinationFilePathSize << 14) | 0x802 |
13 | Destination File Path Data |
Response
Index Word | Description |
---|---|
0 | Header code |
1 | Result code |
Description
Renames or moves a file. The file is moved from the path srcFileLowPath in archive srcArchive to destFileLowPath in destArchive. This call does not work with directories, use RenameDirectory instead. (NOTE: Moving files to different archives wasn't tested.)
Errors
Result code | Description |
---|---|
0 | Returned on success. |
0xC8804478 | When the source file does not exist or is a directory. |
0xC82044BE | When the destination file already exists. |