Linuxファイルの作成時間。有用な属性を考慮する際の要件課題は何ですか? [閉鎖]

Linuxファイルの作成時間。有用な属性を考慮する際の要件課題は何ですか? [閉鎖]

私は多くのユーザーが基本的に多くのLinux / unixバリアントがファイルの作成時間をサポート/保存しないことを知っていることを発見しました。しかし、私はこれが操作、監査、追跡とある程度関連していると思います。知ってみたらそれでもなかった。

struct stat {
          dev_t     st_dev;     /* ID of device containing file */
          ino_t     st_ino;     /* inode number */
          mode_t    st_mode;    /* protection */
          nlink_t   st_nlink;   /* number of hard links */
          uid_t     st_uid;     /* user ID of owner */
          gid_t     st_gid;     /* group ID of owner */
          dev_t     st_rdev;    /* device ID (if special file) */
          off_t     st_size;    /* total size, in bytes */
          blksize_t st_blksize; /* blocksize for filesystem I/O */
          blkcnt_t  st_blocks;  /* number of blocks allocated */
          time_t    st_atime;   /* time of last access */
          time_t    st_mtime;   /* time of last modification */
          time_t    st_ctime;   /* time of last status change */
      };

明らかに需要の観点から見ると、これは誠意を持っています。これが有効で合理的な要求ではないのはなぜですか?

ベストアンサー1

おすすめ記事