Aug 27, 2002 #1 Ovatvvon Programmer Feb 1, 2001 1,514 US In classic ASP, it was done by using the File System Object. How can I create a folder / directory in ASP.NET? The most I've found so far was somthing having to do with Directory.CreateDirectory, but it's not clear on how to make it work. -Ovatvvon :-Q
In classic ASP, it was done by using the File System Object. How can I create a folder / directory in ASP.NET? The most I've found so far was somthing having to do with Directory.CreateDirectory, but it's not clear on how to make it work. -Ovatvvon :-Q
Aug 27, 2002 1 #2 link9 Programmer Nov 28, 2000 3,387 US The namespace where all your file operations are is: System.IO If you want to create a directory, then: Imports System.IO ~~~~~ Directory.CreateDirectory("c:\myDirectory" Here's a link to the help on your computer for more info on that namespace. You will love this about .NET. File operations are a breeeeeeeeeeze. ms-help://MS.VSCC/MS.MSDNVS/cpref/html/frlrfSystemIO.htm paul Upvote 0 Downvote
The namespace where all your file operations are is: System.IO If you want to create a directory, then: Imports System.IO ~~~~~ Directory.CreateDirectory("c:\myDirectory" Here's a link to the help on your computer for more info on that namespace. You will love this about .NET. File operations are a breeeeeeeeeeze. ms-help://MS.VSCC/MS.MSDNVS/cpref/html/frlrfSystemIO.htm paul
Aug 27, 2002 Thread starter #3 Ovatvvon Programmer Feb 1, 2001 1,514 US Once again, thanks Paul! -Ovatvvon :-Q Upvote 0 Downvote