Как я могу скопировать весь файл из папки в другую папку, используя laravel
Я попробовал это:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use XBase\Table;
use File;
class WorkController extends Controller
{
//
public function index()
{
$dir = public_path('dbf');
// $new_path = public_path('new_files');
$files1 = scandir($dir);
$count=count($files1);
for($i=1;$i<$count;$i++)
{
if($files1[$i]!='.' && $files1[$i]!='..')
{
$file=$files1[$i];
//$myfile = fopen($file, "r");
$table = new Table(public_path('dbf\\') . $file);
$table->move('coped_Data',$file);
while ($record = $table->nextRecord())
{
echo "For".$i."<br>".$record->folio_no;
}
}
}
}
}
Выше приведен целый код
это показывает мне эту ошибку
"Вызов неопределенного метода XBase \ Table :: move ()"