Module: RIO::FS::File

Included in:
Native, ZipFile::InFile::FS
Defined in:
lib/rio/fs/impl.rb

Instance Method Summary collapse

Instance Method Details

#atime(s, *args) ⇒ Object



56
# File 'lib/rio/fs/impl.rb', line 56

def atime(s,*args) @file.atime(s,*args) end

#chmod(mod, s) ⇒ Object



60
# File 'lib/rio/fs/impl.rb', line 60

def chmod(mod,s) @file.chmod(mod,s.to_s) end

#chown(owner_int, group_int, s) ⇒ Object



61
# File 'lib/rio/fs/impl.rb', line 61

def chown(owner_int,group_int,s) @file.chown(owner_int,group_int,s.to_s) end

#ctime(s, *args) ⇒ Object



57
# File 'lib/rio/fs/impl.rb', line 57

def ctime(s,*args) @file.ctime(s,*args) end

#expand_path(s, *args) ⇒ Object



48
# File 'lib/rio/fs/impl.rb', line 48

def expand_path(s,*args) @file.expand_path(s,*args) end

#ftype(s, *args) ⇒ Object



51
# File 'lib/rio/fs/impl.rb', line 51

def ftype(s,*args) @file.ftype(s,*args) end

#lstat(s, *args) ⇒ Object



64
# File 'lib/rio/fs/impl.rb', line 64

def lstat(s,*args) @file.lstat(s,*args) end

#mtime(s, *args) ⇒ Object



58
# File 'lib/rio/fs/impl.rb', line 58

def mtime(s,*args) @file.mtime(s,*args) end


63
# File 'lib/rio/fs/impl.rb', line 63

def readlink(s,*args) @file.readlink(s,*args) end

#stat(s, *args) ⇒ Object



54
# File 'lib/rio/fs/impl.rb', line 54

def stat(s,*args) @file.stat(s,*args) end


52
# File 'lib/rio/fs/impl.rb', line 52

def symlink(s,d) @file.symlink(s.to_s,d.to_s) end

#truncate(s, integer) ⇒ Object



66
# File 'lib/rio/fs/impl.rb', line 66

def truncate(s,integer) @file.truncate(s,integer) end