保存文件到我的文档

本文关键字:文档 我的 保存文件 | 更新日期: 2023-09-27 18:16:42

我想创建一个程序,将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);

保存文件到我的文档

try

Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);

我怀疑您想要Environment.SpecialFolder枚举:

http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx

Environment.GetFolderPath组合:

http://msdn.microsoft.com/en-us/library/system.environment.getfolderpath.aspx