ChobiQ.DoubanFMAPICodePack.StorageManager.StorageManager C# (CSharp) Method

StorageManager() static private method

static private StorageManager ( ) : System
return System
        static StorageManager()
        {
            string appDataPath = Environment.GetFolderPath(
                Environment.SpecialFolder.ApplicationData);

            string qFMRelPath = "Chobi-Q\\QFM";

            s_QFMDir = new DirectoryInfo(Path.Combine(
                appDataPath, qFMRelPath));
            s_QFMDir.Create();

            s_statusFile = new FileInfo(Path.Combine(
                s_QFMDir.FullName, "UserStatus.bin"));
            s_channelFile = new FileInfo(Path.Combine(
                s_QFMDir.FullName, "Channel.bin"));
        }