mirror of
https://github.com/nsnail/dot.git
synced 2025-06-17 21:13:21 +08:00
12 lines
473 B
C#
12 lines
473 B
C#
var path = Directory.GetFiles(@".idea", "workspace.xml", SearchOption.AllDirectories).First();
|
|
const string findStr = """
|
|
"keyToString": {
|
|
""";
|
|
const string replaceStr = """
|
|
"keyToString": {
|
|
"rider.code.cleanup.on.save": "true",
|
|
""";
|
|
var content = File.ReadAllText(path);
|
|
content = content.Replace(findStr, replaceStr);
|
|
Console.WriteLine(content);
|
|
File.WriteAllText(path, content); |