AbstractOperatingSystem.st
changeset 6793 0d3e3fd18a70
parent 6781 97bf31b8e8b1
child 7059 6781d12b989a
equal deleted inserted replaced
6792:ebd0bc1c5c6d 6793:0d3e3fd18a70
  2394 
  2394 
  2395 timeOfLastAccess:aPathName
  2395 timeOfLastAccess:aPathName
  2396     "return the time, when the file was last accessed.
  2396     "return the time, when the file was last accessed.
  2397      For nonexistent files, nil is returned."
  2397      For nonexistent files, nil is returned."
  2398 
  2398 
  2399     ^ (self infoOf:aPathName) accessed 
  2399     ^ (self infoOf:aPathName) accessTime 
  2400 !
  2400 !
  2401 
  2401 
  2402 timeOfLastChange:aPathName
  2402 timeOfLastChange:aPathName
  2403     "return the time, when the file was last changed. 
  2403     "return the time, when the file was last changed. 
  2404      For nonexistent files, nil is returned."
  2404      For nonexistent files, nil is returned."
  2405 
  2405 
  2406     ^ (self infoOf:aPathName) modified
  2406     ^ (self infoOf:aPathName) modificationTime
  2407 !
  2407 !
  2408 
  2408 
  2409 typeOf:aPathName
  2409 typeOf:aPathName
  2410     "return the type of a file as a symbol; for nonexistent files,
  2410     "return the type of a file as a symbol; for nonexistent files,
  2411      nil is returned.
  2411      nil is returned.
  4434 ! !
  4434 ! !
  4435 
  4435 
  4436 !AbstractOperatingSystem class methodsFor:'documentation'!
  4436 !AbstractOperatingSystem class methodsFor:'documentation'!
  4437 
  4437 
  4438 version
  4438 version
  4439     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.76 2002-09-27 12:01:15 penk Exp $'
  4439     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.77 2002-10-08 19:28:29 cg Exp $'
  4440 ! !
  4440 ! !
  4441 
  4441 
  4442 AbstractOperatingSystem initialize!
  4442 AbstractOperatingSystem initialize!