static MateVFSResult
do_get_file_info (MateVFSMethod *method,
		  MateVFSURI *uri,
		  MateVFSFileInfo *file_info,
		  MateVFSFileInfoOptions options,
		  MateVFSContext *context)
{
	PERFORM_OPERATION (get_file_info, mate_vfs_get_file_info_uri_cancellable (uri, file_info, options, context));
}
Example #2
0
/**
 * mate_vfs_get_file_info_uri:
 * @uri: uri of the file for which information will be retrieved.
 * @info: pointer to a #MateVFSFileInfo object that will hold the information
 * for the file on return.
 * @options: options for retrieving file information.
 * 
 * Retrieve information about @text_uri.  The information will be stored in
 * @info.
 * 
 * Return value: an integer representing the result of the operation.
 */
MateVFSResult
mate_vfs_get_file_info_uri (MateVFSURI *uri,
			     MateVFSFileInfo *info,
			     MateVFSFileInfoOptions options)
{
	return mate_vfs_get_file_info_uri_cancellable (uri, 
							info, 
							options,
							NULL);
}