instance method
delete_prefixed
Ruby on Rails 7.0.10
Since v5.2.8.1Signature
delete_prefixed(prefix)
No documentation comment.
Parameters
-
prefixreq
Source
# 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
Defined in activestorage/lib/active_storage/service/disk_service.rb line 59
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::Service::DiskService