gpt4 book ai didi

linux - 我如何在 python 中获得 unix 中的最大文件系统路径长度?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:50:39 25 4
gpt4 key购买 nike

在我维护的代码中,我遇到了:

from ctypes.wintypes import MAX_PATH

我想将其更改为:

try:
from ctypes.wintypes import MAX_PATH
except ValueError: # raises on linux
MAX_PATH = 4096 # see comments

但我找不到任何方法从 python (os, os.path, sys...) 获取最大文件系统路径的值 - 有标准方法还是我需要外部库?

或者在 linux 中没有类似 MAX_PATH 的东西,至少不是发行版中的标准?


Answer

try:
MAX_PATH = int(subprocess.check_output(['getconf', 'PATH_MAX', '/']))
except (ValueError, subprocess.CalledProcessError, OSError):
deprint('calling getconf failed - error:', traceback=True)
MAX_PATH = 4096

最佳答案

正确的方法是将os.pathconfos.fpathconfPC_一起使用前缀名称:

>>> os.pathconf('/', 'PC_PATH_MAX')
4096
>>> os.pathconf('/', 'PC_NAME_MAX')
255

请注意,路径组件 的最大长度可能因目录而异,因为它取决于文件系统,因此您可能有 os.pathconf('/', 'PC_NAME_MAX' ) 为 255,os.pathconf('/', 'PC_NAME_MAX') 为 12,比方说。

关于linux - 我如何在 python 中获得 unix 中的最大文件系统路径长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32807560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com