Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Is there a way that I can have my Visual Studio C# project create the folders specified in my XML output location (if they don't already exist?) I'm using C# with Visual Studio 2012. When I deploy this project, it won't write the XML files because the path location doesn't exist and it won't create it.
Posted
Comments
Sergey Alexandrovich Kryukov 9-Oct-12 13:31pm    
Is MSDN broken? How about Google or Bing then? They are, too? Too bad... :-)
--SA

1 solution

This is how: http://msdn.microsoft.com/en-us/library/system.io.directory.createdirectory%28v=vs.110%29.aspx[^].

Read carefully: you don't really need to check up if the directory already exists. It will be created or not, but in both cases you will be able to create files in this directory, unless you have an exception related to invalid directory name, insufficient permissions, and the like.

—SA
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900