method
delete_prefixed
v6.1.7.7 -
Show latest stable
- Class:
ActiveStorage::Service::DiskService
delete_prefixed(prefix)public
No documentation available.
# File activestorage/lib/active_storage/service/disk_service.rb, line 59
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