Today's Question:  What does your personal desk look like?        GIVE A SHOUT

SEARCH KEYWORD -- CreateDirectory



  Make a directory using C++ for windows

If you want to create a folder at windows using c++/cpp language, there is an easy way for make a folder. You can do it just including the <windows.h> header file. To make a folder at C:\ drive named "deadman"#include<windows.h>int main(){   CreateDirectory ("C:\\deadman", NULL);   return 0;}If you want to delete a fodler from the C:\ directory.#include<windows.h>int main(){   RemoveDirectory("C:\\deadman");   retur...

   C++,Directory,Windows,CreateDirectory,Example     2012-02-25 04:26:16