Try This
//document.addEventListener("deviceready", function () {
//
// if(window.Connection) {
// if(navigator.connection.type == Connection.NONE) {
// //if no wifi connection
// $scope.Openpdf=function()
// {
// window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fs) {
// fs.root.getDirectory(
// "JSA",//Your directory name
// {
// create: false
// },
// function(dirEntry) {
// dirEntry.getFile(
// $rootScope.JSAID+".pdf", //Save with PDF Name or txt name
// {
// create: false,
// exclusive: false
// },
// function gotFileEntry(fe) {
// $ionicLoading.hide();
// $scope.imgFile = fe.toURL();
// //For open the pdf
// var open = cordova.plugins.disusered.open;
//
// function success() {
// console.log('Success');
// }
//
// function error(code) {
// if (code === 1) {
// console.log('No file handler found');
// } else {
// console.log('Undefined error');
// }
// }
//
// open($scope.imgFile, success, error);
// },
// function(error) {
// $ionicLoading.hide();
// $cordovaToast.showLongCenter("Pdf Not Available for this "+$rootScope.JSAID);
// console.log("Error getting file");
// }
// );
// }
// );
// },
// function() {
// $ionicLoading.hide();
// console.log("Error requesting filesystem");
// });
// }
// }
// else
// {
// //if wifi connection having
// Save();
//
// }
// }
// },false);