views:

332

answers:

2

I need to rename a file in the IsolatedStorage. How can I do that?

Thank you

+4  A: 

There doesn't appear to anyway in native C# to do it (there might be in native Win32, but I don't know).

What you could do is open the existing file and copy it to a new file and delete the old one. It would be slow compared to a move, but it might be only way.

var oldName = "file.old"; var newName = "file.new";

using (var store = IsolatedStorageFile.GetUserStoreForApplication())
using (var readStream = new IsolatedStorageFileStream(oldName, FileMode.Open, store))
using (var writeStream = new IsolatedStorageFileStream(newName, FileMode.Create, store))
using (var reader = new StreamReader(readStream))
using (var writer = new StreamWriter(writeStream))
{
  writer.Write(reader.ReadToEnd());
}
Samuel
I suppose it is only slow if the file is really big. Maybe a couple of MB should be irrelevant. Going to try it. Thanks Samuel
Artur Carvalho
Works great! No noticeable overhead.
Artur Carvalho
+2  A: 

In addition to the copy to a new file, then delete the old file method, starting with Silverlight 4 and .NET Framework v4, IsolatedStorageFile exposes MoveFile and MoveDirectory methods.

Matt Ellis