: : : hello
: : : do you know how to make new folder with writing code in c#.net not by ready objects in toolbars.
: : : thanks
: : :
: :
: : Hi,
: :
: : Try using DirectoryInfo class.
: : Something like this:
: :
: :
: : Dim di As New DirectoryInfo("C:\YourFolder")
: : di.Create()
: :
: :
: : Hope this helps!
: :
:
: Or in c#:
:
: using System.IO;
:
: DirectoryInfo info = Directory.CreateDirectory("c:\test");
:
thanks in advance