Filename.st
changeset 16272 e795e4d67993
parent 16255 1c5caf18b1d1
child 16310 c58c06bf77b6
equal deleted inserted replaced
16271:0a4f1d60a5f2 16272:e795e4d67993
  3638          gid   - owners group id
  3638          gid   - owners group id
  3639          size  - files size
  3639          size  - files size
  3640          id    - files number (i.e. inode number)
  3640          id    - files number (i.e. inode number)
  3641          accessed      - last access time (as osTime-stamp)
  3641          accessed      - last access time (as osTime-stamp)
  3642          modified      - last modification time (as osTime-stamp)
  3642          modified      - last modification time (as osTime-stamp)
  3643          statusChanged - last staus change (as osTime-stamp)
  3643          statusChangeTime - last staus change (as osTime-stamp)
  3644 
  3644 
  3645      Some of the fields may be returned as nil on systems which do not provide
  3645      Some of the fields may be returned as nil on systems which do not provide
  3646      all of the information.
  3646      all of the information.
  3647      The minimum returned info (i.e. on all OS's) will consist of at least:
  3647      The minimum returned info (i.e. on all OS's) will consist of at least:
  3648         modified
  3648         modified
  3673      '..\..\..' asFilename info
  3673      '..\..\..' asFilename info
  3674      '..\..\..\..' asFilename info
  3674      '..\..\..\..' asFilename info
  3675      'c:\' asFilename info
  3675      'c:\' asFilename info
  3676     "
  3676     "
  3677 
  3677 
  3678     "Modified: / 17.8.1998 / 10:24:10 / cg"
  3678     "Modified: / 17-08-1998 / 10:24:10 / cg"
       
  3679     "Modified (comment): / 21-03-2014 / 00:35:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
  3679 !
  3680 !
  3680 
  3681 
  3681 linkInfo
  3682 linkInfo
  3682     "return the files info. If it is a symbolic link return the info of the link itself
  3683     "return the files info. If it is a symbolic link return the info of the link itself
  3683      instead of the link's target.
  3684      instead of the link's target.
  6062 ! !
  6063 ! !
  6063 
  6064 
  6064 !Filename class methodsFor:'documentation'!
  6065 !Filename class methodsFor:'documentation'!
  6065 
  6066 
  6066 version
  6067 version
  6067     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.410 2014-03-14 11:55:17 stefan Exp $'
  6068     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.411 2014-03-21 00:35:59 vrany Exp $'
  6068 !
  6069 !
  6069 
  6070 
  6070 version_CVS
  6071 version_CVS
  6071     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.410 2014-03-14 11:55:17 stefan Exp $'
  6072     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.411 2014-03-21 00:35:59 vrany Exp $'
  6072 ! !
  6073 ! !
  6073 
  6074 
  6074 
  6075 
  6075 Filename initialize!
  6076 Filename initialize!