Ensures that dir and all its parent directories exist.
dir
If they don't exist, creates them.
String ensureDir(String dir) { Directory(dir).createSync(recursive: true); return dir; }