Method: ActiveStorage::Service::DiskService#delete_prefixed
- Defined in:
- activestorage/lib/active_storage/service/disk_service.rb
#delete_prefixed(prefix) ⇒ Object
61 62 63 64 65 66 67 |
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 61 def delete_prefixed(prefix) instrument :delete_prefixed, prefix: prefix do Dir.glob(path_for("#{prefix}*")).each do |path| FileUtils.rm_rf(path) end end end |