命名空间
变体
操作

std::filesystem::path::string, std::filesystem::path::wstring, std::filesystem::path::u8string, std::filesystem::path::u16string, std::filesystem::path::u32string

来自 cppreference.com
< cpp‎ | filesystem‎ | path
 
 
 
 
template< class CharT, class Traits = std::char_traits<CharT>,

          class Alloc = std::allocator<CharT> >
std::basic_string<CharT,Traits,Alloc>

    string( const Alloc& a = Alloc() ) const;
(1) (自 C++17 起)
(2) (自 C++17 起)
std::string string() const;
std::wstring wstring() const;
std::u16string u16string() const;
std::u32string u32string() const;
(3)
std::string u8string() const;
(自 C++17 起)
(直到 C++20)
std::u8string u8string() const;
(自 C++20 起)

返回内部路径名,使用本机路径名格式,并转换为指定的字符串类型。如果需要,转换将按如下方式执行

  • 如果 path::value_typechar,转换(如果有)将取决于系统。这在典型的 POSIX 系统(如 Linux)上是这种情况,其中本机编码为 UTF-8,并且 string() 不执行任何转换。
  • 否则,如果 path::value_typewchar_t,转换(如果有)是未指定的。这在 Windows 上是这种情况,其中 wchar_t 为 16 位,并且本机编码为 UTF-16。
  • 否则,如果 path::value_typechar16_t,则本机编码为 UTF-16,转换方法是未指定的。
  • 否则,如果 path::value_typechar32_t,则本机编码为 UTF-32,转换方法是未指定的。
  • 否则,如果 path::value_typechar8_t,则本机编码为 UTF-8,转换方法是未指定的。
1) 所有内存分配均由 a 执行。
3)u8string() 情况下,结果编码始终为 UTF-8。

内容

[编辑] 参数

(无)

[编辑] 返回值

内部路径名,使用本机路径名格式,并转换为指定的字符串类型。

[编辑] 异常

可能会抛出实现定义的异常。

[编辑] 示例

#include <clocale>
#include <cstdio>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <locale>
 
int main()
{
    const char* const localeName = "ja_JP.utf-8";
    std::setlocale(LC_ALL, localeName);
    std::locale::global(std::locale(localeName));
 
    const std::filesystem::path p(u8"要らない.txt");
    std::ofstream(p) << "File contents";
 
    // native string representation can be used with OS APIs
    if (std::FILE* const f = std::fopen(p.string().c_str(), "r"))
    {
        for (int ch; (ch = std::fgetc(f)) != EOF;)
            std::putchar(ch);
 
        std::fclose(f);
    }
 
    // multibyte and wide representation can be used for output
    std::cout << "\nFile name in narrow multibyte encoding: " << p.string() << '\n';
 
    // wstring() will throw in stdlibc++ (as per gcc-12.1.0), see:
    // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95048
    // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102839
    // works with more recent gcc-12.2.1 (2023/02/01) and clang-10+
    std::wcout << "File name in wide encoding: " << p.wstring() << '\n';
 
    std::filesystem::remove(p);
}

可能的输出

File contents
File name in narrow multibyte encoding: 要らない.txt
File name in wide encoding: 要らない.txt

[编辑] 另请参阅

返回以通用路径名格式转换为字符串的路径
(公共成员函数) [编辑]