stat.nlink â fixnum
Instance Public methods
Returns the number of hard links to stat.
1 2 3 | File .stat( "testfile" ).nlink #=> 1 File .link( "testfile" , "testfile.bak" ) #=> 0 File .stat( "testfile" ).nlink #=> 2 |
Please login to continue.