[求助]asp能否执行批处理程序
以下代码是php执行FlashPrinter.bat将pdf转成swf.能否用asp来实现相同的效果.<?php
class test
{
public function doit($oldfile,$newfile)
{
$command = "D:\APMServ5.2.6\www\htdocs\pdf_swf\FlashPrinter.bat $newfile $oldfile";
//echo $command;
exec($command);
}
}
$ss = new test();
$newfile = "D:\APMServ5.2.6\www\htdocs\pdf_swf\swf\a.swf";
$oldfile = "D:\APMServ5.2.6\www\htdocs\pdf_swf\pdf\a.pdf";
echo $oldfile.time();
$ss->doit($oldfile,$newfile);
?>
[ 本帖最后由 thbwn 于 2010-9-5 23:17 编辑 ]