Is there any way similar to GetTempFileName() Win32 API to create a
temporary directory/folder. I have to unzip files from a zip files in
a unique folder inside windows temp folder.
Regards,
Manish Agarwal
Well you can get the path to the temp folder (GetTempPath) and create
a folder in there.
As to its uniqueness, you can use a timestamp (e.g. the current date
and time 20110204150235) or a UUID. Anyway, if it's a temporary
folder, anything you come up with will be ok, provided that name
doesn't exist already. But you can check that.