. NET Directory.Move () не работает для папок One Drive - PullRequest
0 голосов
/ 05 марта 2020

Для звонка:

// Directory.Exists(path) returns true
// path = "C:\\Users\\david\\OneDrive - Windward Studios\\Documents\\AutoTag\\templates"
Directory.CreateDirectory(backupFolder);
Directory.Move(path, Path.Combine(backupFolder, Path.GetFileName(path)));

Выдает исключение:

System.IO.IOException
  HResult=0x80070005
  Message=Access to the path 'C:\Users\david\OneDrive - Windward Studios\Documents\AutoTag\templates' is denied.
  Source=mscorlib
  StackTrace:
   at System.IO.Directory.InternalMove(String sourceDirName, String destDirName, Boolean checkHost)
   at System.IO.Directory.Move(String sourceDirName, String destDirName)
   at AutoTagCore.net.windward.autotag.controls.options.CopyTemplates.UpdateFiles() in C:\git\Jenova\autotag\AutoTagCore\net\windward\autotag\controls\options\CopyTemplates.cs:line 480

  This exception was originally thrown at this call stack:
    System.IO.Directory.InternalMove(string, string, bool)
    System.IO.Directory.Move(string, string)
    AutoTagCore.net.windward.autotag.controls.options.CopyTemplates.UpdateFiles() in CopyTemplates.cs

Почему это не работает? И что я могу сделать, чтобы это исправить?

1 Ответ

0 голосов
/ 05 марта 2020

У пункта назначения должен быть символ \ в конце пути.

                    string destDirectory = Path.Combine(backupFolder, Path.GetFileName(path));
                    if ((!destDirectory.EndsWith("\\")) && !destDirectory.EndsWith("/"))
                        destDirectory += "\\";
...