Skip to content

Instantly share code, notes, and snippets.

View EranTimothy-dev's full-sized avatar

Eran Timothy Perera EranTimothy-dev

View GitHub Profile
@mkropat
mkropat / knownpaths.py
Last active August 30, 2024 11:39
Python wrapper around the SHGetKnownFolderPath Windows Shell function
import ctypes, sys
from ctypes import windll, wintypes
from uuid import UUID
class GUID(ctypes.Structure): # [1]
_fields_ = [
("Data1", wintypes.DWORD),
("Data2", wintypes.WORD),
("Data3", wintypes.WORD),
("Data4", wintypes.BYTE * 8)