itinance / itinance/react-native-fs

can't see new dir i just made

Open
#518 5 comments 2 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.