DirectoryStream.st
changeset 1295 83f594f05c52
parent 1281 b4b3abffdf32
child 1631 0d50b800b011
equal deleted inserted replaced
1294:e26bbb61f6b2 1295:83f594f05c52
   349 documentation
   349 documentation
   350 "
   350 "
   351     Instances of DirectoryStream allow reading a file-directory,
   351     Instances of DirectoryStream allow reading a file-directory,
   352     as if it was a stream of filenames.
   352     as if it was a stream of filenames.
   353     Basically, its an interface to opendir, readdir and closedir.
   353     Basically, its an interface to opendir, readdir and closedir.
       
   354 
       
   355     [author:]
       
   356         Claus Gittinger
   354 "
   357 "
   355 ! !
   358 ! !
   356 
   359 
   357 !DirectoryStream class methodsFor:'instance creation'!
   360 !DirectoryStream class methodsFor:'instance creation'!
   358 
   361 
   508 ! !
   511 ! !
   509 
   512 
   510 !DirectoryStream class methodsFor:'documentation'!
   513 !DirectoryStream class methodsFor:'documentation'!
   511 
   514 
   512 version
   515 version
   513     ^ '$Header: /cvs/stx/stx/libbasic/DirectoryStream.st,v 1.29 1996-04-25 08:35:28 stefan Exp $'
   516     ^ '$Header: /cvs/stx/stx/libbasic/DirectoryStream.st,v 1.30 1996-04-25 17:01:37 cg Exp $'
   514 ! !
   517 ! !