Method: Chef::ReservedNames::Win32::File::Info#ino
- Defined in:
- lib/chef/win32/file/info.rb
#ino ⇒ Object
we’re faking it here, but this is in the spirit of ino in *nix
from MSDN:
“The identifier (low and high parts) and the volume serial number uniquely identify a file on a single computer. To determine whether two open handles represent the same file, combine the identifier and the volume serial number for each file and compare them.”“
84 85 86 |
# File 'lib/chef/win32/file/info.rb', line 84 def ino volume_serial_number + index end |