mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
47 lines
674 B
Ruby
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
|