1
Answer

C# Public symbols downloading

David Smith

David Smith

13y
1.9k
1
Can someone help me. For some odd reason public symbols keep downloading as soon as I start debugging or when I hit f5.  Can somesone give me a step by step
fix for this. It's not allowing me to debug anything. Its killing me. I have tried googling this all day.
Answers (1)
0
Munesh Sharma

Munesh Sharma

NA 17.1k 2.4m 10y

First of all be sure that you are importing/using (depending on language) the System.IO namespace for this to work. But what you can do is something like this


string pathToCreate = "~/UserFolders/" + TextBox1.Text;

if(Directory.Exists(Server.MapPath(pathToCreate))

{

   //In here, start looping and modify the path to create to add a number

   //until you get the value needed

}

 

//Now you know it is ok, create it

Directory.CreateDirectory(Server.MapPath(pathToCreate));