I need to rename a file in the IsolatedStorage. How can I do that?
Perfectly execute this piece of code
string oldName="oldName"; string newName="newName"; var file = await ApplicationData.Current.LocalFolder.GetFileAsync(oldName); await file.RenameAsync(newName);