public void SaveKey(KeyDescription key) { var keyPath = this.KeyPath; var commentedKey = Regex.Replace(key.Key, @"(?=-----END)", String.Format("Ec2ManagerFingerprint:{0}\n", key.Fingerprint)); Directory.CreateDirectory(Path.GetDirectoryName(keyPath)); File.WriteAllText(keyPath, commentedKey); }