1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/local/models/storage/directory.rb
2013-01-07 21:01:16 +00:00

57 lines
888 B
Ruby

require 'fog/core/model'
require 'fog/local/models/storage/files'
module Fog
module Storage
class Local
class Directory < Fog::Model
identity :key
def destroy
requires :key
if ::File.directory?(path)
Dir.rmdir(path)
true
else
false
end
end
def files
@files ||= begin
Fog::Storage::Local::Files.new(
:directory => self,
:service => service
)
end
end
def public=(new_public)
new_public
end
def public_url
nil
end
def save
requires :key
FileUtils.mkpath(path)
true
end
private
def path
service.path_to(key)
end
end
end
end
end