I would like to create a folder under MS Access control. I have tried the following code:
strMakeDir = "md " & strBackupFolder
var = Shell(strMakeDir, 0)
but I keep getting the error message "File Not Found". I get the same message when I type in "md c:\testfolder" However, I can type in an excutable file and it works fine.
The problem seems to be that the Shell command doesn' like md.
Does anyone know the answer?

strMakeDir = "md " & strBackupFolder
var = Shell(strMakeDir, 0)
but I keep getting the error message "File Not Found". I get the same message when I type in "md c:\testfolder" However, I can type in an excutable file and it works fine.
The problem seems to be that the Shell command doesn' like md.
Does anyone know the answer?