Это мой код, который реализует FileChooser
selectFile(){
this.fileChooser.open()
.then(uri => {
this.otherFiles.push(uri);
this.filePath.resolveNativePath(uri).then( file=> {
var filename = file.substr(file.lastIndexOf('/') + 1);
this.otherFilesNames.push(filename);
console.log("file: " + file);
console.log("filename: " + filename);
}).catch(err => console.log(err))
})
.catch(e => console.log(e));
}
Но я хочу ограничить тип файлов, отображаемых FileChooser, например, я просто хочу, чтобы он отображал файл PDF.Могу я это сделать?