Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write this in C/shell programming not C++. Thanks. Task 2: Printing the time that the file path was created (50 points) The stat system call
Write this in C/shell programming not C++. Thanks.
Task 2: Printing the time that the file path was created (50 points) The stat system call can access a file by name and retrieve file status information. It is given by: int stat (const char *pathname, struct stat buf); This system call returns a stal structure (both the function and struct are called stat), which contains the following fields: struct stat dev_tst_dev; /* ID of device containing file * ino_tst_ino; /* inode number mode_tst_mode; protection nlink tst nlink; /* number of hard links uid tst uid; /* user ID of owner gid tst gid; /* group ID of owner * dev_tst_rdev; /* device ID (if special file) * ofrt st size; /* total size, in bytes blksize tst blksize; /blocksize for file system 10! blkent tst blocks; /* number of 512B blocks allocated time t statime; /* time of last access * time_tst_mtime; /* time of last modification */ timet stctime; time of last status change */ On success, zero is returned. On error, -1 is returned, and errno is set appropriately. The following program displays the time that the file path was last accessed. Type in and complete the following program on the computer. Save it as printaccess.c. Compile the program, then execute it by giving it a path name as an argument. printaccess.c: #includeStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started