首页 > 得到windows聚焦图片(windows 10)

得到windows聚焦图片(windows 10)

有些Windows聚焦图片确实很漂亮,很希望保留下来,但是Windows聚焦图片总更好,网上有得到聚焦图片的方法,每次都手动去弄真麻烦,于是自己编了一个小程序,自动得到Windows聚焦图片,下面是运行这个小程序得到Windows聚焦图片的效果!

小工具以及源码下载:http://download.csdn.net/detail/sunylat/9741756

解压缩下载文件后,小工具在解压缩后的文件夹中:“Win32Debug”,文件名:“Project1.exe”。

运行效果截图:

我用这个小工具保存下来的Windows聚焦图片:

 

全部源码:

unit Unit1;interfaceusesWinapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,System.Classes, Vcl.Graphics,Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls;typeTForm2 = class(TForm)Panel1: TPanel;Panel2: TPanel;clearLogBtn: TButton;logMemo: TMemo;Splitter1: TSplitter;Panel3: TPanel;Button2: TButton;procedure clearLogBtnClick(Sender: TObject);procedure Button2Click(Sender: TObject);procedure FormCreate(Sender: TObject);private{  Private declarations }// 得到特殊目录function GetSpecialDir(SpecialDirID: Integer): string;// 得到用户目录function GetAppdataLocal: string;//重命名所有文件扩展名procedure Rename(filePath: string);public{  Public declarations }procedure MyLog(tempLog: string); // log方法end;varForm2: TForm2;logInfo: string; // log信息implementation{ $R *.dfm}usesShlObj, { GetSpecialDir用单元}System.IOUtils,shellapi;procedure TForm2.Button2Click(Sender: TObject);
constpictureDir ='PackagesMicrosoft.Windows.ContentDeliveryManager_cw5n1h2txyewyLocalStateAssets';
varpicturePath: string;pictureTempPath: string;
begin//windows聚焦图片存放目录picturePath := self.GetAppdataLocal + pictureDir;//存放得到图片的目录pictureTempPath := ExtractFilePath(paramstr(0)) + 'picture';//删除先前处理图片的目录if TDirectory.Exists(pictureTempPath) = true thenbeginTDirectory.Delete(pictureTempPath,true);end;//拷贝windows聚焦图片到临时目录
  TDirectory.Copy(picturePath, pictureTempPath);//如果临时存放图片目录不为空,则继续处理if TDirectory.IsEmpty(pictureTempPath) = false thenbegin//重命名所有文件为扩展名是"jpg"的图片类型文件
    self.Rename(pictureTempPath);//打开存放图片目录ShellExecute(Handle, 'open', 'Explorer.exe', PChar(pictureTempPath), nil,SW_NORMAL);end;end;procedure TForm2.clearLogBtnClick(Sender: TObject);
beginlogMemo.Clear;
end;procedure TForm2.FormCreate(Sender: TObject);
beginend;// log方法
procedure TForm2.MyLog(tempLog: string);
vartemp: string;oldLog: string;
beginif Trim(tempLog) <> '' thenbeginoldLog := Trim(logMemo.Text);logMemo.Clear;temp := FormatDateTime('yyyy-mm-dd hh:mm:ss', now) + ' ' + Trim(tempLog);if oldLog = '' thenbeginlogMemo.Lines.Add(temp);logMemo.Lines.Add('');endelsebeginlogMemo.Lines.Add(temp);logMemo.Lines.Add('');logMemo.Lines.Add(oldLog);end;end;end;// 得到特殊目录
function TForm2.GetSpecialDir(SpecialDirID: Integer): string;
varpidl: PItemIDList;Path: array [0 .. MAX_PATH] of Char;
beginSHGetSpecialFolderLocation(0, SpecialDirID, pidl);SHGetPathFromIDList(pidl, Path);Result := Path;
end;// 得到用户目录
function TForm2.GetAppdataLocal: string;
beginResult := GetSpecialDir(CSIDL_LOCAL_APPDATA);
end;procedure TForm2.Rename(filePath: string);
constbatFile = 'tmp.cmd'; // 保存各种要执行命令的bat文件名
vartempList: TStringList;
begintry// 进入当前目录
    ChDir(filePath);tempList := TStringList.Create;with tempList dobeginAdd('ren *.* *.jpg');Add('del ' + batFile);SaveToFile(batFile);SaveToFile(batFile);end;finallytempList.Free;// 执行bat文件
    WinExec(batFile, SW_HIDE);end;end;end.

 参考:http://www.iplaysoft.com/save-win10-spotlight-wallpapers.html

转载于:https://www.cnblogs.com/sunylat/p/6308952.html

更多相关:

  • CFAbsoluteTime start = CFAbsoluteTimeGetCurrent(); //在这写入要计算时间的代码 // do something CFAbsoluteTime end = CFAbsoluteTimeGetCurrent(); NSLog(@"%f", end - start); 转载于:ht...

  • Given a sorted integer array without duplicates, return the summary of its ranges. For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"]. 代码要求对数组中的元素进行分段。 首先给...

  • Hello,此BAT脚本能够帮助开发者将某目录下全部SQL脚本按文件名称依次在指定数据库中批量执行。不用忍受powershell invoke-sqlcmd 的笨重。在指执行时多一种选择。 bat文件 @echo off @REM ******** ******** General Batch for Starting SQL...

  • Description 设有一个n×m(小于100)的方格(如图所示),在方格中去掉某些点,方格中的数字代表距离(为小于100的数,如果为0表示去掉的点),试找出一条从A(左上角)到B(右下角)的路径,经过的距离和为最小(此时称为最小代价),从A出发的方向只能向右,或者向下。 Sample Input 4 4 4 10 7 0...

  • importjava.security.SecureRandom;importjavax.crypto.Cipher;importjavax.crypto.SecretKey;importjavax.crypto.SecretKeyFactory;importjavax.crypto.spec.DESKeySpec;//结果与DES算...

  • 题目:替换空格 请实现一个函数,把字符串 s 中的每个空格替换成"%20"。 输入:s = "We are happy." 输出:"We%20are%20happy." 限制: 0 <= s 的长度 <= 10000 解题: 时间复杂度:O(n) 空间复杂度:O(n) class Solution { public:s...

  • 在C++11标准库中,string.h已经添加了to_string方法,方便从其他类型(如整形)快速转换成字面值。 例如: for (size_t i = 0; i < texArrSize; i++)RTX_Shader.SetInt(string("TexArr[") + to_string(i) + "]", 7 + i);...

  • Ubuntu 14.04安装并升级之后,变成楷体字体非常难看,我昨天搞了一晚上,终于理了个头绪,这里整理一下。 经过网上调研,大家的一致看法是,使用开源字体库文泉驿的微黑字体效果比较理想,甚至效果不输windows平台的雅黑字体。下面我打算微黑来美化Ubuntu 14.04. 1.安装文泉驿微黑字体库 sudo aptitude...

  • 使用string时发现了一些坑。 我们知道stl 容器并不是线程安全的,所以在使用它们的过程中往往需要一些同步机制来保证并发场景下的同步更新。 应该踩的坑还是一个不拉的踩了进去,所以还是记录一下吧。 string作为一个容器,随着我们的append 或者 针对string的+ 操作都会让string内部的数据域动态增加,而动态增加的...

  • vue中安装wangEditor    cnpm install wangeditor 创建公用组件:在src/vue/components文件夹中创建wangEditor.vue