我需要指导来执行.bat文件。
文件位置保存在变量中。
public static void concat(Collection<File> files, OutputStream os) throws IOException {
for (File file : files) {
try (BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file))) {
int b;
while ((b = bis.read()) != -1) {
os.write(b);
}
}
}
}
当我使用以下代码时,命令未执行:
$targetBAT = $_SESSION["runPath"].$filename;
我希望.bat文件使用保存在我创建的变量中的文件位置运行。