temporary file using msft api in cpp

Solutions on MaxInterview for temporary file using msft api in cpp by the best coders in the world

showing results for - "temporary file using msft api in cpp"
Imran
11 Jan 2019
1using namespace System::Security;using namespace System::IO; ... String tempFolder;try {  tempFolder = Path::GetTempPath();}catch(SecurityException* ex){  // probably means that you don't have the required permissions}catch(Exception* ex){  // handle all other exceptions}