Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Can I get some help?
I need to create my own path in "my documents" and I really don't know how. If there's some one that can help me with this, I'll be very grateful. (And give you 10 points)
Ok....WordsOfKnowing, could u put that in plain english (or spanish; I can speak it)?
4 Answers
- Anonymous1 decade agoFavorite Answer
Right-click, Properties.
Change the target to what you want it to be.
- 1 decade ago
Lol.. go to my documents then click "File: New Folder" Name it whatever you want..
Your "path" would now be
c:\documents and settings\<your user name>\my documents\<your new folder>
replace username with your username and folder with the folder you created in step one.. and dont include the aligator mouths!
- Anonymous1 decade ago
What they said...here is a easy program to create a folder...
Copy in NotePad, SaveAs "CreateNew.Vbs"
Dim objFSO
Dim Folder, User, Name
Set objFSO = CreateObject("Scripting.FileSystemObject")
User = InputBox("User Name", "Prompt")
Name = InputBox("Name of folder", "Prompt")
Folder = "C:\Documents and Settings\" & User & "\My Documents\"
If objFSO.FolderExists(Folder & Name) = False Then
objFSO.CreateFolder(Folder & name)
Else
MsgBox "Error, folder already exist", 64, "Prompt"
End if