Skip to content

Commit 9e3c1cd

Browse files
committed
fix
1 parent 02db91f commit 9e3c1cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FileSystem/DirHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function deleteFile(string $name): bool {
216216
if (false === $this->exists()) return false;
217217
if (false === $this->hasFile($name)) return false;
218218
$path = $this->toRealPath();
219-
return \unlink($path . $name);
219+
return \unlink($path . "/" . $name);
220220
}
221221

222222
}

0 commit comments

Comments
 (0)