Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
php是否允许您检查是否映射了网络驱动器。基本上在所有计算机上,我们的 G:\ 驱动器都已映射。是否可以使用 php 脚本检查 G:\ 驱动器是否已映射?为了从映射驱动器访问目录和文件,我使用 UNC 名称。
非常感谢帮助
为什么要使用 php 访问客户端路径?file_exists 应该也可以,但我不明白这一点:)
<?php $mydir = "G:\ "; echo file_exists($mydir) ? "G is mounted":"G is not mounted"; ?>