Sha256: 9c1932ef92387d6d835a917caa5b6a6c190c2ffead41246fe3cfb84b0e116a4e
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
require 'chef_fs/file_system/base_fs_dir' require 'chef_fs/file_system/rest_list_dir' require 'chef_fs/file_system/not_found_error' require 'chef_fs/path_utils' require 'fileutils' module ChefFS module FileSystem class FileSystemEntry < BaseFSDir def initialize(name, parent, file_path = nil) super(name, parent) @file_path = file_path || "#{parent.file_path}/#{name}" end attr_reader :file_path def path_for_printing ChefFS::PathUtils::relative_to(file_path, File.absolute_path(Dir.pwd)) end def children begin @children ||= Dir.entries(file_path).select { |entry| entry != '.' && entry != '..' }.map { |entry| FileSystemEntry.new(entry, self) } rescue Errno::ENOENT raise ChefFS::FileSystem::NotFoundError.new($!), "#{file_path} not found" end end def create_child(child_name, file_contents=nil) result = FileSystemEntry.new(child_name, self) if file_contents result.write(file_contents) else Dir.mkdir(result.file_path) end result end def dir? File.directory?(file_path) end def delete if dir? FileUtils.rm_rf(file_path) else File.delete(file_path) end end def read begin File.open(file_path, "rb") {|f| f.read} rescue Errno::ENOENT raise ChefFS::FileSystem::NotFoundError.new($!), "#{file_path} not found" end end def write(content) File.open(file_path, 'wb') do |file| file.write(content) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
knife-essentials-0.6.1 | lib/chef_fs/file_system/file_system_entry.rb |
knife-essentials-0.6 | lib/chef_fs/file_system/file_system_entry.rb |