I use the DeleteFile and CopyFile methods. Do these functions throw exceptions or just set errno and lastError? Do I need to surround this code with try and catch?
I use the DeleteFile and CopyFile methods. Do these functions throw exceptions or just
Share
If you’re referring to the Win32 API functions, the answer is no. No Win32 functions throw, because it is a C API.