Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you create a new folder in C++? 1

Status
Not open for further replies.

sjn

Programmer
Dec 18, 2000
31
0
0
US
Does anyone have a reference to an example or a sample snippit of code that creates a folder?

Thanks,

Scott.
 
BOOL CreateDirectory(
LPCTSTR
lpPathName,// pointer to directory path
LPSECURITY_ATTRIBUTES lpSecurityAttributes
// pointer to security descriptor
);

 
Great! Thanks so much.

Scott.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top