Currently im using the C++ Library "stdio.h". I am expecting it to delete the folder form my desktop. I am using this code:
// Deletes the folder test
remove("C:/Users/iYahoo/Desktop/test");
I am using Visual Studio 2019 with the latest C++ installation. I’ve also installed this redistribute: https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170
>Solution :
I think you might be referring to this function.
You are currently on Windows, so consider to use the WindowsAPI call.