Windows 當前路徑API[備註有Linux C的函數]
SetCurrentDirectory function:
BOOL WINAPI SetCurrentDirectory(_In_ LPCTSTR lpPathName);
GetCurrentDirectory function
DWORD WINAPI GetCurrentDirectory(_In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer);
ps Linux C:(chdir 和 getcwd)