fscache: removePrefix(): use starts_with()

This commit is contained in:
Albert S. 2021-10-19 15:07:10 +02:00
부모 873401694e
커밋 b41a5f4e5b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

2
cache/fscache.cpp vendored
파일 보기

@ -46,7 +46,7 @@ void FsCache::removePrefix(std::string_view prefix)
// TODO: lock dir
for(auto &entry : std::filesystem::directory_iterator(std::filesystem::path{this->path}))
{
if(static_cast<std::string>(entry.path().filename()).find(prefix) == 0)
if(std::string_view(entry.path().filename().c_str()).starts_with(prefix) == 0)
{
std::filesystem::remove_all(entry);
}