Add mblink creation logic to library update endpoint. (#15965)

This commit is contained in:
Collin T Swisher
2026-01-16 19:47:04 -06:00
committed by GitHub
parent 2cb7fb52d2
commit 22d593b8e9
3 changed files with 38 additions and 13 deletions

View File

@@ -660,5 +660,12 @@ namespace MediaBrowser.Controller.Library
/// This exists so plugins can trigger a library scan.
/// </remarks>
void QueueLibraryScan();
/// <summary>
/// Add mblink file for a media path.
/// </summary>
/// <param name="virtualFolderPath">The path to the virtualfolder.</param>
/// <param name="pathInfo">The new virtualfolder.</param>
public void CreateShortcut(string virtualFolderPath, MediaPathInfo pathInfo);
}
}