I want to write a code who are creating a folder on the desktop in Windows XP, how to do that?
This is a discussion on How to create a folder within the C++ Programming forums, part of the General Programming Boards category; I want to write a code who are creating a folder on the desktop in Windows XP, how to do ...
I want to write a code who are creating a folder on the desktop in Windows XP, how to do that?
First, read this thread for code on how to get the directory which represents your desktop.
Then use CreateDirectory() or _mkdir() to create a new directory within the desktop directory.
gg