dir.tell â integer
Instance Public methods
Returns the current position in dir. See also
Dir#seek
.
d = Dir.new("testdir") d.tell #=> 0 d.read #=> "." d.tell #=> 12
Returns the current position in dir. See also
Dir#seek
.
d = Dir.new("testdir") d.tell #=> 0 d.read #=> "." d.tell #=> 12
Please login to continue.