gpt4 book ai didi

c# - 将文件保存到我的文档

转载 作者:太空宇宙 更新时间:2023-11-03 20:15:41 24 4
gpt4 key购买 nike

我想创建一个程序,将 bmp 图片保存到我的文档中,并将该图片用作墙纸。到目前为止,我设法创建了这个程序,它运行得非常好。但是有一个问题,我不知道如何将 bmp 文件保存到我的文档中(每台计算机都有不同的路径)。请帮我想办法找到我的文件的路径。

System.Drawing.Image img = Properties.Resources.pic;
img.Save("D:\\wall.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);
key.SetValue(@"Wallpaper", "D:\\wall.bmp");
RegistryKey key2 = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);
key2.SetValue(@"WallpaperStyle", 2.ToString());
key2.SetValue(@"TileWallpaper", 0.ToString());
SystemParametersInfo(
SPI_SETDESKWALLPAPER,
0,
"D:\\wall.bmp",
SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE);

最佳答案

尝试

Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);

关于c# - 将文件保存到我的文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16886527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com