PurplePen.PdfMapFile.GetCacheDirectory C# (CSharp) Method

GetCacheDirectory() private static method

private static GetCacheDirectory ( ) : string
return string
        private static string GetCacheDirectory()
        {
            string tempPath = Path.GetTempPath();
            string cacheDirectory = Path.Combine(tempPath, "PurplePen");
            if (!Directory.Exists(cacheDirectory))
                Directory.CreateDirectory(cacheDirectory);
            return cacheDirectory;
        }