I\'m trying to figure out how to move a file in Azure File Storage from one location to another location, in the same share.
E.g.
source -> \\\\Sh
Like this:
public static void MoveTo(this CloudFile source, CloudFileDirectory directory) { var target = directory.GetFileReference(source.Name); target.StartCopy(source); source.Delete(); }