I use File.Copy and ListFiles in several places in my code.
I am not sure whether I should be replacing these methods with the new File.CopyAsync and ListFilesAsync, or whether I should leave them alone.
Is there a general guideline on where to use which? Is it better to always use the async version?
I am not sure whether I should be replacing these methods with the new File.CopyAsync and ListFilesAsync, or whether I should leave them alone.
Is there a general guideline on where to use which? Is it better to always use the async version?