从该设备上的文件的名称/描述符获取存储设备块大小

时间:2015-02-20 13:47:13

标签: c linux file-descriptor

假设我有一个文件名或一个打开的文件描述符,用于存放在存储设备(硬盘,USB闪存,DVD等)上的文本文件。如何在C中以编程方式从Linux中的文件名/描述符获取该设备的块大小。我知道ioctl系统调用,但它接受设备专用文件的开放描述符,而不是该设备上文件的开放描述符。 / p>

例如,我在某个存储设备(如/ dev / sda1)上有一个文件名“/home/hrant/file1.txt”(或该文件上的打开文件描述符)。我不知道文件在哪个设备上。如何获取该设备的块大小以读取块中文件“/home/hrant/file1.txt”的内容。

1 个答案:

答案 0 :(得分:1)

fstat()手册页所示:

 int fstat(int fildes, struct stat *buf);  
 int stat(const char *path, struct stat *buf);  
  

stat()函数获取有关path指向的文件的信息。不需要读取,写入或执行指定文件的权限,但必须可以搜索通向该文件的路径名中列出的所有目录。
  fstat()获取有关文件描述符fildes已知的打开文件的相同信息   buf参数是指向由其定义的有关文件的信息的统计结构的指针。   统计结构定义为:

struct stat {
    dev_t    st_dev;    /* device inode resides on */
    ino_t    st_ino;    /* inode's number */
    mode_t   st_mode;   /* inode protection mode */
    nlink_t  st_nlink;  /* number of hard links to the file */
    uid_t    st_uid;    /* user-id of owner */
    gid_t    st_gid;    /* group-id of owner */
    dev_t    st_rdev;   /* device type, for special file inode */
    struct timespec st_atimespec;  /* time of last access */
    struct timespec st_mtimespec;  /* time of last data modification */
    struct timespec st_ctimespec;  /* time of last file status change */
    off_t    st_size;   /* file size, in bytes */
    quad_t   st_blocks; /* blocks allocated for file */
    u_long   st_blksize;/* optimal file sys I/O ops blocksize */
 };

我希望它可以帮到你。