public static void EnsureDirectoryExists()

in build/FileUtility.cs [19:25]


        public static void EnsureDirectoryExists(string path)
        {
            if (!Instance.Directory.Exists(path))
            {
                Instance.Directory.CreateDirectory(path);
            }
        }