Filename.st
changeset 17113 a521179b677c
parent 17112 b9ec1d0b917a
child 17143 5b1217eaafa7
equal deleted inserted replaced
17112:b9ec1d0b917a 17113:a521179b677c
   453 !
   453 !
   454 
   454 
   455 homeDirectory
   455 homeDirectory
   456     "return your homeDirectory.
   456     "return your homeDirectory.
   457      Some OperatingSystems do not support this - on those, the defaultDirectory
   457      Some OperatingSystems do not support this - on those, the defaultDirectory
   458      (which is the currentDirectory) is returned."
   458      (which is the currentDirectory) is returned.
       
   459      Notice: services under windows also do not have a home directory."
   459 
   460 
   460     |s|
   461     |s|
   461 
   462 
   462     s := OperatingSystem getHomeDirectory.
   463     s := OperatingSystem getHomeDirectory.
   463     s isNil ifTrue:[
   464     s isNil ifTrue:[
  6057 ! !
  6058 ! !
  6058 
  6059 
  6059 !Filename class methodsFor:'documentation'!
  6060 !Filename class methodsFor:'documentation'!
  6060 
  6061 
  6061 version
  6062 version
  6062     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.430 2014-11-23 15:45:16 cg Exp $'
  6063     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.431 2014-11-23 16:51:36 cg Exp $'
  6063 !
  6064 !
  6064 
  6065 
  6065 version_CVS
  6066 version_CVS
  6066     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.430 2014-11-23 15:45:16 cg Exp $'
  6067     ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.431 2014-11-23 16:51:36 cg Exp $'
  6067 ! !
  6068 ! !
  6068 
  6069 
  6069 
  6070 
  6070 Filename initialize!
  6071 Filename initialize!