Returns the current position in dir. See also Dir#seek.
d = Dir.new("testdir") d.tell #=> 0 d.read #=> "." d.tell #=> 12
Overloads:
Returns:
878 879 880 881 882 883 884 885 886 887
# File 'dir.c', line 878 static VALUE dir_tell(VALUE dir) { struct dir_data *dirp; long pos; GetDIR(dir, dirp); pos = telldir(dirp->dir); return rb_int2inum(pos); }