Python os.pathsep 的 Rust 等价物是什么?

问题描述 投票:0回答:1

Python 有:

os.pathsep: 操作系统通常用来分隔搜索路径组件(如 PATH)的字符,例如 POSIX 的“:”或“;”对于 Windows。也可通过

os.path
获取。

Rust 中是否有类似的特定于操作系统的定义?

python path rust environment-variables
1个回答
3
投票

这似乎没有一个常数,但 Rust 确实提供了

std:::env::split_paths
std::env::join_paths

© www.soinside.com 2019 - 2024. All rights reserved.