ignore meta files

This commit is contained in:
ghost 2024-02-02 10:25:15 +02:00
parent 19d713e217
commit 6a1f69296b

View File

@ -161,7 +161,7 @@ class Filesystem
{
foreach ((array) scandir($path) as $file)
{
if (in_array($file, ['.', '..']))
if (in_array($file, ['.', '..']) || str_starts_with($file, '__'))
{
continue;
}