mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Common.IO;
 | 
						|
using System;
 | 
						|
using System.IO;
 | 
						|
using CommonIO;
 | 
						|
 | 
						|
namespace MediaBrowser.ServerApplication.Native
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class Autorun
 | 
						|
    /// </summary>
 | 
						|
    public static class Autorun
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Configures the specified autorun.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="autorun">if set to <c>true</c> [autorun].</param>
 | 
						|
        /// <param name="fileSystem">The file system.</param>
 | 
						|
        public static void Configure(bool autorun, IFileSystem fileSystem)
 | 
						|
        {
 | 
						|
            var shortcutPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.StartMenu), "Emby", "Emby Server.lnk");
 | 
						|
 | 
						|
            var startupPath = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
 | 
						|
 | 
						|
            if (autorun)
 | 
						|
            {
 | 
						|
                //Copy our shortut into the startup folder for this user
 | 
						|
                File.Copy(shortcutPath, Path.Combine(startupPath, Path.GetFileName(shortcutPath) ?? "Emby Server.lnk"), true);
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                //Remove our shortcut from the startup folder for this user
 | 
						|
                fileSystem.DeleteFile(Path.Combine(startupPath, Path.GetFileName(shortcutPath) ?? "Emby Server.lnk"));
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |