无法使用tcpdf在服务器中保存文件

$html = <<<EOD
EOD;
$pdf->writeHTMLCell($w=0, $h=0, $x='', $y='', $table, $border=0, $ln=1, $fill=0, $reseth=true, $align='', $autopadding=true);
$pdf->Output('order/orders_2013-10.pdf', 'F');

This is the code i use to create and save a pdf file and it worked well on my local wamp server but when i run it over a windows iis webserver pdf is not created and reflects with the below error.

TCPDF ERROR: Unable to create output file: order\orders_2013-10.pdf

I am new to php please help me...

make sure that your file('order/orders_2013-10.pdf') is not open anywhere when you run the script. if it's open somewhere else then TCPDF can't open it.