Dir.open( string ) â aDir
Dir.open( string ) {| aDir | block } â anObject
Dir.open( string ) {| aDir | block } â anObject
Class Public methods
With no block, open
is a synonym for Dir::new
. If
a block is present, it is passed aDir as a parameter. The
directory is closed at the end of the block, and Dir::open
returns the value of the block.
Please login to continue.