Top |
const char *
gnome_vfs_result_to_string (GnomeVFSResult result
);
Returns a string representing result
, useful for debugging
purposes, but probably not appropriate for passing to the user.
GnomeVFSResult
gnome_vfs_result_from_errno_code (int errno_code
);
Converts a system errno value to a GnomeVFSResult.
GnomeVFSResult
gnome_vfs_result_from_errno (void
);
Converts the system errno to a GnomeVFSResult.
GnomeVFSResult
gnome_vfs_result_from_h_errno (void
);
Converts the system "h_errno" to a GnomeVFSResult (h_errno represents errors accessing and finding internet hosts)
GnomeVFSResult
gnome_vfs_result_from_h_errno_val (int h_errno_code
);
Converts the error code h_errno_code
into a GnomeVFSResult.
A GnomeVFSResult informs library clients about the result of a file operation. Unless it is GNOME_VFS_OK, it denotes that a problem occurred and the operation could not be executed successfully.
gnome_vfs_result_to_string() provides a textual representation of GnomeVFSResults.
No error. |
||
File not found. |
||
Generic error. |
||
Internal error. |
||
Invalid parameters. |
||
Unsupported operation. |
||
I/O error. |
||
Data corrupted. |
||
Format not valid. |
||
Bad file handle. |
||
File too big. |
||
No space left on device. |
||
Read-only file system. |
||
Invalid URI. |
||
File not open. |
||
Open mode not valid. |
||
Access denied. |
||
Too many open files. |
||
End of file. |
||
Not a directory. |
||
Operation in progress. |
||
Operation interrupted. |
||
File exists. |
||
Looping links encountered. |
||
Operation not permitted. |
||
Is a directory. |
||
Not enough memory. |
||
Host not found. |
||
Host name not valid. |
||
Host has no address. |
||
Login failed. |
||
Operation cancelled. |
||
Directory busy. |
||
Directory not empty. |
||
Too many links. |
||
Read only file system. |
||
Not on the same file system. |
||
Name too long. |
||
Service not available. |
||
Request obsoletes service's data. |
||
Protocol error. |
||
Could not find master browser. |
||
No default action associated. |
||
No handler for URL scheme. |
||
Error parsing command line. |
||
Error launching command. |
||
Timeout reached. |
||
Nameserver error. |
||
The resource is locked. |
||
Function call deprecated. |
||
The specified filename is invalid. |
||
Not a symbolic link. |
||