New feature requesting for removed file from Azure Storage
imrjat opened this issue · 1 comments
matthewbdaly/laravel-azure-storage package working great while uploading file to Azure Storage but I'm not able to removing file from Azure Storage
Because this project has no functionality for removing file yet:
Is your feature request related to a problem? Please describe.
We are shifting lots of project from AWS to Azure. Now we are facing issue like removing files
Describe the solution you'd like
function remove_file_azure($file){ return Storage::disk('azure')->delete($file); }
Thankyou so much
I don't understand the problem you have here. This package is just a thin wrapper for Flysystem's Azure driver to make it work with Laravel's storage API, and that has the delete()
method you're using above, which will do that.
If the problem is that that doesn't work, then it's unlikely this package is anything to do with that since it doesn't touch that functionality. It's far more likely any issue is in either the Flysystem Azure driver or the PHP SDK it wraps.