Artemis.Utilities.DataReaders.DllManager.PlaceLogitechDll C# (CSharp) Метод

PlaceLogitechDll() публичный статический Метод

public static PlaceLogitechDll ( ) : void
Результат void
        public static void PlaceLogitechDll()
        {
            if (DllPlaced())
                return;

            // Create directory structure, just in case
            Directory.CreateDirectory(LogitechPath + @"");

            // Backup the existing DLL
            if (File.Exists(LogitechPath + @"\LogitechLed.dll"))
            {
                if (File.Exists(LogitechPath + @"\LogitechLed.dll.bak"))
                    File.Delete(LogitechPath + @"\LogitechLed.dll.bak");
                File.Move(LogitechPath + @"\LogitechLed.dll", LogitechPath + @"\LogitechLed.dll.bak");
            }

            // Copy our own DLL in place
            File.WriteAllBytes(LogitechPath + @"\LogitechLED.dll",
                Resources.LogitechLED);

            // A token to show the file is placed
            File.Create(LogitechPath + @"\artemis.txt");

            // If the user doesn't have a Logitech device, the CLSID will be missing
            // and we should create it ourselves.
            if (!RegistryKeyPlaced())
                PlaceRegistryKey();
        }