我想在webroot內創建一個新目錄(文件夾),這樣我就可以在該新文件夾內創建/編輯文件。cakephp - 在webroot內創建新目錄
我的代碼是:
$path = 'files' . DS . 'pathtofolder';// $folder_name;
$folder = new Folder($path);
if (!is_null($folder->path)) { //this is to verify if created
echo "Exists";
}
else{
echo "Doesnt exist";
}
結果總是犯規存在。我無法找到我的cakephp文件夾中的任何創建的文件夾。
我試圖改變'文件'的'webroot',但它不工作。
這是創建目錄的正確代碼嗎?
關於'$ create'參數的小解釋不會受到影響。 ** https://book.cakephp.org/3.0/en/core-libraries/file-folder.html#folder-api** | ** HTTPS://api.cakephp.org/3.4/class-Cake.Filesystem.Folder.html#___construct**。 – ndm