In the Outlook object model, you would use the Folders.Add method to create the new folder, then the Add method on that new folder's Items collection to create each new item. Once you have a new item, you would read the data from the .csv file, then set each contact property, and finally save the item. See http://www.outlookcode.com/d/customimport.htm

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> I have been writing a vbscript file that queries the LDAP then
> creates a .csv file with all the contact information of users in my
[quoted text clipped - 3 lines]
> to automatically create a contacts folder and import a .csv iinto the
> contacts folder with vbscript? Thanks