如何在使用TypeScript / Angular 6更改<input type =“'file'” />时获取所选文件的完整路径

时间:2019-03-06 10:52:25

标签: angular typescript

uploadWrapper($event)
  {
  console.log("Need the local computer path of file selected")
    }
<input  type="file" (change)="filesPicked($event)" class="form-control" multiple>

当用户从“选择文件”中选择文件时,我需要文件的完整路径。

1 个答案:

答案 0 :(得分:1)

不幸的是,出于明显的安全原因,JS无法访问文件系统。