C#循环检测某个文件是否存在,存在则删除

if(System.IO.File.Exists(@"C:\ProgramData\Microsoft\Crypto\Keys\ABC.txt
"))
{
System.IO.File.Delete(@"C:\ProgramData\Microsoft\Crypto\Keys\ABC.txt
");
}

注册表
RegistryKey key = Registry.CurrentUser;
key.DeleteSubKey("Software\\WinRAR\\Setup\\MenuIcons",true); //该方法无返回值,直接调用即可
key.Close();

你可能感兴趣的:(Microsoft,Visual,Studio,c#,linux)