I'm trying to perform a simple File.Move operation but I get 
System.UnauthorizedAccessException exception - Access to the path is denied.
To my knowledge, nothing is using the file I am trying to move (containing folder is closed as well). I can move the file manually via File Explorer just fine. I've tried File.Delete and it works perfectly fine. 
I'm unsure of what is happening - why would File.Move fail but File.Delete work if Visual Studio says that access to the path is denied?
Here is my code:
string file = @"C:\Data\VCR\150326\150326.MPG";
string destination = @"G:\ArchiveData\Video";
System.IO.File.Move(file, destination);
 
    