Access time of files and directories

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Access time of files and directories
# 8  
Old 03-14-2013
Oh I overlooked that. Sorry
Thanks Corona for the clarification
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

2. Shell Programming and Scripting

listing directories and sub directories with time and name options

Hello all! I'm looking to list directories and sub-directories of a path, on this forum I found this command: find $path -type d -exec ls -ld {} \; The issue I have is that with a simple ls, the list is listed by name, and using -t I get it by time. How could I list directories and sub... (5 Replies)
Discussion started by: nomadvisuals
5 Replies

3. AIX

Want to find the last access time for large group of files at one go

Dear All, I'm working as a DBA and dont have much knowledge at OS level commands.we have requirement that we need find the files which has been last accessed >= apr 2010and also access date <= apr 2010 for a large set of files.Do know some commands likeistat, ls -u.But can anyone provide me the... (4 Replies)
Discussion started by: dbanrb
4 Replies

4. Shell Programming and Scripting

How to access files from different directories and to perform search action in those files?

Hi, I want to access files from different directories (for example: /home/dir1/file1 , /home/dir2/file2 ...) Like this i have to access these files(file1, file2...). (3 Replies)
Discussion started by: bangarukannan
3 Replies

5. UNIX for Dummies Questions & Answers

File access time does not change on some files

Hey All, I want to get the access time of files in a directory. I used ls -lu on a directory and picked a file that had the access time of Mar 1 and used cat to get the contents of the file. Then I used the ls -lu again and the access time changed on that file. Perfect !! Now if I cat a... (10 Replies)
Discussion started by: vipulgupta0
10 Replies

6. Shell Programming and Scripting

Time Difference between two files in two different directories

Hi, Can anyone please help me. How to write shell script for taking time difference between two files which are in two different folders. Example: Folder1 is having sample_1_*.txt with the time 13:10 hours Folder2 is having sample_1_*.txt with the time 13:17 hours Now i need the time... (6 Replies)
Discussion started by: SanjayPasum
6 Replies

7. Red Hat

restrict access of a user to two directories only

Hi all, I am using RHEL 5.0 I need a user say test to have full access to two directories, say /tmp1 & /tmp2 only other than his home directory. I do not want to change his login shell which is ksh or bash by default. Moreover, he should not even have read access of other directories. ... (10 Replies)
Discussion started by: vikas027
10 Replies

8. Solaris

help in changing the access level for directories

Hi all, can some one help me in chmod command, and let me know the various combinations for this command. for : eg chmod -R 777 <dir names> this gives all rights to all but i want the specific access levels kindly help me out in this issue. Thank you, lakshmanan (2 Replies)
Discussion started by: lakshmananl
2 Replies

9. HP-UX

HPUX list files with access time more than 5 min

Hi, does anyone know how to find files who have the last access time bigger than 5 min ago, in linux i use: find ./ -amin +5 -type f -maxdepth 1 -name "*.*" but in hp-ux the find command doesn't have the -amin option.... (2 Replies)
Discussion started by: mvrk
2 Replies
Login or Register to Ask a Question
utimes(2)							System Calls Manual							 utimes(2)

NAME
utimes - set file access and modification times SYNOPSIS
DESCRIPTION
The function sets the access and modification times of the file pointed to by the path argument to the value of the times argument. The function allows time specifications accurate to the microsecond. For the times argument is an array of structures. The first array member represents the date and time of last access, and the second mem- ber represents the date and time of last modification. The times in the structure are measured in seconds and microseconds since the Epoch, although rounding toward the nearest second may occur. If the times argument is a null pointer, the access and modification times of the file are set to the current time. The effective user ID of the process must be the same as the owner of the file, or must have write access to the file or appropriate privileges to use this call in this manner. Upon completion, will mark the time of the last file status change, st_ctime, for update. RETURN VALUE
Upon successful completion, 0 is returned. Otherwise, -1 is returned and is set to indicate the error, and the file times will not be affected. ERRORS
The utimes() function will fail if: Search permission is denied by a component of the path prefix; or the times argument is a null pointer and the effective user ID of the process does not match the owner of the file and write access is denied. Too many symbolic links were encountered in resolving path. The length of the path argument exceeds or a pathname component is longer than A component of path does not name an existing file or path is an empty string. A component of the path prefix is not a directory. The times argument is not a null pointer and the calling process' effective user ID has write access to the file but does not match the owner of the file and the calling process does not have the appropriate privileges. The file system containing the file is read-only. The function may fail if: Pathname resolution of a symbolic link produced an intermediate result whose length exceeds SEE ALSO
<sys/time.h>. CHANGE HISTORY
First released in Issue 4, Version 2. utimes(2)