UNIX Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsOperating SystemsUNIX Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 8th, 2007, 07:01 AM
livingsword livingsword is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2007
Posts: 12 livingsword User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 45 m 6 sec
Reputation Power: 0
How to get the file creation date ?

well, im trying to list all files created today. The problem is , all i can find is the modification date. Even the options like -atime, ctime in find command refer to the modification date.

Is there any command i could use for finding out file creation date ? or may be any other method ??

Thanks for helping out.

Reply With Quote
  #2  
Old June 8th, 2007, 07:30 AM
mu's Avatar
mu mu is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2006
Location: Dublin, Ireland
Posts: 174 mu User rank is Sergeant Major (2000 - 5000 Reputation Level)mu User rank is Sergeant Major (2000 - 5000 Reputation Level)mu User rank is Sergeant Major (2000 - 5000 Reputation Level)mu User rank is Sergeant Major (2000 - 5000 Reputation Level)mu User rank is Sergeant Major (2000 - 5000 Reputation Level)mu User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Days 23 h 39 m 56 sec
Reputation Power: 43
This depends on what filesystem you're using. Generally though the creation time isn't stored. Ctime actually records the time of the last status change. Changing permissions or renaming the file will result in the ctime being updated. Certain filesystems do record files' creation times, at least ZFS does anyway (crtime).

Reply With Quote
  #3  
Old June 8th, 2007, 07:51 AM
livingsword livingsword is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2007
Posts: 12 livingsword User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 45 m 6 sec
Reputation Power: 0
Thanks. i went through the wiki on ZFS, and it is mentioned that it cannot be ported on Linux distros due to some licensing issue. So does that mean , theres no way of determining file creation date on a linux distro like Red Hat ??

Reply With Quote
  #4  
Old June 8th, 2007, 08:56 AM
SimonJM SimonJM is offline
Contributing User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Mar 2006
Posts: 2,108 SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level)SimonJM User rank is General 8th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 1 Week 1 Day 4 h 41 m
Reputation Power: 1485
You will find that even with file sytems that hold creaton date (and I think most do) there is no way, direct from the shall prompt to obatin it. You will need to engage another programming environment (perl springs to mind) to show it.
__________________
The moon on the one hand, the dawn on the other:
The moon is my sister, the dawn is my brother.
The moon on my left and the dawn on my right.
My brother, good morning: my sister, good night.
-- Hilaire Belloc

Reply With Quote
  #5  
Old June 8th, 2007, 09:44 AM
livingsword livingsword is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2007
Posts: 12 livingsword User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 45 m 6 sec
Reputation Power: 0
any hints on how can i go about doing that ? im pretty much a noob.

Reply With Quote
  #6  
Old June 9th, 2007, 10:08 AM
livingsword livingsword is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2007
Posts: 12 livingsword User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 45 m 6 sec
Reputation Power: 0
ok, i tried it with perl and i've managed to reach upto this point ,

Code:

perl -e 'use File::stat; 

use Time::localtime; 

$file='/mnt'; 

$date_string = ctime(stat($file)->mtime); 

print "file $file created at $date_string\n";' 


But when i try to run the script , i get error "search field incomplete".

Please help.

Reply With Quote
  #7  
Old June 10th, 2007, 09:14 AM
ghostdog74 ghostdog74 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2006
Posts: 177 ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level)ghostdog74 User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 2 Days 21 h 34 m 32 sec
Reputation Power: 233
you can try stat.
Code:
stat -c "%y" file

check your man page.

Reply With Quote
  #8  
Old June 11th, 2007, 11:22 AM
jim mcnamara jim mcnamara is offline
......@.........
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Jun 2004
Posts: 1,345 jim mcnamara User rank is Sergeant Major (2000 - 5000 Reputation Level)jim mcnamara User rank is Sergeant Major (2000 - 5000 Reputation Level)jim mcnamara User rank is Sergeant Major (2000 - 5000 Reputation Level)jim mcnamara User rank is Sergeant Major (2000 - 5000 Reputation Level)jim mcnamara User rank is Sergeant Major (2000 - 5000 Reputation Level)jim mcnamara User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 38 m 38 sec
Reputation Power: 54
Shells and utilities like ls and date generally try to conform to a set of standards - POSIX.

The standard says that three filetimes are recorded - access time, modification time, and inode change time - atime, mtime, ctime. It also says these three are the only filetimes that will be shown for a file.

If you find a filesystem that supports a fourth filetime, creation time, it is actually an oddity, and most everything out there will not be able to support it.

In fact, date -r <filename> shows mtime, according to the man page. stat does the same - only shows file modification time. And these are GNU extensions, available on with GNU utilities, and by default, on linux boxes. "Regular" unix distributions do not have stat and the -r option for date.

The short answer is: there are no file creation times in UNIX. It is a windows thing.

Reply With Quote
  #9  
Old July 20th, 2007, 08:51 AM
tonv tonv is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2007
Posts: 1 tonv User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 m 52 sec
Reputation Power: 0
time that file is update

do you search this ?


#! /usr/bin/perl
use File::stat;
use Time::localtime;
$file='path//to/filename';
$date_string =ctime(stat($file)->mtime);
print "file $file update at $date_string\n";

Reply With Quote
  #10  
Old July 21st, 2007, 12:57 AM
n1np's Avatar
n1np n1np is offline
63 dorinte
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Location: Alleghany Highlands
Posts: 130 n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)n1np User rank is Captain (20000 - 30000 Reputation Level)  Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29Folding Points: 14458068 Folding Title: Super Ultimate Folder - Level 29
Time spent in forums: 3 Weeks 1 h 58 m 2 sec
Reputation Power: 229
To add to the confusion, in FreeBSD (UFS) there is, in addition to the times of file access, file modification, and inode change,
Code:
$ stat -f %B $filename

which the stat manpage claims to give "the birth time of the inode". So we can know the creation time of the inode, but not necessarily the creation time of the file.

Curious .

Ben N1NP
__________________

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsUNIX Help > How to get the file creation date ?

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap