Пример #1
0
        /// <summary>
        /// Gets the cache directory of the project.
        /// </summary>
        /// <returns></returns>
        public String GetCacheDirectory()
        {
            // Get the path
            var path = Path.Combine(ProjectDirectory, CACHE_DIR);

            IOUtilities.EnsureDirectoryExists(path);    // Make sure that there is such a directory.
            return(path);
        }