gpt4 book ai didi

path - 自定义路径lib.Path()

转载 作者:行者123 更新时间:2023-12-04 04:12:57 26 4
gpt4 key购买 nike

我尝试使用额外的功能自定义 pathlib.Path()。特别是,我真的很喜欢使用上下文管理器作为移入和移出目录的方法。我一直在使用它,但我似乎在让 Path() 与自定义上下文管理器一起工作时遇到错误。有谁知道为什么下面的代码会导致错误,我该如何修复它,而无需在自定义类中重新创建所有 Path()?

# Python 3.7.3; Ubuntu 18.04.1
from pathlib import Path
import os
class mypath(Path):
def __enter__(self):
self.prdir = os.getcwd()
os.chdir(str(self))
def __exit__(self,**error_stuff):
os.chdir(self.prdir)

p = mypath('~').expanduser()
...
AttributeError: type object 'mypath' has no attribute '_flavour'

最佳答案

如果您从派生的具体类而不是 Path 进行子类化,它会起作用。

from pathlib import PosixPath
import os
class mypath(PosixPath):
def __enter__(self):
print('Entering...')
self.prdir = os.getcwd()
os.chdir(str(self))
def __exit__(self, e_type, e_value, e_traceback):
os.chdir(self.prdir)
print('Exiting...')

p = mypath('~').home()
with p:
# print(p.prdir)
print(p)

不幸的是,我不知道为什么会这样。你可能想要更通用。经过一些研究,我发现这个问题比看起来要好得多。这似乎与 Path 的创建方式有关(它选择成为 PosixPathWindowsPath 的方式),在Path 的子类无法复制该行为。

参见凯文的回答 here

也请看看讨论和解释here .

我现在无法阅读。您也可以尝试查看 pathlib 源代码。

关于path - 自定义路径lib.Path(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61399860/

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