gpt4 book ai didi

python - 如何简化 pathlib 对象的使用以使用查找字符串的函数

转载 作者:太空狗 更新时间:2023-10-29 20:18:30 25 4
gpt4 key购买 nike

我很喜欢在 python 中使用 pathlib 进行路径管理,但是使用这个包的缺点是很多命令,比如 shutil.copy, .move,这内置 open 需要一个字符串而不是 PosixPath 对象,给出错误

TypeError: coercing to Unicode: need string or buffer, PosixPath found

逻辑解决方案当然是使用str()

我的问题是,如何修改 pathlib 对象(如果可以),以便像 open(pathlib.PosixPath) 这样的调用在不使用 str( )

最佳答案

@Navith 的回答是你现在应该在 python 3.4 中做什么。然而,PEP-519在 python 3.6 中被提议并被接受以解决这个有效的问题。

This PEP proposes a protocol for classes which represent a file system path to be able to provide a str or bytes representation. Changes to Python's standard library are also proposed to utilize this protocol where appropriate to facilitate the use of path objects where historically only str and/or bytes file system paths are accepted.

所以在 python 3.6 中,你引用的标准库方法 now accept Paths ,您的问题的答案是使用 python 3.6。

关于python - 如何简化 pathlib 对象的使用以使用查找字符串的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30678332/

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