gpt4 book ai didi

php - 在尝试使用 phpseclib 创建 SFTP 目录之前检查它是否存在

转载 作者:行者123 更新时间:2023-12-05 04:17:32 24 4
gpt4 key购买 nike

我的模型中有以下函数:

public function createfolder($location, $name){
define('NET_SFTP_LOGGING', NET_SFTP_LOG_COMPLEX);
$sftp = new Net_SFTP('xx.xxx.xx.xx');
if (!$sftp->login('admin', '********')) {
exit('Login Failed');
}
//moves to a location (Job folder for example)
$sftp->chdir($location);
//makes the folder
$sftp->mkdir($name);
}

这可行,但我想添加某种错误预防验证,我如何使用 SFTP 检查文件夹是否存在?


想出一个解决方案:

chdir() changes directories, mkdir() creates directories, and rmdir() removes directories. In the event of failure, they all return false. chdir(), mkdir(), and rmdir() return true on successful completion of the operation.

所以我可以使用 if 语句来检查 if chdir() === truefalse 以查看目录是否存在.

最佳答案

您可以使用 $sftp->is_dir($location) 来检查它是否是一个目录。

关于php - 在尝试使用 phpseclib 创建 SFTP 目录之前检查它是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22502016/

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