flysystem-google-drive-ext
flysystem-google-drive-ext copied to clipboard
Moving folders will fall into the trash
Hello everyone,
If I want to move a folder to a folder, the folder gets deleted to the trash:
Route::get('/move', function () {
$directoryName = 'TEST';
$directoryNameTo = 'TEST2';
Storage::cloud()->makeDirectory($directoryName);
Storage::cloud()->makeDirectory($directoryNameTo);
Storage::cloud()->move($directoryName, $directoryNameTo);
return 'Directory was renamed in Google Drive';
});
Anyone have a similar problem?
laravel-google-drive-ext-demo/routes/web.php#L142-L149
I always tried that demo and it worked correctly, I don't think anything has changed
Feel free to make a PR with the fix
Hi, could you test #127