コード例 #1
0
ファイル: JsonStore.cs プロジェクト: vbraziel/Posh-SSH
        private void WriteToDisk()
        {
            var jsonString = JsonConvert.SerializeObject(new ConfigFileStruct()
            {
                Keys = HostKeys.ToDictionary(x => x.Key, x => x.Value)
            },
                                                         Formatting.Indented
                                                         );

            File.WriteAllText(FileName, jsonString);
        }
コード例 #2
0
ファイル: JsonStore.cs プロジェクト: darkoperator/Posh-SSH
        private void WriteToDisk()
        {
            var jsonString = JsonConvert.SerializeObject(new ConfigFileStruct()
            {
                Keys = HostKeys.ToDictionary(x => x.Key, x => x.Value)
            },
                                                         Formatting.Indented
                                                         );
            var d = Directory.CreateDirectory(Path.GetDirectoryName(FileName));

            if (d.Exists)
            {
                File.WriteAllText(FileName, jsonString);
            }
        }