PHP-如何在网络共享文件夹中创建文本文件

时间:2017-01-27 04:02:44

标签: php file file-io

有人可以帮我解决如何在网络共享文件夹中创建文本文件的问题。共享文件夹具有用户名和密码。 非常感谢! 这是我的代码

<?php
system('net use \\192.168.*.*\folder$ password/user:username');
$dir = "\\192.168.*.*\folder$";
if (is_dir($dir)) 
{
    if ($dh = opendir($dir))        
        print "able to access directory tree.";       
}
else {   print "not access tree.";}
?>

1 个答案:

答案 0 :(得分:0)

发现php不知何故无法读取文件夹$(隐藏文件夹)。删除$(使其可见)并工作。

<?php
//system('net use \\192.168.*.*\folder$ password/user:username');
$dir = "\\\\192.168.*.*\\folder";
if (is_dir($dir)) 
{
    if ($dh = opendir($dir))        
        print "able to access directory tree.";       
}
else {   print "not access tree.";}
?>