blob: 6b2ef29d0547ce136b6eec4106351fe8a17fe887 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <IO/Archives/hasRegisteredArchiveFileExtension.h>
namespace DB
{
bool hasRegisteredArchiveFileExtension(const String & path)
{
return path.ends_with(".zip") || path.ends_with(".zipx");
}
}
|