std::wstring GetRecommandName()
{
auto start = system_clock::now();
return fmt::format(L"{}_{:%Y-%m-%d_%H_%M_%S}", L"MyPipe", start);
}
fmtlib格式化时间
最新推荐文章于 2025-08-05 20:04:56 发布
std::wstring GetRecommandName()
{
auto start = system_clock::now();
return fmt::format(L"{}_{:%Y-%m-%d_%H_%M_%S}", L"MyPipe", start);
}