srk999 Posted August 28, 2008 Posted August 28, 2008 I need to delete the parent folder that the vbs script is in. For example, if the vbs script is in the folder "New", I need to delete the folder with everything in it using the script.
jcarle Posted August 28, 2008 Posted August 28, 2008 No guarantee that this would work because the script will be in use, but if it does work, this would do it:Dim FSODim FolderPathSet FSO = CreateObject("Scripting.FileSystemObject")FolderPath = FSO.GetParentFolderName(WScript.ScriptFullName)FSO.DeleteFolder FolderPath, TrueSet FSO = Nothing
srk999 Posted August 28, 2008 Author Posted August 28, 2008 (edited) No guarantee that this would work because the script will be in use, but if it does work, this would do it:Dim FSODim FolderPathSet FSO = CreateObject("Scripting.FileSystemObject")FolderPath = FSO.GetParentFolderName(WScript.ScriptFullName)FSO.DeleteFolder FolderPath, TrueSet FSO = NothingIs there a way the script can be stored in a temporary location just before execution, so that the folder is not locked while its execution?Do you think batch commands can do it? Edited August 28, 2008 by srk999
Yzöwl Posted August 28, 2008 Posted August 28, 2008 As stated above the following will work:Set oFS = CreateObject("Scripting.FileSystemObject")MyParent = oFS.GetParentFolderName(WScript.ScriptFullName)oFS.DeleteFolder MyParent, TrueJust make the bottom line the last one in your VBScript.The following batch file will work fine too:ntscript.cmd@Set "C_=X:\MyDir\New\some.vbs"@For %%# In (%C_%) Do @Set "P_=%%~dp#"&@%C_%&&@Rd/s/q "%P_%"If you wish you could run your vbs using '@cscript //nologo %C_%' too!
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now