First to gitea[
Some checks failed
Build and Deploy on Tag / update-tap (push) Failing after 17s

This commit is contained in:
2026-05-01 08:16:45 -05:00
parent 443984b837
commit 6c8d014bca
6 changed files with 72 additions and 21 deletions

View File

@@ -34,26 +34,13 @@ func New.Tesses.CrossLang.SharedViewFilesystem()
return null;
},
EnumeratePaths = enumeratePaths,
RegularFileExists = (path) => {
Stat = (path) => {
each(var fs : fileSystems)
{
if(fs.RegularFileExists(path)) return true;
const st = fs.Stat(path);
if(TypeIsDictionary(st)) return st;
}
return false;
},
FileExists = (path) => {
each(var fs : fileSystems)
{
if(fs.FileExists(path)) return true;
}
return false;
},
DirectoryExists = (path) => {
each(var fs : fileSystems)
{
if(fs.DirectoryExists(path)) return true;
}
return false;
return null;
},
AddFS = (fs)=>{
fileSystems.Add(fs);