Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. create a new folder???

create a new folder???

Scheduled Pinned Locked Moved C#
questioncsharpjson
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    students552 university
    wrote on last edited by
    #1

    hi, what is the API or classes in c# which used to create a new folder ??? Thanks

    K L 2 Replies Last reply
    0
    • S students552 university

      hi, what is the API or classes in c# which used to create a new folder ??? Thanks

      K Offline
      K Offline
      Kodanda Pani
      wrote on last edited by
      #2

      Hi best_students, We can use Directory class which is avaliabe in System.IO namespace for creating new folder. This class provide static methods for doing this. string path =@"C:\Training\Test"; if(Directory.Exists(path)) { } else { DirectoryInfo drinfo = Directory.CreateDirectory(path); } Guess this will help you. Thanks SGS

      1 Reply Last reply
      0
      • S students552 university

        hi, what is the API or classes in c# which used to create a new folder ??? Thanks

        L Offline
        L Offline
        Luis Alonso Ramos
        wrote on last edited by
        #3

        Try System.IO.DirectoryInfo.Create[^]. [EDIT: Also try Directory.CreateDirectory[^]. -- LuisR


        Luis Alonso Ramos Intelectix - Chihuahua, Mexico Not much here: My CP Blog!

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups