how to create new folder in runtime using .net with c#
-
how to create new folder in runtime using .net with c# when i register a user details that time create a folader in my particular directory.if u know the code replay to me.
Hi,Im Razana
-
how to create new folder in runtime using .net with c# when i register a user details that time create a folader in my particular directory.if u know the code replay to me.
Hi,Im Razana
Directory.CreateDirectory()
?All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
how to create new folder in runtime using .net with c# when i register a user details that time create a folader in my particular directory.if u know the code replay to me.
Hi,Im Razana
if (!Directory.Exists("D:\\YourFolderName")) { DirectoryInfo dirIn = Directory.CreateDirectory("D:\\YourFolderName"); }