test file path

This commit is contained in:
CHIEFSOFT\ameye
2023-06-01 22:24:36 -04:00
parent a6a520a99f
commit dfeb118149
2 changed files with 24 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class UploadManager extends Model
{
public $savePath ="//10.0.0.40/wrenchboard/TEST/";
public function reciveUpload($in,$out){
mkdir($this->savePath.rand(10000,999999), 0777, true);
return 0;
}
}