激活Windows手机
本文关键字:手机 Windows 激活 | 更新日期: 2023-09-27 18:10:44
我只是搜索了一下,但是什么也没找到。
我想为我的应用程序激活。我想在系统中创建一个文件,当人们删除我的应用程序时,文件不会删除,因为我想在人们重新安装后检查激活情况。
有没有办法做到这一点,因为我这样做,但当我重新安装应用程序,文件删除。
这是我的方式,但如果你能说更好的方法,请帮助我。我为我的英语感到抱歉。谢谢。
现在文件保存在应用程序存储中,当应用程序卸载时删除。你可以把你的文本文件保存到你的外部存储,如果它可用的话。
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.
}