Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Click here to start participating now! Also, check out the New User Guide.
Making folder in VBS
Name: netcreator.dk Date: November 29, 2004 at 02:46:47 Pacific OS: Windows XP SP2 CPU/Ram: 3,4 P4
Comment:
Hello there
I want to make a script that makes a new folder, by asking the user what to call the folder. And then it should automaticly create 4 subfolders in this folder.
Name: abc123456789 Date: November 29, 2004 at 16:03:12 Pacific
Reply:
dim filesys, folder, path path = "c:\folder" set filesys=CreateObject("Scripting.FileSystemObject") If Not filesys.FolderExists(path) Then Set folder = filesys.CreateFolder(path) End If
0
Response Number 2
Name: abc123456789 Date: November 29, 2004 at 16:04:11 Pacific
Reply:
Here is the code to create one folder:
dim filesys, folder, path path = "c:\folder" set filesys=CreateObject("Scripting.FileSystemObject") If Not filesys.FolderExists(path) Then Set folder = filesys.CreateFolder(path) End If
Summary: I have had a similar problem in my last job. I had reports to send to printers of many different types and some that had hard-coded or physical font types on them (daisy wheel anyone?) i eventually ...
Summary: i have 2 questions regarding files in C++. the first, how can you make folders, and how can you delete files and folders. this is for a console application. ...
Summary: hi, i did a database project in VB. my front end(VB) is installed on a stand alone system and am connection to Oracle which is on server. i configured my ODBC drivers and used system DSN. now im wonde...