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/directory.rb
2010-05-01 22:10:11 -07:00

47 lines
674 B
Ruby

require 'fog/model'
# require 'fog/local/models/files'
module Fog
module Local
class Directory < Fog::Model
identity :name
def destroy
requires :name
if ::File.directory?(path)
Dir.rmdir(path)
true
else
false
end
end
def files
@files ||= begin
Fog::Local::Files.new(
:directory => self,
:connection => connection
)
end
end
def save
requires :name
Dir.mkdir(path)
true
end
private
def path
connection.path_to(name)
end
end
end
end