fileapi¶
Bindings for the Win32 File API.
- class gonto.win32.fileapi.CREATION_DISPOSITION(*values)¶
An action to take on a file or device that exists or does not exist.
See: https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew
- CREATE_ALWAYS = 2¶
- CREATE_NEW = 1¶
- OPEN_ALWAYS = 4¶
- OPEN_EXISTING = 3¶
- TRUNCATE_EXISTING = 5¶
- gonto.win32.fileapi.lib = None¶
Binding of fileapi functions of
kernel32.dll. See source code for a list of bound functions.