Class: CarrierWave::Storage::File
- Defined in:
- lib/carrierwave/storage/file.rb
Overview
File storage stores file to the Filesystem (surprising, no?). There’s really not much to it, it uses the store_dir defined on the uploader as the storage location. That’s pretty much it.
Instance Attribute Summary
Attributes inherited from Abstract
Instance Method Summary collapse
-
#retrieve!(identifier) ⇒ Object
Retrieve the file from its store path.
-
#store!(file) ⇒ Object
Move the file to the uploader’s store path.
Methods inherited from Abstract
Constructor Details
This class inherits a constructor from CarrierWave::Storage::Abstract
Instance Method Details
#retrieve!(identifier) ⇒ Object
Retrieve the file from its store path
Parameters
- identifier (String)
-
the filename of the file
Returns
- CarrierWave::SanitizedFile
-
a sanitized file
41 42 43 44 |
# File 'lib/carrierwave/storage/file.rb', line 41 def retrieve!(identifier) path = ::File.(uploader.store_path(identifier), uploader.root) CarrierWave::SanitizedFile.new(path) end |
#store!(file) ⇒ Object
Move the file to the uploader’s store path.
Parameters
- file (CarrierWave::SanitizedFile)
-
the file to store
Returns
- CarrierWave::SanitizedFile
-
a sanitized file
24 25 26 27 28 |
# File 'lib/carrierwave/storage/file.rb', line 24 def store!(file) path = ::File.(uploader.store_path, uploader.root) file.move_to(path, uploader.) file end |