Am trying to use react-native-fetch-blob to create directories and paths. How do i use it? i try to use this but i cant find the directory i created.
RNFetchBlob.fs.mkdir(PATH_TO_CREATE)
.then(() => { ... })
.catch((err) => { ... })
But when i console the list of directories, i cant find it.
const dirs = RNFetchBlob.fs.dirs
console.log(dirs)
i try to console the directory but i cant find it. Also how to do i use the 'createFile' Command.