Stow: check if file is folder, todo

This commit is contained in:
Tim 2025-03-18 13:40:08 +01:00
parent 005c60362b
commit e9336903d1

View File

@ -61,6 +61,10 @@ foreach ($files as $file) {
line("File $targetFile is already stowed from $stowFile");
continue;
}
if(is_dir($targetFile)) {
line("File $targetFile is a folder, todo: recurse through existing folders");
continue;
}
if (is_file($targetFile)) {
if ($backup) {
$backFile = $targetFile . '.bak';