我有以下代码:
$file_name = "1234";
$filename = "L:\\videoette_converter\\batch_files\\".$file_name.'.bat';
if (!$handle = fopen($filename, 'a')) {
echo "Cannot open file ($filename)";
exit;
}
我从该代码中得到以下错误:
警告:fopen(L:\videoette_converter\batch_files\1234.bat) [function.fopen]:无法打开流:第 47 行的 C:\wamp\www\videoette_converter\index.php 中没有这样的文件或目录
和我的 php 中的调试行
无法打开文件 (L:\videoette_converter\batch_files\1234.bat)
但是,该文件夹L:\videoette_converter\batch_files
确实作为映射驱动器存在,并且我已授予“所有人”完全权限。可能是什么问题呢?