VLC  3.0.15
Functions
vlc_fs.h File Reference
Include dependency graph for vlc_fs.h:

Go to the source code of this file.

Functions

int vlc_open (const char *filename, int flags,...)
 Opens a system file handle. More...
 
int vlc_openat (int fd, const char *filename, int flags,...)
 Opens a system file handle relative to an existing directory handle. More...
 
int vlc_mkstemp (char *)
 
int vlc_dup (int)
 Duplicates a file descriptor. More...
 
int vlc_pipe (int[2])
 Creates a pipe (see "man pipe" for further reference). More...
 
int vlc_memfd (void)
 Creates an anonymous regular file descriptor, i.e. More...
 
ssize_t vlc_write (int, const void *, size_t)
 Writes data to a file descriptor. More...
 
ssize_t vlc_writev (int, const struct iovec *, int)
 Writes data from an iovec structure to a file descriptor. More...
 
int vlc_close (int fd)
 Closes a file descriptor. More...
 
int vlc_stat (const char *filename, struct stat *)
 Finds file/inode information - like stat(). More...
 
int vlc_lstat (const char *filename, struct stat *)
 Finds file/inode information, as lstat(). More...
 
int vlc_unlink (const char *filename)
 Removes a file. More...
 
int vlc_rename (const char *oldpath, const char *newpath)
 Moves a file atomically. More...
 
FILE * vlc_fopen (const char *filename, const char *mode)
 Opens a FILE pointer. More...
 
DIR * vlc_opendir (const char *dirname)
 Opens a DIR pointer. More...
 
const char * vlc_readdir (DIR *dir)
 Reads the next file name from an open directory. More...
 
int vlc_loaddir (DIR *dir, char ***namelist, int(*select)(const char *), int(*compar)(const char **, const char **))
 Does the same as vlc_scandir(), but takes an open directory pointer instead of a directory path. More...
 
int vlc_scandir (const char *dirname, char ***namelist, int(*select)(const char *), int(*compar)(const char **, const char **))
 Selects file entries from a directory, as GNU C scandir(). More...
 
int vlc_mkdir (const char *dirname, mode_t mode)
 Creates a directory. More...
 
char * vlc_getcwd (void)
 Determines the current working directory. More...
 

Detailed Description

The functions in this file help with using low-level Unix-style file descriptors, BSD sockets and directories. In general, they retain the prototype and most semantics from their respective standard equivalents. However, there are a few differences: