9 lines
237 B
Text
9 lines
237 B
Text
Set objFSO = CreateObject("Scripting.FileSystemObject")
|
|
|
|
'current directory
|
|
objFSO.CreateFolder(".\docs")
|
|
objFSO.CreateTextFile(".\docs\output.txt")
|
|
|
|
'root directory
|
|
objFSO.CreateFolder("\docs")
|
|
objFSO.CreateTextFile("\docs\output.txt")
|