Visual Studio Code – Does or DID Win32 CopyFile(W) ever raise a (SEH) exception?
The Windows API CopyFile function is rather straightforward: BOOL CopyFileW( [in] LPCWSTR lpExistingFileName, [in] LPCWSTR lpNewFileName, [in] BOOL bFailIfExists ); ... If the function fails, the return value is zero. To get extended error information, call GetLastError. However, I found…