GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::filesystem::path::has_root_path,std::filesystem::path::has_root_name,(3) C++ Standard Libary std::filesystem::path::has_root_path,std::filesystem::path::has_root_name,(3)

std::filesystem::path::has_root_path,std::filesystem::path::has_root_name, - std::filesystem::path::has_root_path,std::filesystem::path::has_root_name,


std::filesystem::path::has_parent_path, std::filesystem::path::has_filename,
std::filesystem::path::has_stem, std::filesystem::path::has_extension


bool has_root_path() const; (1) (since C++17)
bool has_root_name() const; (2) (since C++17)
bool has_root_directory() const; (3) (since C++17)
bool has_relative_path() const; (4) (since C++17)
bool has_parent_path() const; (5) (since C++17)
bool has_filename() const; (6) (since C++17)
bool has_stem() const; (7) (since C++17)
bool has_extension() const; (8) (since C++17)


Checks whether the path contains the corresponding path element.


1) Checks whether root_path() is empty.
2) Checks whether root_name() is empty.
3) Checks whether root_directory() is empty.
4) Checks whether relative_path() is empty.
5) Checks whether parent_path() is empty.
6) Checks whether filename() is empty.
7) Checks whether stem() is empty.
8) Checks whether extension() is empty.


(none)


true if the corresponding path component is not empty, false otherwise.


May throw implementation-defined exceptions.


This section is incomplete
Reason: no example


empty checks if the path is empty
(public member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.