itinance / itinance/react-native-fs
can't see new dir i just made
Open
- Dominant language
- C++
- Stars
- 5k
- Forks
- 1k
- PR merge metrics
- No merged PRs in 30d
Description
exactly what the title is saying.
```
export const makeDir = (path) => {
try {
RNFS.mkdir(path)
.then((res) => {
console.warn(`MKDIR: ${res}`);
})
.catch((err) => {
console.error(`MKDIRERR: ${err}`);
});
} catch (error) {
console.error(error);
}
};
```
i send the path as `${RNFS.DocumentDirectoryPath}/path}`
and i dont get a folder appearing
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.