Scroll to navigation

RFIO_FOPEN(3) Rfio Library Functions RFIO_FOPEN(3)

NAME

rfio_fopen - opens a file

SYNOPSIS

#include <sys/types.h>
#include "rfio_api.h"

FILE *rfio_fopen (char *path, char *mode);

Under Linux, for large files:
#define _LARGEFILE64_SOURCE
#include <sys/types.h>
#include "rfio_api.h"

FILE *rfio_fopen64 (char *path, char *mode);

For large files, under other systems:
#include <sys/types.h>
#include "rfio_api.h"

FILE *rfio_fopen64 (char *path, char *mode);

DESCRIPTION

rfio_fopen opens the file whose name is the string pointed to by path , a character string containing the filename specification, and associates a FILE stream with it.

mode is an access mode indicator. One of the characters "r" or "w".

rfio_fopen64 allows to open large files (see NOTES).

RETURN VALUE

This routine returns NULL if the operation failed or a non-NULL pointer to a FILE structure if the operation was successful. If it fails, serrno variable is set appropriately.

ERRORS

The named file/directory does not exist or is a null pathname.
Search permission is denied on a component of the path prefix.
path is NULL
A component of path prefix is not a directory.
The mode provided to local open is invalid (see fopen(3))
Too many open files
Connection reset by peer
Connection timed out
Connection refused
No route to host
Host unknown.
Service unknown.
Version ID mismatch
Communication error.
Retry count exhausted
Host did not return error number
Host is not on local network and no mapping found

NOTES

On Irix, Tru64 and IA64 the 64 bit mode is the default one, rfio_fopen and rfio_fopen64 are identical.

SEE ALSO

fopen(3), rfio_serror(3), rfio_perror(3), serrno(3)

AUTHOR

LCG Grid Deployment Team

$Date: 2005/03/31 13:13:02 $ LCG