作者:158文章网日期:
返回目录:作文写作
搜索的时候有个搜索范围的,在里面选择A文件夹就可以了,用平常搜索的工具就可以
这个回答怎么这么多人不点赞,正合我意,赞一个!
原理
利用rundll32命令 ,调用windows图片e799bee5baa6e58685e5aeb9364传真查看器
autoit脚本做个简单工具 源代码
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("WinTitleMatchMode", 2)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("写给sky__lie的小工具 by ", 435, 230, 192, 124)
GUISetFont(14, 400, 0, "MS Sans Serif")
$Label1 = GUICtrlCreateLabel("路径", 16, 32, 44, 28)
$Input1 = GUICtrlCreateInput("", 16, 72, 233, 32)
$Label2 = GUICtrlCreateLabel("编号", 16, 128, 44, 28)
$Input2 = GUICtrlCreateInput("", 16, 168, 105, 32)
$Label3 = GUICtrlCreateLabel("扩展名", 144, 128, 64, 28)
$Input3 = GUICtrlCreateInput("jpg", 144, 168, 105, 32)
$Button1 = GUICtrlCreateButton("预览", 280, 24, 137, 57)
$Button2 = GUICtrlCreateButton("关闭", 280, 168, 139, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Run("rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen " & GUICtrlRead($Input1) & "\" & GUICtrlRead($Input2) & "." & GUICtrlRead($Input3))
Case $Button2
WinKill("图片和传真查看器", "")
EndSwitch
WEnd