<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to see a file's create time, access time and modification time in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563089#M53556</link>
    <description>&lt;P&gt;&amp;gt;How to see a file's create time, access time and modification time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unix and Linux don't track creation time.&lt;/P&gt;&lt;P&gt;You can see the latter two with "ls -lu" and "ls -l".&lt;BR /&gt;&lt;BR /&gt;&amp;gt;What does access time and modification time mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modification means what you expect, the file was modified.&lt;/P&gt;&lt;P&gt;Access means the file was ether read or written.&lt;/P&gt;</description>
    <pubDate>Sun, 23 Nov 2014 01:30:23 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2014-11-23T01:30:23Z</dc:date>
    <item>
      <title>How to see a files create time , access time and modification time</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563009#M53555</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to see a files create time, access time and modification time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does&amp;nbsp;access time and modification time mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2012 16:05:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563009#M53555</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2012-02-24T16:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to see a file's create time, access time and modification time</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563089#M53556</link>
      <description>&lt;P&gt;&amp;gt;How to see a file's create time, access time and modification time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unix and Linux don't track creation time.&lt;/P&gt;&lt;P&gt;You can see the latter two with "ls -lu" and "ls -l".&lt;BR /&gt;&lt;BR /&gt;&amp;gt;What does access time and modification time mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modification means what you expect, the file was modified.&lt;/P&gt;&lt;P&gt;Access means the file was ether read or written.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Nov 2014 01:30:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563089#M53556</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-11-23T01:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to see a file's create time, access time and modification time</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563529#M53557</link>
      <description>&lt;P&gt;Have a look at &amp;nbsp;the fstat man page. There are three time fields&amp;nbsp;st_atime,&amp;nbsp;st_mtime and&amp;nbsp;&amp;nbsp;st_ctime: time of last access,&amp;nbsp;last modification and last status change. None of these holds the creation time/date.&lt;/P&gt;&lt;DIV&gt;Further the man page explains when which field is updated. With ls you can see these times. On Linux it just looks like this:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ rm -f aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ touch aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lu --full aFile # shows atime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--r-- 1 joe users 0 2012-02-25 16:42:05.616078588 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -l &amp;nbsp;--full aFile # shows mtime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--r-- 1 joe users 0 2012-02-25 16:42:05.616078588 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lc --full aFile # shows ctime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--r-- 1 joe users 0 2012-02-25 16:42:05.616078588 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ echo &amp;gt;&amp;gt;aFile hello&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lu --full aFile # shows atime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--r-- 1 joe users 6 2012-02-25 16:42:05.616078588 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -l &amp;nbsp;--full aFile # shows mtime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--r-- 1 joe users 6 2012-02-25 16:43:14.989031242 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lc --full aFile # shows ctime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--r-- 1 joe users 6 2012-02-25 16:43:14.989031242 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ chmod o+w aFile&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lu --full aFile # shows atime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--rw- 1 joe users 6 2012-02-25 16:42:05.616078588 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -l &amp;nbsp;--full aFile # shows mtime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--rw- 1 joe users 6 2012-02-25 16:43:14.989031242 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lc --full aFile # shows ctime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--rw- 1 joe users 6 2012-02-25 16:44:22.435327799 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ cat aFile&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;hello&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lu --full aFile # shows atime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--rw- 1 joe users 6 2012-02-25 16:45:18.901684610 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -l &amp;nbsp;--full aFile # shows mtime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--rw- 1 joe users 6 2012-02-25 16:43:14.989031242 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$ ls -lc --full aFile # shows ctime&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;-rw-r--rw- 1 joe users 6 2012-02-25 16:44:22.435327799 +0100 aFile&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;$&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;As you can see, writing to the file with echo didn't change the access time.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 25 Feb 2012 16:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/5563529#M53557</guid>
      <dc:creator>H.Becker</dc:creator>
      <dc:date>2012-02-25T16:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to see a file's create time, access time and modification time</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/6675557#M54664</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can see using "stat" command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;stat filename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it will show the requested things&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2014 06:46:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/6675557#M54664</guid>
      <dc:creator>abbasmohammed</dc:creator>
      <dc:date>2014-11-20T06:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to see a file's create time, access time and modification time</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/6676546#M54666</link>
      <description>&lt;P&gt;&amp;gt;it will show the requested things&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Except for creation time.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Nov 2014 01:31:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/6676546#M54666</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-11-23T01:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to see a file's create time, access time and modification time</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/6677646#M54667</link>
      <description>&lt;P&gt;# stat /etc/passwd&lt;BR /&gt;&amp;nbsp; File: `/etc/passwd'&lt;BR /&gt;&amp;nbsp; Size: 7623&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Blocks: 16&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IO Block: 4096&amp;nbsp;&amp;nbsp; regular file&lt;BR /&gt;Device: fd00h/64768d&amp;nbsp;&amp;nbsp;&amp;nbsp; Inode: 314330&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Links: 1&lt;BR /&gt;Access: (0644/-rw-r--r--)&amp;nbsp; Uid: (&amp;nbsp;&amp;nbsp;&amp;nbsp; 0/&amp;nbsp;&amp;nbsp;&amp;nbsp; root)&amp;nbsp;&amp;nbsp; Gid: (&amp;nbsp;&amp;nbsp;&amp;nbsp; 0/&amp;nbsp;&amp;nbsp;&amp;nbsp; root)&lt;BR /&gt;Access: 2014-11-25 12:55:42.000000000 +0300&lt;BR /&gt;Modify: 2014-10-24 07:27:51.000000000 +0300&lt;BR /&gt;Change: 2014-10-24 07:27:51.000000000 +0300&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2014 09:57:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-see-a-files-create-time-access-time-and-modification-time/m-p/6677646#M54667</guid>
      <dc:creator>Ajin_1</dc:creator>
      <dc:date>2014-11-25T09:57:15Z</dc:date>
    </item>
  </channel>
</rss>

