我想将位于 public:// 中的上传文件移动到 mymodule 内的文件夹中。
我试试
$dirname = dirname(__file__);
$fullpath = strpos($dirname, '\\') === false ? $dirname . '/' . $file->filename : $dirname . '\\' . $file->filename;
$go = file_move($file, $fullpath);
我得到了这个错误
The specified file public://xxx.BMP could not be moved, because the destination is invalid. More information is available in the system log.
但是 de $destination 是有效的并且是 mymodule 的文件夹!!
谁能帮我搬一下?
谢谢!!!