ioctl_fat(2) | System Calls Manual | ioctl_fat(2) |
NAME
ioctl_fat - manipulating the FAT filesystem
LIBRARY
Standard C library (libc, -lc)
SYNOPSIS
#include <sys/ioctl.h>
int ioctl(int fd, unsigned long op, ...);
DESCRIPTION
The ioctl(2) system call can be used to read and write metadata of FAT filesystems that are not accessible using other system calls. The following op values are available.
Reading and setting file attributes
Reading the volume ID
Reading short filenames of a directory
RETURN VALUE
On success, a nonnegative value is returned. On error, -1 is returned, and errno is set to indicate the error.
ERRORS
- ENOTTY
- The file descriptor fd does not refer to an object in a FAT filesystem.
STANDARDS
Linux.
SEE ALSO
2024-06-14 | Linux man-pages 6.9.1 |