if I do
rm_rf('somewhere')
mkdir('somewhere')
every so often, the mkdir throws a Permission Denined. Is this because the rm_rf runs asynchronously and sometimes hasnt finished deleting the dir before the mkdir runs?
How do I make it block until its completed the delete?
running this on Windows btw.
Thanks