我正在制作一个分发给人们的程序。目前我正在使用:
bitmap.Save("C:/My OVMK Photos//OpenVMK" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".jpg", ImageFormat.Jpeg);
我想让它自动检测他们到桌面的计算机文件路径,以便将其保存到桌面上的文件夹中。
我正在寻找使用此代码:
string filePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
filePath =filePath +@"\Error Log\";
string extension = ".log";
if (!Directory.Exists(filePath))
{
Directory.CreateDirectory(filePath);
}
我将如何实施?