OS
O módulo os fornece funções específicas do Sistema Operacional:
- acesso a arquivos de baixo nível
- sinais
- temporizadores
- I/O assíncrono
Os métodos do OS geralmente retornam 0 se estiver tudo OK ou um código de erro negativo específico do OS.
Propriedades
- os.platform: Retorna uma string representando a plataforma: "linux", "darwin", "win32", "ps2" ou "js".
Métodos
open
Open a file. Return a handle or < 0 if error.
let fd = os.open(filename, flags, mode = 0o666)
Flags
- os.O_RDONLY
- os.O_WRONLY
- os.O_RDWR
- os.O_APPEND
- os.O_CREAT
- os.O_EXCL
- os.O_TRUNC
POSIX open flags.
close
Close the file handle fd.
os.close(fd);
seek
Seek in the file. Use std.SEEK_* for whence. offset is either a number or a bigint. If offset is a bigint, a bigint is returned too.
os.seek(fd, offset, whence);
read
Read length bytes from the file handle fd to the ArrayBuffer buffer at byte position offset. Return the number of read bytes or < 0 if error.
os.read(fd, buffer, offset, length);
write
Write length bytes to the file handle fd from the ArrayBuffer buffer at byte position offset. Return the number of written bytes or < 0 if error.
os.write(fd, buffer, offset, length);
remove
Remove a file. Return 0 if OK or -errno.
os.remove(filename);
rename
Rename a file. Return 0 if OK or -errno.
os.rename(oldname, newname);
realpath
Return [str, err] where str is the canonicalized absolute pathname of path and err the error code.
os.realpath(path);
getcwd
Return [str, err] where str is the current working directory and err the error code.
os.getcwd();
chdir
Change the current directory. Return 0 if OK or -errno.
os.chdir(path);
mkdir
Create a directory at path. Return 0 if OK or -errno.
os.mkdir(path, mode = 0o777);
stat
Return [obj, err] where obj is an object containing the file status of path. err is the error code.
The following fields are defined in obj: dev, ino, mode, nlink, uid, gid, rdev, size, blocks, atime, mtime, ctime.
The times are specified in milliseconds since 1970.
os.stat(path);