Class: Fog::Storage::Local::Directories

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/local/models/storage/directories.rb

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/fog/local/models/storage/directories.rb', line 10

def all
  data = if ::File.directory?(service.local_root)
    Dir.entries(service.local_root).select do |entry|
      entry[0...1] != '.' && ::File.directory?(service.path_to(entry))
    end.map do |entry|
      {:key => entry}
    end
  else
    []
  end
  load(data)
end

#get(key, options = {}) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/fog/local/models/storage/directories.rb', line 23

def get(key, options = {})
  if ::File.directory?(service.path_to(key))
    new(:key => key)
  else
    nil
  end
end