Subject: | Removal of files that should not be removed |
Hi,
It seems like Statistics::R is a little bit too eager to delete files
present in the log dir, even files that it did not create.
For example, run these command in a BASH terminal:
touch myfile.txt
ls
perl -e 'use Cwd; use Statistics::R; my $R = Statistics::R->new(
log_dir => cwd ) ; $R->startR() ; $R->stopR() ;'
ls
Notice how the file 'myfile.txt' has disappeared...
Florent