Module: RIO::FS::File
- Included in:
- Native, ZipFile::InFile::FS
- Defined in:
- lib/rio/fs/impl.rb
Instance Method Summary collapse
- #atime(s, *args) ⇒ Object
- #chmod(mod, s) ⇒ Object
- #chown(owner_int, group_int, s) ⇒ Object
- #ctime(s, *args) ⇒ Object
- #expand_path(s, *args) ⇒ Object
- #ftype(s, *args) ⇒ Object
- #lstat(s, *args) ⇒ Object
- #mtime(s, *args) ⇒ Object
- #readlink(s, *args) ⇒ Object
- #stat(s, *args) ⇒ Object
- #symlink(s, d) ⇒ Object
- #truncate(s, integer) ⇒ Object
Instance Method Details
#atime(s, *args) ⇒ Object
45 |
# File 'lib/rio/fs/impl.rb', line 45 def atime(s,*args) @file.atime(s,*args) end |
#chmod(mod, s) ⇒ Object
49 |
# File 'lib/rio/fs/impl.rb', line 49 def chmod(mod,s) @file.chmod(mod,s.to_s) end |
#chown(owner_int, group_int, s) ⇒ Object
50 |
# File 'lib/rio/fs/impl.rb', line 50 def chown(owner_int,group_int,s) @file.chown(owner_int,group_int,s.to_s) end |
#ctime(s, *args) ⇒ Object
46 |
# File 'lib/rio/fs/impl.rb', line 46 def ctime(s,*args) @file.ctime(s,*args) end |
#expand_path(s, *args) ⇒ Object
37 |
# File 'lib/rio/fs/impl.rb', line 37 def (s,*args) @file.(s,*args) end |
#ftype(s, *args) ⇒ Object
40 |
# File 'lib/rio/fs/impl.rb', line 40 def ftype(s,*args) @file.ftype(s,*args) end |
#lstat(s, *args) ⇒ Object
53 |
# File 'lib/rio/fs/impl.rb', line 53 def lstat(s,*args) @file.lstat(s,*args) end |
#mtime(s, *args) ⇒ Object
47 |
# File 'lib/rio/fs/impl.rb', line 47 def mtime(s,*args) @file.mtime(s,*args) end |
#readlink(s, *args) ⇒ Object
52 |
# File 'lib/rio/fs/impl.rb', line 52 def readlink(s,*args) @file.readlink(s,*args) end |
#stat(s, *args) ⇒ Object
43 |
# File 'lib/rio/fs/impl.rb', line 43 def stat(s,*args) @file.stat(s,*args) end |
#symlink(s, d) ⇒ Object
41 |
# File 'lib/rio/fs/impl.rb', line 41 def symlink(s,d) @file.symlink(s.to_s,d.to_s) end |
#truncate(s, integer) ⇒ Object
55 |
# File 'lib/rio/fs/impl.rb', line 55 def truncate(s,integer) @file.truncate(s,integer) end |