Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (14 loc) · 232 Bytes

fileinode.markdown

File metadata and controls

20 lines (14 loc) · 232 Bytes

fileinode

{{code:php $inode = fileinode('/path/to/foobar'); print $inode;

//=> 16793883

}}

{{code:ruby stat = File.stat('/path/to/foobar') p stat.ino

#=> 16793883

}}

{{related: filesystem/stat }}