gpt4 book ai didi

php - cakephp - 在 webroot 中创建新目录

转载 作者:行者123 更新时间:2023-12-02 03:54:50 25 4
gpt4 key购买 nike

我想在网络根目录中创建一个新目录(文件夹),以便我可以在该新文件夹中创建/编辑文件。

我的代码是:

$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 文件夹中找不到任何创建的文件夹。

我尝试将"file"更改为“webroot”,但它不起作用。

这是创建目录的正确代码吗?

最佳答案

试试这个

$path = 'files' . DS . 'pathtofolder';
$folder = new Folder($path, true, 0755);
if ($folder->path) {
echo "Exists";
}
else{
echo "Doesnt exist";
}

关于php - cakephp - 在 webroot 中创建新目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44361514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com