how to make new folder in c#.net

hello
do you know how to make new folder with writing code in c#.net not by ready objects in toolbars.
thanks

Comments

  • : 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:

    [code]
    Dim di As New DirectoryInfo("C:YourFolder")
    di.Create()
    [/code]

    Hope this helps!
  • : : 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:
    :
    : [code]
    : Dim di As New DirectoryInfo("C:YourFolder")
    : di.Create()
    : [/code]
    :
    : Hope this helps!
    :

    Or in c#:

    using System.IO;

    DirectoryInfo info = Directory.CreateDirectory("c: est");
  • : : : 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:
    : :
    : : [code]
    : : Dim di As New DirectoryInfo("C:YourFolder")
    : : di.Create()
    : : [/code]
    : :
    : : Hope this helps!
    : :
    :
    : Or in c#:
    :
    : using System.IO;
    :
    : DirectoryInfo info = Directory.CreateDirectory("c: est");
    :
    thanks in advance

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories