@ -212,25 +212,27 @@ namespace MediaBrowser.Api.Library
File . Create ( path ) ;
}
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
}
finally
{
// No need to start if scanning the library because it will handle it
if ( ! request . RefreshLibrary )
Task . Run ( ( ) = >
{
_libraryMonitor . Start ( ) ;
}
}
// No need to start if scanning the library because it will handle it
if ( request . RefreshLibrary )
{
_libraryManager . ValidateMediaLibrary ( new Progress < double > ( ) , CancellationToken . None ) ;
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
_libraryMonitor . Start ( ) ;
}
} ) ;
}
}
/// <summary>
@ -279,25 +281,27 @@ namespace MediaBrowser.Api.Library
}
Directory . Move ( currentPath , newPath ) ;
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
}
finally
{
// No need to start if scanning the library because it will handle it
if ( ! request . RefreshLibrary )
Task . Run ( ( ) = >
{
_libraryMonitor . Start ( ) ;
}
}
// No need to start if scanning the library because it will handle it
if ( request . RefreshLibrary )
{
_libraryManager . ValidateMediaLibrary ( new Progress < double > ( ) , CancellationToken . None ) ;
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
_libraryMonitor . Start ( ) ;
}
} ) ;
}
}
/// <summary>
@ -325,25 +329,27 @@ namespace MediaBrowser.Api.Library
try
{
_fileSystem . DeleteDirectory ( path , true ) ;
// Need to add a delay here or directory watchers may still pick up the changes
var delayTask = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( delayTask ) ;
}
finally
{
// No need to start if scanning the library because it will handle it
if ( ! request . RefreshLibrary )
Task . Run ( ( ) = >
{
_libraryMonitor . Start ( ) ;
}
}
// No need to start if scanning the library because it will handle it
if ( request . RefreshLibrary )
{
_libraryManager . ValidateMediaLibrary ( new Progress < double > ( ) , CancellationToken . None ) ;
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
_libraryMonitor . Start ( ) ;
}
} ) ;
}
}
/// <summary>
@ -362,25 +368,27 @@ namespace MediaBrowser.Api.Library
try
{
LibraryHelpers . AddMediaPath ( _fileSystem , request . Name , request . Path , _appPaths ) ;
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
}
finally
{
// No need to start if scanning the library because it will handle it
if ( ! request . RefreshLibrary )
Task . Run ( ( ) = >
{
_libraryMonitor . Start ( ) ;
}
}
// No need to start if scanning the library because it will handle it
if ( request . RefreshLibrary )
{
_libraryManager . ValidateMediaLibrary ( new Progress < double > ( ) , CancellationToken . None ) ;
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
_libraryMonitor . Start ( ) ;
}
} ) ;
}
}
/// <summary>
@ -399,25 +407,27 @@ namespace MediaBrowser.Api.Library
try
{
LibraryHelpers . RemoveMediaPath ( _fileSystem , request . Name , request . Path , _appPaths ) ;
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
}
finally
{
// No need to start if scanning the library because it will handle it
if ( ! request . RefreshLibrary )
Task . Run ( ( ) = >
{
_libraryMonitor . Start ( ) ;
}
}
// No need to start if scanning the library because it will handle it
if ( request . RefreshLibrary )
{
_libraryManager . ValidateMediaLibrary ( new Progress < double > ( ) , CancellationToken . None ) ;
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task . Delay ( 1000 ) ;
// Have to block here to allow exceptions to bubble
Task . WaitAll ( task ) ;
_libraryMonitor . Start ( ) ;
}
} ) ;
}
}
}
}