Returns extension with a dot in a lower case.
| 321 | |
| 322 | // Returns extension with a dot in a lower case. |
| 323 | std::string GetLowercaseFileExt(std::string const & filePath) |
| 324 | { |
| 325 | return strings::MakeLowerCase(base::GetFileExtension(filePath)); |
| 326 | } |
| 327 | |
| 328 | std::string GenerateUniqueFileName(std::string const & path, std::string name, std::string_view ext) |
| 329 | { |
no test coverage detected