dir.close â nil
Instance Public methods
Closes the directory stream. Any further attempts to access dir
will raise an IOError
.
d = Dir.new("testdir") d.close #=> nil
Closes the directory stream. Any further attempts to access dir
will raise an IOError
.
d = Dir.new("testdir") d.close #=> nil
Please login to continue.