DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a DIAdem Script command that can automatically create folders/directories in Windows?

Hi there!

I need to automatically create folders/directories in the Windows file system? Is there a DIAdem Script command to do this (like the way you do it in DOS/Unix or even Matlab (mkdir command)? Thanks!
Message 1 of 2
(3,947 Views)
Hi,

there are two ways to create folders within a DIAdem script:

Call FolderCreate("d:\New Folder")

Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
Call fso.CreateFolder("d:\New Folder 2")


Christian
0 Kudos
Message 2 of 2
(3,947 Views)