AutoDeletedFilename.st
branchjv
changeset 18060 3708e12e9aa8
parent 18011 deb0c3355881
parent 15247 be9fd0956f80
child 18071 009cf668b0ed
equal deleted inserted replaced
18059:b882507b9fdf 18060:3708e12e9aa8
    46 "
    46 "
    47     the following file will be automatically deleted after some time:
    47     the following file will be automatically deleted after some time:
    48                                                     [exBegin]
    48                                                     [exBegin]
    49     |f p|
    49     |f p|
    50 
    50 
    51     f := Filename newTemporary.
    51     f := AutoDeletedFilename newTemporary.
    52     f writeStream
    52     f writeStream
    53         nextPutLine:'hello';
    53         nextPutLine:'hello';
    54         close.
    54         close.
    55     p := f pathName.
    55     p := f pathName.
    56     Transcript showCR:p.
    56     Transcript showCR:p.
   135 ! !
   135 ! !
   136 
   136 
   137 !AutoDeletedFilename class methodsFor:'documentation'!
   137 !AutoDeletedFilename class methodsFor:'documentation'!
   138 
   138 
   139 version
   139 version
   140     ^ '$Header: /cvs/stx/stx/libbasic/AutoDeletedFilename.st,v 1.8 2012-11-06 17:47:54 cg Exp $'
   140     ^ '$Header: /cvs/stx/stx/libbasic/AutoDeletedFilename.st,v 1.9 2013-05-15 10:25:11 stefan Exp $'
   141 ! !
   141 ! !
       
   142