我想將位於public://上的文件移動到mymodule中的文件夾中。將圖片從public://移動到drupal 7模塊中的文件夾
我嘗試
$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.
但德$目的地是有效的,是mymodule中的文件夾!
任何人都可以幫助移動它嗎?
謝謝!
雖然文件應該被保存和公共服務://這個問題問的正好相反。 – Duncanmoo