How to create new folder by code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi everyone,

Have been using vb.net for a while but am really stumpped on how to
programatically create a new folder to store some app config data. I know I
must be missing something blatantly obvious but really I am stumpped.

Any pointers or examples would be appreciated.

Thanks
 
RitaK said:
Have been using vb.net for a while but am really stumpped on how to
programatically create a new folder to store some app config data. I know
I
must be missing something blatantly obvious but really I am stumpped.


'MkDir'
'Directory.CreateDirectory'
'DirectoryInfo.Create'
 
Thanks guys, knew it was obvious - a simple case of not seeing the forest for
the trees.

RitaK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top