为Windows Phone

时间:2015-09-01 11:00:57

标签: c# .net windows-phone-8.1

我只是搜索了一下但是我找不到任何东西 我想为我的应用激活。我想在系统中创建一个文件,当有人删除我的应用程序时,文件不会删除,因为我想在人员再次安装后检查激活。
有没有办法做到这一点,因为我这样做,但当我重新安装应用程序时,文件被删除 这是我的方式,但如果你能说更好的方式,请帮助我 我很抱歉我的英语 感谢。

1 个答案:

答案 0 :(得分:0)

AS现在文件保存在应用程序存储中,在卸载应用程序时会被删除。如果文本文件可用,您可以将文本文件保存到外部存储中。

     StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;

            // Get the first child folder, which represents the SD card.
            StorageFolder sdCard = (await externalDevices.GetFoldersAsync()).FirstOrDefault();

            if (sdCard != null)
            {
                // An SD card is present and the sdCard variable now contains a reference to it.
                var output1 = await sdCard.CreateFileAsync("Test.txt", CreationCollisionOption.OpenIfExists);
            }
            else
            {
                // No SD card is present.
            }