IONIC 3 - I want to get file path of the pdf when select from file manager
问题 Here i am posting my code of selecting PDF from file manager. i need to get file path of selected PDF. how can i get it? .html <input type="file" (change)="selectPDF($event)" class="file-input upload-items" name='company_pdf' style="opacity: 0" id="company_pdf" #fileInp> .ts selectPDF(fileInput: any) { if (fileInput.target.files[0].type == 'application/pdf') { console.log(fileInput.target.files) this.PDFfiles.push(fileInput.target.files[0]); if (this.PDFfiles.length > 4) { this