42 lines
772 B
Python
42 lines
772 B
Python
"""
|
|
Auto-generated Python stub file from os.__init__.py
|
|
Module: os.__init__
|
|
"""
|
|
|
|
|
|
import t, c
|
|
from stdint import *
|
|
import platmacro
|
|
import memhub
|
|
import os.path
|
|
import os._win32
|
|
import os._posix
|
|
|
|
_mbuddy: t.CExtern | memhub.MemBuddy | t.CPtr
|
|
|
|
def exists(path: str) -> bool: pass
|
|
|
|
def isdir(path: str) -> bool: pass
|
|
|
|
def isfile(path: str) -> bool: pass
|
|
|
|
def getsize(path: str) -> t.CInt64T: pass
|
|
|
|
def getcwd() -> str: pass
|
|
|
|
def chdir(path: str) -> int: pass
|
|
|
|
def mkdir(path: str) -> int: pass
|
|
|
|
def remove(path: str) -> int: pass
|
|
|
|
def rmdir(path: str) -> int: pass
|
|
|
|
def rename(old_path: str, new_path: str) -> int: pass
|
|
|
|
def chmod(path: str, mode: int) -> int: pass
|
|
|
|
def listdir(path: str, out_names: str, max_count: ULONG) -> ULONG: pass
|
|
|
|
def system(cmd: str) -> int: pass
|