Em C # no Windows Phone Tentativa de acessar o método falhou: System.IO.FileStream..ctor (System.String, System.IO.FileMode)

FileStream FS = new FileStream("MyFolder\\MyFile.txt", FileMode.Open);
IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();
StreamWriter writeFile = new StreamWriter(new IsolatedStorageFileStream("MyFolder\\MyFile.txt", FileMode.Append, myIsolatedStorage));

    using (writeFile)
    {
        FS.Seek(0, SeekOrigin.End);
        writeFile.WriteLine(txtWrite.Text);
        writeFile.Close();
        System.Diagnostics.Debug.WriteLine("Now I am here");
    }

Quando eu estou tentando executar este código (tentando anexar dados em um arquivo de texto existente), ficando exceção

"Tentativa de acessar o método falhou: System.IO.FileStream..ctor (System.String, System.IO.FileMode)"

Qual foi o erro que fiz aqui?

questionAnswers(3)

yourAnswerToTheQuestion