itinance / itinance/react-native-fs

Access Denied

Open
#1,237 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
C++
Stars
5k
Forks
1k
PR merge metrics
No merged PRs in 30d

Description

I have all permission. But still shows error.
Possible Unhandled Promise Rejection (id: 2):
Error: ENOENT: /storage/emulated/0/Download/DataBackup/prf.db: open failed: EACCES (Permission denied), open '/storage/emulated/0/Download/DataBackup/prf.db'

THIS IS MY CODE.

const onShare=()=>{

const full_path = RNFS.DownloadDirectoryPath + "/DataBackup/prf.db";
RNFS.exists(full_path)
.then((exist)=>{
if(exist){
RNFS.moveFile(full_path, RNFS.DownloadDirectoryPath+"/prf_new.db");
console.log("exist"+RNFS.DownloadDirectoryPath);
console.log(RNFS.DownloadDirectoryPath);

}else{

console.log("not exist");

}
}).catch((error)=>{
console.log(error);
})

}

N.B: when I run the create folder function, the is created successfully in Downlaod folder.
RNFS.exists(RNFS.DownloadDirectoryPath + "/DataBackup")
.then(exists => {
if (!exists) {
RNFS.mkdir(RNFS.DownloadDirectoryPath + "/DataBackup")
}}).catch(error => {
console.error("Error checking MEMBER directory existence:", error);
});

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.