2013-10-31 57 views
0

我想將位於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中的文件夾!

任何人都可以幫助移動它嗎?

謝謝!

回答

1

通常,將文件移動到模塊文件夾不是好主意。 但是,如果你想這樣做,請使用相對於drupal根或絕對文件路徑的路徑。 另外,檢查您的模塊目錄的文件夾權限(默認情況下,模塊文件夾是隻讀的)。 如果這沒有幫助,我建議您檢查系統日誌以獲取更詳細的錯誤說明。

-2

最好是將文件移到公共://

$dest = 'public://'; 
$file = file_move($file, $dest) 
+0

雖然文件應該被保存和公共服務://這個問題問的正好相反。 – Duncanmoo

相關問題