is there a way to write a character to a terminal from the file:
I have (in the file):
$var="c:\uploads\temp";
system ("del $var");
it's output:
c:\uploads\temp*, Are you sure (Y/N)?
I want to delete what's inside the directory 'temp' without being asked the 'Are you sure (Y/N)?' question.
- this is DOS terminal, so deleting directory (with contents inside it) with del command should work fine
hope my question is pretty clear.....
thanx,
crue