Kingsway to Python: os Module (operating system)
os00.py - os.name, os.environ in development ...
os02.py - os.getenv(var), os.putenv(varname, value) in development ...
os04.py - os.strerror(code) - corresponding message for error code in development ...
os06.py - os.abort(), os.exit(n) in development ...
os08.py - os.getcwd(),os.chdir(path) in development ...
os10.py - os.getpid() - return the current process id in development ...
os12.py - os.startfile(path) start the file with application in development ...
os14.py - os.times() return 5 accumulated times in seconds in development ...
os16.py - os.urandom(n) return a string with n random bytes in development ...
os18.py - os.uname() returns 5-tuple with information about OS in development ...
os20.py - os.mkdir(path) - create a new directory in development ...
os22.py - rmdir(path) - remove the directory in development ...
os24.py - os.remove(path) and os.unlink(path) - remove the file in development ...
os26.py - os.utime(path, None) - get file times in development ...
os28.py - os.listdir(path) - return the list with files and directories names in development ...
os30.py - in development ...
os32.py - in development ...
os34.py - in development ...