Lichen

Change of lib/posix/filesys.py

6:f551873980e5
lib/posix/filesys.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lib/posix/filesys.py	Tue Aug 30 21:55:58 2016 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +def access(path, mode): pass
     1.7 +def chdir(path): pass
     1.8 +def chmod(path, mode): pass
     1.9 +def chown(path, uid, gid): pass
    1.10 +def lchown(path, uid, gid): pass
    1.11 +def link(src, dst): pass
    1.12 +def listdir(path): pass
    1.13 +def lstat(path): pass
    1.14 +def major(device): pass
    1.15 +def makedev(major, minor): pass
    1.16 +def minor(device): pass
    1.17 +def mkdir(path, mode=0777): pass
    1.18 +def mkfifo(filename, mode=0666): pass
    1.19 +def mknod(filename, mode=0600, device=None): pass
    1.20 +def read(fd, buffersize): pass
    1.21 +def readlink(path): pass
    1.22 +def remove(path): pass
    1.23 +def rename(old, new): pass
    1.24 +def rmdir(path): pass
    1.25 +def symlink(src, dst): pass
    1.26 +def unlink(path): pass
    1.27 +def utime(path, (atime, mtime)): pass
    1.28 +
    1.29 +F_OK = 0
    1.30 +R_OK = 4
    1.31 +W_OK = 2
    1.32 +X_OK = 1
    1.33 +
    1.34 +# vim: tabstop=4 expandtab shiftwidth=4