is_relative

std::filesystem::path::is_absolute,is_relative

bool is_absolute() const;
(1) (since C++17)
bool is_relative() const;
(2) (since C++17)

Checks whether the path is absolute or relative. An absolute path is a path that unambiguously identifies the location of a file without reference to an additional starting location. The first version returns true if the path is absolute, false otherwise; the second version the other way round.

Parameters

(none).

Return value

1) true if the path is absolute, false otherwise.
2) false if the path is absolute, true otherwise.

Exceptions

(none).

Notes

The path "/" is absolute on a POSIX OS, but is relative on Windows.

See also

(C++17)(C++17)
composes an absolute path
converts a path to an absolute path replicating OS-specific behavior
(function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/filesystem/path/is_absrel

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部