Hi,
We are using UWP Background downloader to download video files. We are doing parallel downloads. We need to replace the video file if the same file is being downloaded again.
StorageFile destinationFile = await videoFolder.CreateFileAsync(
file, CreationCollisionOption.ReplaceExisting);
But if two video files with same name get downloaded at the same time can there be any issues occurred?
If we are to download same file with two download operations at the same time what is the recommended way to do that. (we need to have the same name for both files)
Thank you.