假设这filesystem::current_path
将返回路径:
/tmp/1567519419.773012
但我想要一个尾随分隔符。如果看起来我应该做的就是:
filesystem::current_path() / filesystem::path()
这适用于 gcc给我:
/tmp/1567519419.773012/
但是在visual-studio上,虽然filesystem::current_path
也给了我没有尾随分隔符的绝对路径,但除以filesystem::path()
没有效果。结果路径仍然是没有尾随分隔符的绝对路径。
我想要跨平台兼容的代码,并且我想避免检测当前路径是否已经有尾随分隔符。
我有什么可用的吗?