S
Slickuser
I use SVN to checkout a folder and SVN set the directory to read only.
Using File:
ath module, rmtree($path) to try do delete all files &
directories in that folder.
I get error: Can't remove directory
Is there some way I can remove it. I try looking at chmod but doesn't
help it either. Thanks.
my $dir_del = "C:\folderA\ABC\D\E";
$dir_del =~ s/\\/\//ig;
chmod($dir_del,0755);
rmtree($dir_del);
Using File:
directories in that folder.
I get error: Can't remove directory
Is there some way I can remove it. I try looking at chmod but doesn't
help it either. Thanks.
my $dir_del = "C:\folderA\ABC\D\E";
$dir_del =~ s/\\/\//ig;
chmod($dir_del,0755);
rmtree($dir_del);