I'm trying to copy files from one location on a fileshare into another location. I'm fetching attributes and then using startcopyasync. The metadata persists but the last modified date and etag change.
StartCopy says it copies metadata and properties but it seems like it only copies metadata to me.
var currentFile = srcDir.GetFileReference(((CloudFile) item).Name);
currentFile.FetchAttributes();
var destFile = destDir.GetFileReference(((CloudFile) item).Name);
await destFile.StartCopyAsync(currentFile);
Does it not actually copy lastmodified date? Am I doing something wrong? I can't find good documentation on this exact situation.