芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/livewire/livewire/src/Commands/S3CleanupCommand.php
error("Configuration ['livewire.temporary_file_upload.disk'] is not set to a disk with an S3 driver."); return; } $adapter = FileUploadConfiguration::storage()->getDriver()->getAdapter(); $adapter->getClient()->putBucketLifecycleConfiguration([ 'Bucket' => $adapter->getBucket(), 'LifecycleConfiguration' => [ 'Rules' => [ [ 'Prefix' => $prefix = FileUploadConfiguration::path(), 'Expiration' => [ 'Days' => 1, ], 'Status' => 'Enabled', ], ], ], ]); $this->info('Livewire temporary S3 upload directory ['.$prefix.'] set to automatically cleanup files older than 24hrs!'); } }