我需要一种将文件下载到桌面的方法。
根据我的研究,我找到了将文件保存到应用程序特定目录的方法,即(LocalFolder、RoamingFolder、TemporaryFolder)、DownloadsFolder 和KnownFolders即(DocumentsLibrary、PictureLibrary、MusicLibrary、VideoLibrary 和 RemovableDevices)。
C# 提供了一种获取桌面路径和创建文件的方法
var desktopFolder = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
var fullFileName = Path.Combine(desktopFolder, "Test.txt");
var fs = new FileStream(fullFileName, FileMode.Create);
但类Environment中不存在SpecialFolder或GetFolderPath
所以我的问题-
是否可以使用 windows 商店应用程序将文件保存到桌面?如果可能的话,请告诉我怎么做?