PHPverse 2025

Voting

: three minus three?
(Example: nine)

The Note You're Voting On

mbirth at webwriters dot de
17 years ago
To find out whether a file is hardlinked to another filename, check the number of links of the stat() output. If it is >1 there is another filename for that file.

To find out whether two filenames are pointing to the same file, check the inode number of those 2 filenames. If it is equal, the 2 filenames are hardlinked together.

<< Back to user notes page

To Top