icintamyself
MIS
After closing a file I call another process that would access that file :
open(MYFILE, ">>test"
;
do something with the file.
close(MYFILE);
system("myprog >>log"
&& warn "Error : ";
Myprog would access the file test.
However myprog complaints that the file is currently being used by another process which should be my perl script process.
When I close the file is the file still open and cannot be used by other process ? How do I go about solving this ?
open(MYFILE, ">>test"
do something with the file.
close(MYFILE);
system("myprog >>log"
Myprog would access the file test.
However myprog complaints that the file is currently being used by another process which should be my perl script process.
When I close the file is the file still open and cannot be used by other process ? How do I go about solving this ?