Status and Error Codes returned by File System functions.
More...
|
enum | fsStatus {
fsOK = 0
,
fsError
,
fsUnsupported
,
fsAccessDenied
,
fsInvalidParameter
,
fsInvalidDrive
,
fsInvalidPath
,
fsUninitializedDrive
,
fsDriverError
,
fsMediaError
,
fsNoMedia
,
fsNoFileSystem
,
fsNoFreeSpace
,
fsFileNotFound
,
fsDirNotEmpty
,
fsTooManyOpenFiles
,
fsAlreadyExists
,
fsNotDirectory
} |
| File System return codes. More...
|
|
Status and Error Codes returned by File System functions.
The Status and Error Codes section lists all the return values that the File System Component functions will return.
◆ fsStatus
File System return codes.
Enumerator |
---|
fsOK | Operation succeeded.
|
fsError | Unspecified error.
|
fsUnsupported | Operation not supported.
|
fsAccessDenied | Resource access denied.
|
fsInvalidParameter | Invalid parameter specified.
|
fsInvalidDrive | Nonexistent drive.
|
fsInvalidPath | Invalid path specified.
|
fsUninitializedDrive | Drive is uninitialized.
|
fsDriverError | Read/write error.
|
fsMediaError | Media error.
|
fsNoMedia | No media, or not initialized.
|
fsNoFileSystem | File system is not formatted.
|
fsNoFreeSpace | No free space available.
|
fsFileNotFound | Requested file not found.
|
fsDirNotEmpty | The directory is not empty.
|
fsTooManyOpenFiles | Too many open files.
|
fsAlreadyExists | File or directory already exists.
|
fsNotDirectory | Path is not a directory.
|