SetCurrentDirectory function kernel32

int SetCurrentDirectory(
  1. Pointer<Utf16> lpPathName
)

Changes the current directory for the current process.

BOOL SetCurrentDirectoryW(
  LPCTSTR lpPathName
);

Implementation

int SetCurrentDirectory(Pointer<Utf16> lpPathName) =>
    _SetCurrentDirectory(lpPathName);