munnikd Posted May 6, 2013 Share Posted May 6, 2013 Hi, i'm not able to access a mapped drive on my server with the following code : $location = "K:" if ($handle = opendir($location)) { while (false !== ($entry = readdir($handle))) { echo "$entry"; } closedir($handle); } I know it is a permission problem, but how do I give the Iusr and IIS rights to access this mapped drive ? Link to comment https://forums.phpfreaks.com/topic/277690-access-mapped-drive/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.