Hello. I'm trying to rename the files as follows (.Net):
using (var dbx = new DropboxClient(user.DropboxAccessToken))
{
await dbx.Files.MoveAsync(string.Format("/{0}/{1}", pathWithoutName, oldName), string.Format("/{0}/{1}", pathWithoutName, newName), true, true);
}
As a result, I lose the version of the file.
Can I rename the files without losing any versions?
Thank you!