我正在运行 CentOS Linux。

我使用专有文件系统创建如下目录:

$ mkdir fooDir

首先,我使用“ls -ldi”检查 inode 值:
$ ls -ldi
total 4
9223372036854783200 drwxrwxrwx 2 root root 4096 Jan  6 20:58 fooDir

然后,我确认'stat'正在报告相同的inode:
$ stat /fooDir
  File: `/fooDir'
  Size: 4096        Blocks: 8          IO Block: 4096   directory
Device: 14h/20d Inode: 9223372036854783200  Links: 2
Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2016-01-06 20:58:13.000000000 +0000
Modify: 2016-01-06 20:58:13.000000000 +0000
Change: 2016-01-06 20:58:23.000000000 +0000

但随后我切换到在 python 的交互式提示中运行并针对目录运行 om.stat:
$ python
Python 2.6.6 (r266:84292, Jun 18 2012, 14:18:47)
[GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.stat("/fooDir")
posix.stat_result(st_mode=16895, st_ino=-9223372036854768416, st_dev=20L, st_nlink=2, st_uid=0, st_gid=0, st_size=4096, st_atime=1452113893, st_mtime=1452113893, st_ctime=1452113903)
>>>

Python 的 om.stat 返回的 inode 值与 stat 命令报告的值不匹配。

文件系统已将 9223372036854783200 的 inode 值分配给目录“fooDir”,但是 Python 的 om.stat 返回“-9223372036854768416”。

我可以处理它把它当作一个有符号的值,因此是负号,但我很困惑为什么它是一个完全不同的值。

关于这里发生的事情的任何想法?为什么 Python 的 os stat 返回错误的 inode 值? (或根据 'stat' 命令错误)

最佳答案

我想出 inode 编号的目的是
无符号长整型,但 om.stat 正在解释
为负数,因为设置了 MSB。
所以现在我知道它应该是一个未签名的,
我可以按如下方式解决这个问题:

import ctypes
ctypes.c_ulong(os.stat(<dir here>).st_ino).value

一个更简单的解决方案,没有其他依赖:
if inode < 0 :
    inode += 1 << 64

关于Python 的 os stat 返回错误的 inode 值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34643289/

10-15 16:25