我想從我的應用程序文件夾複製驅動程序文件驅動程序文件夾在Windows 7但當我運行這個程序文件已經存在,如果我在驅動程序文件夾手動檢查已經發生的異常文件根本不存在。文件已經存在例外file.copy
Program.sDriverPath = Path.Combine(Program.sStartUpPath, @"windows7\amd64\MyDriver.sys");
string sPath = sDriverPath;
string sDestPath = Path.Combine(Environment.ExpandEnvironmentVariables(@"%windir%\system32"), @"drivers\MyDriver.sys");
MessageBox.Show("Source " + sDriverPath);
File.Copy(sDriverPath, sDestPath);
'File.Copy(sDriverPath,sDestPath,真);'添加第三個重載指定要覆蓋目標文件。 – Equalsk
CopyFile(sDriverPath,sDestPath,true);我曾嘗試但仍然不能正常工作 –
你在用什麼? 32或64位? – Pikoh