我有以下exec
声明:
$script_dir = 'C:\Users\mcnall\Documents\main_home\script';
exec("$script_dir\\exec.pl", "$name", "$func_type", "$func_args");
到达此行时,错误
Can't exec "C:\Users\mcnall\Documents\main_home\script\exec.pl": No such file or directory at C:\Users\mcnall\Documents\main_home\script\main.pl line 153.
该文件肯定存在。当我从上面的错误中复制并粘贴C:\Users\mcnall\Documents\main_home\script\exec.pl
时,它会按预期运行文件,但由于某种原因它不会通过脚本运行它。
我一定是在做一些愚蠢的事情,有人可以告诉我我做错了什么吗?