我是laravel的新手。我正在创建一个应用程序,我在其中检查sftp上正在提供的目录。通过查看文档,我成功地列出了该sftp上托管的目录中的所有文件名。
我的下一个目标是将所有这些保存在本地文件夹'public / InputFiles'中,但是我如何做到这一点,我尝试了几种组合,但没有一种帮助。 这就是我所做的。在config / filesystem.php中我有
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => public_path().'/InputFiles',
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
'sftp' => [
'driver' => 'sftp',
'host' => 'exampleHost.com',
'username' => 'username',
'password' => 'password',]
在我的控制器中我有这个功能
public function getFilesFromFtp()
{
//all files are present inside 'outgoing' folder
$file_list = Storage::disk('sftp')->allFiles('outgoing/');
foreach ($file_list as $key => $value) {
# code...
//output the name of the files
$this->printVariable(str_replace("outgoing/", "", $value));
Storage::disk('public')->put(str_replace("outgoing/", "", $value), Storage::disk('sftp')->download($value));
}
例如,我在sftp上的传出文件夹中有一个名为sample.txt的文件。 在这个文件里面,我把文字作为'示例文本'。通过使用上面的方法,我能够看到在所需位置制作的sample.txt文件,但其内容如下:
HTTP / 1.0 200 OK 缓存控制:无缓存,私有 内容 - 处理:附件;文件名= “sample.txt的” 内容长度:12 Content-Type:text / plain 日期:星期四,2018年4月19日10:35:10 GMT
这不是我想要的。我实际上想保存文件,就像在sftp上一样。我该怎么做?
答案 0 :(得分:0)
刚刚将行改为
Storage::disk('public')->put(str_replace("outgoing/", "", $value), Storage::disk('sftp')->get($value));
所以基本上我从sftp获取文件并将其放在本地目录中。无需下载。