Does Windows have Inode Numbers like Linux?

后端 未结 7 1480
挽巷
挽巷 2020-12-02 19:38

Does Windows have Inode Numbers like Linux? How does Windows internally manage files?

相关标签:
7条回答
  • 2020-12-02 20:38

    Yes. NTFS uses a B-Tree indexing system. Every file in the MFT has a 64 bit File Index Number. This number, called the File ID, uniquely identifies the file ONLY WITHIN ITS VOLUME. I.e., two files on two separate volumes on the same PC may have the same File ID. See this MSDN article for more details.

    https://msdn.microsoft.com/en-us/library/windows/desktop/aa363788(v=vs.85).aspx

    regarding your second question, "how does windows internally manage files", see this technet article:

    https://technet.microsoft.com/en-us/library/cc781134(v=ws.10).aspx

    0 讨论(0)
提交回复
热议问题