[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文件操作] 将剪贴板中的内容保存为文件

可否将系统剪贴板中的内容保存为文件?例如剪贴板中为文字,则保存为文本文件;若剪贴板中为图片,则保存为jpg。保存在桌面。
我是小菜菜……

用命令行工具 nircmd

clipboard [Action] [Parameter]

Allows you to set a value into the clipboard and clear the clipboard.

[Action] may contain one of the following values:

  • set - set the specified text into the clipboard.
  • readfile - set the content of the specified text file into the clipboard.
  • clear - clear the clipboard.
  • writefile - write the content of the clipboard to a file. (text only)
  • addfile - add the content of the clipboard to a file. (text only)
  • saveimage - Save the current image in the clipboard into a file. The following file formats are supported: .bmp, .gif, .jpg, .png, .tiff Only works on computers with GDI+ installed (On XP/2003/Vista, GDI+ is installed as a part of the operating system).


Examples:
clipboard set "123456"
clipboard set ~$folder.desktop$
clipboard set ~$folder.start_menu$
clipboard readfile "c:\temp\info1.txt"
clipboard addfile "c:\temp\clip1.txt"
clipboard clear
clipboard saveimage "c:\temp\clip01.png"
clipboard saveimage "c:\temp\clip01.gif"


[ 本帖最后由 tireless 于 2008-12-22 22:23 编辑 ]

TOP

这个工具我以前也听说过,但是帮助文件全是英文,水平有限,可以翻译一下吗?
我是小菜菜……

TOP

回复 2楼 的帖子

请问我应该如何调用这个文件呢?运行该批处理时提示“'clipboard' 不是内部或外部命令,也不是可运行的程序或批处理文件。”
我是小菜菜……

TOP

和批处理文件放到同一个文件夹下就行。
此贴应放到代码咨询与讨论区吧。

TOP

返回列表