module VirtFS::CamcorderFS::FS::FileClassMethods
Public Instance Methods
file_atime(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 8 def file_atime(p) ccd_call(__method__, apply_root(p)) end
file_blockdev?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 12 def file_blockdev?(p) ccd_call(__method__, apply_root(p)) end
file_chardev?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 16 def file_chardev?(p) ccd_call(__method__, apply_root(p)) end
file_chmod(permission, p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 20 def file_chmod(permission, p) ccd_call(__method__, permission, apply_root(p)) end
file_chown(owner, group, p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 24 def file_chown(owner, group, p) ccd_call(__method__, owner, group, apply_root(p)) end
file_ctime(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 28 def file_ctime(p) ccd_call(__method__, apply_root(p)) end
file_delete(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 32 def file_delete(p) ccd_call(__method__, apply_root(p)) end
file_directory?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 36 def file_directory?(p) ccd_call(__method__, apply_root(p)) end
file_executable?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 40 def file_executable?(p) ccd_call(__method__, apply_root(p)) end
file_executable_real?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 44 def file_executable_real?(p) ccd_call(__method__, apply_root(p)) end
file_exist?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 48 def file_exist?(p) ccd_call(__method__, apply_root(p)) end
file_file?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 52 def file_file?(p) ccd_call(__method__, apply_root(p)) end
file_ftype(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 56 def file_ftype(p) ccd_call(__method__, apply_root(p)) end
file_grpowned?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 60 def file_grpowned?(p) ccd_call(__method__, apply_root(p)) end
file_identical?(p1, p2)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 64 def file_identical?(p1, p2) ccd_call(__method__, apply_root(p1), apply_root(p2)) end
file_lchmod(permission, p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 68 def file_lchmod(permission, p) ccd_call(__method__, permission, apply_root(p)) end
file_lchown(owner, group, p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 72 def file_lchown(owner, group, p) ccd_call(__method__, owner, group, apply_root(p)) end
file_link(p1, p2)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 76 def file_link(p1, p2) ccd_call(__method__, apply_root(p1), apply_root(p2)) end
file_lstat(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 80 def file_lstat(p) ccd_call(__method__, apply_root(p)) end
file_mtime(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 84 def file_mtime(p) ccd_call(__method__, apply_root(p)) end
file_new(fs_rel_path, parsed_args, open_path, cwd)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 173 def file_new(fs_rel_path, parsed_args, open_path, cwd) instance_handle = ccd_call(__method__, apply_root(fs_rel_path), parsed_args, open_path, cwd) VirtFS::CamcorderFS::File.new(self, instance_handle, parsed_args) end
file_owned?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 88 def file_owned?(p) ccd_call(__method__, apply_root(p)) end
file_pipe?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 92 def file_pipe?(p) ccd_call(__method__, apply_root(p)) end
file_readable?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 96 def file_readable?(p) ccd_call(__method__, apply_root(p)) end
file_readable_real?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 100 def file_readable_real?(p) ccd_call(__method__, apply_root(p)) end
file_readlink(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 104 def file_readlink(p) ccd_call(__method__, apply_root(p)) end
file_rename(p1, p2)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 108 def file_rename(p1, p2) ccd_call(__method__, apply_root(p1), apply_root(p2)) end
file_setgid?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 112 def file_setgid?(p) ccd_call(__method__, apply_root(p)) end
file_setuid?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 116 def file_setuid?(p) ccd_call(__method__, apply_root(p)) end
file_size(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 120 def file_size(p) ccd_call(__method__, apply_root(p)) end
file_socket?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 124 def file_socket?(p) ccd_call(__method__, apply_root(p)) end
file_stat(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 128 def file_stat(p) ccd_call(__method__, apply_root(p)) end
file_sticky?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 132 def file_sticky?(p) ccd_call(__method__, apply_root(p)) end
file_symlink(oname, p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 136 def file_symlink(oname, p) # # We don't apply_root to oname, because it's either an # absolute path in the global FS namespace, or a path # relative to the location of the new link. # ccd_call(__method__, oname, apply_root(p)) end
file_symlink?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 145 def file_symlink?(p) ccd_call(__method__, apply_root(p)) end
file_truncate(p, len)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 149 def file_truncate(p, len) ccd_call(__method__, apply_root(p), len) end
file_utime(atime, mtime, p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 153 def file_utime(atime, mtime, p) ccd_call(__method__, atime, mtime, apply_root(p)) end
file_world_readable?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 157 def file_world_readable?(p) ccd_call(__method__, apply_root(p)) end
file_world_writable?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 161 def file_world_writable?(p) ccd_call(__method__, apply_root(p)) end
file_writable?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 165 def file_writable?(p) ccd_call(__method__, apply_root(p)) end
file_writable_real?(p)
click to toggle source
# File lib/virtfs/camcorderfs/fs/file_class_methods.rb, line 169 def file_writable_real?(p) ccd_call(__method__, apply_root(p)) end