Shell命令不会运行exe文件

时间:2016-01-07 16:32:21

标签: excel vba excel-vba

我有将exe文件复制到各个子文件夹的代码,然后用于运行该文件夹中的文件。但是,Shell函数调用不会导致任何操作。

destPath = simsPath & subfolderName & "\"
If Len(Dir(destPath, vbDirectory)) = 0 Then MkDir destPath

FileCopy currPath & EXE_FILENAME, destPath & EXE_FILENAME

Shell (destPath & EXE_FILENAME)

当我以这种方式运行时,可执行文件不会触发,我检查了文件路径是否正确。

我试着做

ChDir destPath
Shell (EXE_FILENAME)

这表示找不到exe文件,即使它肯定在文件夹中。

我可以通过任何方式获取Shell函数来触发吗?

0 个答案:

没有答案