Allow writing an empty file with the new writeStream
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
9ea6573416
commit
665a6d2055
|
@ -167,6 +167,10 @@ class File extends Node implements IFile {
|
||||||
if ($partStorage->instanceOfStorage(Storage\IWriteStreamStorage::class)) {
|
if ($partStorage->instanceOfStorage(Storage\IWriteStreamStorage::class)) {
|
||||||
$count = $partStorage->writeStream($internalPartPath, $data);
|
$count = $partStorage->writeStream($internalPartPath, $data);
|
||||||
$result = $count > 0;
|
$result = $count > 0;
|
||||||
|
if ($result === false) {
|
||||||
|
$result = feof($data);
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$target = $partStorage->fopen($internalPartPath, 'wb');
|
$target = $partStorage->fopen($internalPartPath, 'wb');
|
||||||
if ($target === false) {
|
if ($target === false) {
|
||||||
|
|
Loading…
Reference in New Issue