All of a sudden I have developed an issue in removing a folder. The folder is empty. Have full rights to location (i can create the folder as well add and remove files in the folder).
I coded a very simple test page to eliminate an issue with the variables:
<?php
$fl="\\\Server1\\Share1";
//$fl="\\\Server1\\Share1\\"; // I also tried this one
$fn="TestFolder";
chdir($fl);
rmdir($fn);
?>
Any thoughts?
I coded a very simple test page to eliminate an issue with the variables:
<?php
$fl="\\\Server1\\Share1";
//$fl="\\\Server1\\Share1\\"; // I also tried this one
$fn="TestFolder";
chdir($fl);
rmdir($fn);
?>
Any thoughts?