AbstractOperatingSystem.st
changeset 15154 d9d1ecc99d79
parent 14937 808947598c5b
child 15207 32e584a5f998
child 18054 56594a8c6b83
equal deleted inserted replaced
15153:445368176cf3 15154:d9d1ecc99d79
  2655     self subclassResponsibility
  2655     self subclassResponsibility
  2656 !
  2656 !
  2657 
  2657 
  2658 primIdOf:aPathName
  2658 primIdOf:aPathName
  2659     "the actual code to return the fileNumber (i.e. inode number) of a file."
  2659     "the actual code to return the fileNumber (i.e. inode number) of a file."
  2660 
       
  2661     self subclassResponsibility
       
  2662 !
       
  2663 
       
  2664 primPathNameOf:pathName
       
  2665     "return the pathName of the argument, aPathString,
       
  2666      - thats the full pathname of the directory, starting at '/'.
       
  2667      This method here returns nil, if the OS does not provide a
       
  2668      realPath library function.
       
  2669      Notice: if symbolic links are involved, the result may look different
       
  2670      from what you expect."
       
  2671 
  2660 
  2672     self subclassResponsibility
  2661     self subclassResponsibility
  2673 !
  2662 !
  2674 
  2663 
  2675 timeOfLastAccess:aPathName
  2664 timeOfLastAccess:aPathName
  7195 ! !
  7184 ! !
  7196 
  7185 
  7197 !AbstractOperatingSystem class methodsFor:'documentation'!
  7186 !AbstractOperatingSystem class methodsFor:'documentation'!
  7198 
  7187 
  7199 version
  7188 version
  7200     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.234 2013-03-23 11:47:44 cg Exp $'
  7189     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.235 2013-04-25 11:22:42 stefan Exp $'
  7201 !
  7190 !
  7202 
  7191 
  7203 version_CVS
  7192 version_CVS
  7204     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.234 2013-03-23 11:47:44 cg Exp $'
  7193     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.235 2013-04-25 11:22:42 stefan Exp $'
  7205 ! !
  7194 ! !
  7206 
  7195 
  7207 
  7196 
  7208 AbstractOperatingSystem initialize!
  7197 AbstractOperatingSystem initialize!