method
delete_prefixed
v7.2.3 -
Show latest stable
- Class:
ActiveStorage::Service::DiskService
delete_prefixed(prefix)public
No documentation available.
# 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