我正在编写一个控制台应用程序,我试图xx.config
用其他 xml 文件(xx.config
)替换一个 xml 文件(),该文件位于不同的文件夹中,具有不同的路径数据C:\Windows\System32\WindowsPowerShell
。我收到以下错误
找不到路径的一部分
C:\Windows\System32\WindowsPowerShell\xx.config
但是这个路径有文件。我试图加载这个文件,XMLDocument
然后也发生了同样的错误。谁能告诉我我做错了什么。
XDocument xmldoc = XDocument.Load(@"C:\test\xx.config");\加载好的 XDocument xmldoc = XDocument.Load(@"C:\Windows\System32\WindowsPowerShell\xx.config");\错误发生
File.Move(@"C:\test\xx.config", >@"C:\Windows\System32\WindowsPowerShell\xx.config");\错误发生