我正在尝试用 C# 编写一个项目 Windows 服务。
我想将文件夹复制到另一个目录。我写了代码,一切都很完美
DirectoryInfo source = new DirectoryInfo("C:\\belgeler");
DirectoryInfo target = new DirectoryInfo("E:\\Backup");
这是正确的实现,但是当我写这个时......
DirectoryInfo source = new DirectoryInfo(from_path);
DirectoryInfo target = new DirectoryInfo(to_path);
错误是“字段初始值设定项无法引用非静态字段、方法或属性“BACKUP(myproject_name).Service1.veri”
//string to_path = Registry.LocalMachine.GetValue("ToPath").ToString();
//string from_path = Registry.LocalMachine.GetValue("FromPath").ToString();
此代码块正在运行控制台应用程序,但在 Windows 服务中它不是。