[办公]用ahk写的一个桌面整理软件

有的人可能喜欢把临时文件放在桌面,这里制作了一个简陋的桌面整理工具。因为贴在桌面这个功能和桌面的类名有关联,非win10用户可能出现bug,导致脚本不能贴在桌面上,需要自己修改一下。

有的人可能喜欢把临时文件放在桌面,这里制作了一个简陋的桌面整理工具。因为贴在桌面这个功能和桌面的类名有关联,非win10用户可能出现bug,导致脚本不能贴在桌面上,需要自己修改一下。

一个简陋的桌面整理脚本,https://github.com/fuwt/sdesktop

非win10用户因为桌面的类名不一样,可能出现bug,导致脚本不能贴在桌面上,需要自己修改一下。[办公]用ahk写的一个桌面整理软件

  1. SetWorkingDir %A_Desktop%
  2. #SingleInstance, Force
  3. SetWinDelay, -1
  4. SetControlDelay, -1
  5.  
  6. ; 创建GUI
  7. x0 := A_ScreenWidth - 435
  8. WinGet, hDesktop, ID, ahk_class Progman
  9. ControlGet, hDesktopIcon, Hwnd,, SysListView321, ahk_id %hDesktop%
  10. Control, Hide, ,,ahk_id %hDesktopIcon%
  11. BoxW := A_ScreenWidth / 4.5
  12. BoxH := A_ScreenHeight / 4.5
  13. Gui, +ToolWindow +LastFound -Caption -DPIScale +Parent%hDesktop%
  14. Gui, Color, ffeeee
  15. Gui, Margin, 0, 0
  16. Gui, Add, Picture, w%BoxW% h%BoxH%, %A_ScriptDir%\img\Background.png
  17. ; Gui, Add, GroupBox, x0 y+20 w384 r10 cFFFFFF, 常用
  18. Gui, Font, s12
  19. Gui, Add, ListView, w%BoxW% y+10 vMyListView1 gMySubroutine, 名称|修改时间|路径|EXT
  20. Gui, Add, ListView, w%BoxW% y+10 vMyListView2 gMySubroutine, 名称|修改时间|路径|EXT
  21. Gui, Add, ListView, w%BoxW% y+10 vMyListView3 gMySubroutine, 名称|修改时间|路径|EXT
  22. Gui, Add, ListView, w%BoxW% y+10 vMyListView99 gMySubroutine, 名称|修改时间|路径|EXT
  23. Gui, Font, s57
  24. Gui, Add, Text, x10 y50 w364 Center cFFFFFF BackgroundTrans +HwndTimeStr, Time
  25. Gui, Font, s20
  26. Gui, Add, Text, x10 y150 w364 Center cFFBBBB BackgroundTrans +HwndDateStr, Time
  27. WinSet, TransColor, FFEEEE
  28. WinGetPos,,,,h,ahk_class Shell_TrayWnd
  29. h := A_ScreenHeight-h
  30. ; Gui, Show, x0 y0 w%A_ScreenWidth% h%h% NA
  31. Gui, Show, x%x0% y10
  32. shell := ComObjCreate("shell.application")
  33. shell.toggledesktop()
  34. Menu, Tray, Add, 隐藏桌面图标, hideDeskIcon
  35. Menu, MyContextMenu, Add, 删除, DeleteFile
  36. Menu, MyContextMenu, Add, 复制, CopyFile
  37. Menu, MyContextMenu, Add, 移动, MoveFile
  38. loop
  39. {
  40. IniRead, OutputVar, %A_ScriptDir%\config.ini, common, %A_Index%, 0
  41. if (OutputVar = 0)
  42. break
  43. if (SubStr(OutputVar,0) != "\")
  44. OutputVar .= "\"
  45. Name := StrSplit(OutputVar, "|")[1]
  46. Menu, CopyFile2, Add, %Name%, CopyFile2Common
  47. Menu, MoveFile2, Add, %Name%, MoveFile2Common
  48. }
  49. Menu, MyContextMenu, Add, 复制到常用文件夹, :CopyFile2
  50. Menu, MyContextMenu, Add, 移动到常用文件夹, :MoveFile2
  51.  
  52.  
  53. ; 生成图标列表
  54. arr := [.xls,.xlsx,.doc,.docx,.ppt,.pptx,.txt,.ahk,.jpg,.png,.pdf,.psd]
  55. Icons := {}
  56. ImageListID := IL_Create(50)
  57. for item in arr
  58. {
  59. ext := arr[item]
  60. RegRead, OutputVar, HKEY_CLASSES_ROOT, %ext%
  61. RegRead, OutputVar, HKEY_CLASSES_ROOT\%OutputVar%\DefaultIcon
  62. Icons[SubStr(ext,2)] := A_Index
  63. img := StrSplit(OutputVar, "`,")
  64. if !OutputVar
  65. IL_Add(ImageListID, "shell32.dll", 1)
  66. else
  67. IL_Add(ImageListID, img[1], img[2])
  68. }
  69. count := 0
  70. for k,v in Icons
  71. count++
  72. Icons["AADIR"] := count + 1
  73. IL_Add(ImageListID, "shell32.dll", 4)
  74.  
  75. ; 开始
  76. GoSub, hideDeskIcon
  77. GoSub, SetDate
  78. GoSub, SetTime
  79. GoSub, FillGrid
  80. SetTimer, SetTime, 1000
  81. SetTimer, SetDate, 1000000
  82. SetTimer, ReFlush, 1000
  83. Return
  84.  
  85. ; 标签
  86. SetTime:
  87. FormatTime, OutputVar, %A_Now%, HH:mm:ss
  88. GuiControl, Text, %TimeStr%, %OutputVar%
  89. Return
  90. SetDate:
  91. FormatTime, OutputVar, %A_Now%, yyyy/MM/dd ddd
  92. GuiControl, Text, %DateStr%, %OutputVar%
  93. Return
  94. ReFlush:
  95. if !BacT
  96. BacT := ModifyT
  97. FileGetTime, ModifyT, %A_Desktop%
  98. if ModifyT != %BacT%
  99. GoSub FillGrid
  100. BacT := ModifyT
  101. Return
  102.  
  103. FillGrid:
  104. loop 3
  105. {
  106. LsN := A_Index
  107. Gui, ListView, MyListView%LsN%
  108. GuiControl, -Redraw, MyListView%LsN%
  109. LV_Delete()
  110. IniRead, path, %A_ScriptDir%\config.ini, grid%A_Index%, path
  111. IniRead, exts, %A_ScriptDir%\config.ini, grid%A_Index%, exts
  112. LV_SetImageList(ImageListID)
  113. Loop, Files, *.*, DF
  114. {
  115. ext := A_LoopFileExt
  116. if A_LoopFileAttrib contains H,R,S
  117. continue
  118. if A_LoopFileAttrib = D
  119. ext := "AADIR"
  120. if ext not in %exts%
  121. continue
  122. collected .= A_LoopFileName . "`,"
  123. FormatTime, OutputVar, %A_LoopFileTimeModified%, ShortDate
  124. LV_Add("icon" . Icons[ext],A_LoopFileName, OutputVar,A_LoopFileLongPath,ext)
  125. LV_ModifyCol(1,BoxW-120)
  126. LV_ModifyCol(2)
  127. LV_ModifyCol(3,0)
  128. LV_ModifyCol(4,0)
  129. }
  130. GuiControl, +Redraw, MyListView%LsN%
  131. }
  132. Gui, ListView, MyListView99
  133. GuiControl, -Redraw, MyListView99
  134. LV_Delete()
  135. LV_SetImageList(ImageListID)
  136. Loop, Files, *.*, DF
  137. {
  138. if A_LoopFileAttrib contains H,R,S
  139. continue
  140. if A_LoopFileName in %collected%
  141. continue
  142. if A_LoopFileAttrib = D
  143. ext := "AADIR"
  144. else
  145. ext := A_LoopFileExt
  146. FormatTime, OutputVar, %A_LoopFileTimeModified%, ShortDate
  147. LV_Add("icon" . Icons[ext],A_LoopFileName, OutputVar,A_LoopFileLongPath,ext)
  148. LV_ModifyCol(1,BoxW-120)
  149. LV_ModifyCol(2)
  150. LV_ModifyCol(3,0)
  151. LV_ModifyCol(4,"0 sort")
  152. }
  153. GuiControl, +Redraw, MyListView99
  154. Return
  155. MySubroutine:
  156. if A_GuiEvent = DoubleClick
  157. {
  158. Gui, ListView, %A_GuiControl%
  159. LV_GetText(OutputVar, A_EventInfo, 3)
  160. run % OutputVar
  161. }
  162. Return
  163. GuiContextMenu:
  164. ; ToolTip % A_GuiControl . A_EventInfo
  165. if A_GuiControl contains MyListView
  166. {
  167. RClickControl := A_GuiControl
  168. Menu, MyContextMenu, Show
  169. }
  170. return
  171. showDeskIcon:
  172. Control, Show, ,,ahk_id %hDesktopIcon%
  173. Menu, Tray, Add, 隐藏桌面图标, hideDeskIcon
  174. Menu, Tray, Delete, 显示桌面图标
  175. Return
  176. hideDeskIcon:
  177. Control, Hide, ,,ahk_id %hDesktopIcon%
  178. Menu, Tray, Add, 显示桌面图标, showDeskIcon
  179. Menu, Tray, Delete, 隐藏桌面图标
  180. Return
  181. DeleteFile:
  182. Gui, ListView, %RClickControl%
  183. guicontrol, -redraw, %RClickControl%
  184. n := lv_getcount("s")
  185. loop % n
  186. {
  187. RowNumber := lv_getnext()
  188. LV_GetText(FullPath, RowNumber,3)
  189. LV_Delete(RowNumber)
  190. FileRecycle, %FullPath%
  191. }
  192. guicontrol, +redraw, %RClickControl%
  193. Return
  194. MoveFile:
  195. Gui, ListView, %RClickControl%
  196. FileSelectFolder, OutputVar
  197. guicontrol, -redraw, %RClickControl%
  198. n := lv_getcount("s")
  199. loop % n
  200. {
  201. RowNumber := lv_getnext()
  202. LV_GetText(FullPath, RowNumber,3)
  203. CopyFilesAndFolders(FullPath, OutputVar)
  204. FileDelete, %FullPath%
  205. LV_Delete(RowNumber)
  206. }
  207. guicontrol, +redraw, %RClickControl%
  208. Return
  209. CopyFile:
  210. Gui, ListView, %RClickControl%
  211. FileSelectFolder, OutputVar
  212. guicontrol, -redraw, %RClickControl%
  213. n := lv_getcount("s")
  214. loop % n
  215. {
  216. RowNumber := lv_getnext(RowNumber)
  217. LV_GetText(FullPath, RowNumber,3)
  218. CopyFilesAndFolders(FullPath, OutputVar)
  219. }
  220. guicontrol, +redraw, %RClickControl%
  221. Return
  222. CopyFile2Common:
  223. Gui, ListView, %RClickControl%
  224. guicontrol, -redraw, %RClickControl%
  225. n := lv_getcount("s")
  226. DestPattern := StrSplit(A_ThisMenuItem, "|")[2]
  227. loop % n
  228. {
  229. RowNumber := lv_getnext(RowNumber)
  230. LV_GetText(FullPath, RowNumber,3)
  231. CopyFilesAndFolders(FullPath, DestPattern)
  232. MsgBox % FullPath
  233. }
  234. guicontrol, +redraw, %RClickControl%
  235. Return
  236. MoveFile2Common:
  237. Gui, ListView, %RClickControl%
  238. guicontrol, -redraw, %RClickControl%
  239. n := lv_getcount("s")
  240. DestPattern := StrSplit(A_ThisMenuItem, "|")[2]
  241. loop % n
  242. {
  243. RowNumber := lv_getnext(RowNumber)
  244. LV_GetText(FullPath, RowNumber,3)
  245. CopyFilesAndFolders(FullPath, DestPattern)
  246. FileDelete, %FullPath%
  247. LV_Delete(RowNumber)
  248. }
  249. guicontrol, +redraw, %RClickControl%
  250. Return
  251. CopyFilesAndFolders(SourcePattern, DestinationFolder, DoOverwrite = false)
  252. {
  253. ; 首先复制所有文件 (不是文件夹):
  254. FileCopy, %SourcePattern%, %DestinationFolder%, %DoOverwrite%
  255. ErrorCount := ErrorLevel
  256. ; 现在复制所有文件夹:
  257. Loop, %SourcePattern%, 2 ; 2 表示 "只获取文件夹".
  258. {
  259. FileCopyDir, %A_LoopFileFullPath%, %DestinationFolder%\%A_LoopFileName%, %DoOverwrite%
  260. ErrorCount += ErrorLevel
  261. if ErrorLevel ; 报告每个出现问题的文件夹名称.
  262. MsgBox Could not copy %A_LoopFileFullPath% into %DestinationFolder%.
  263. }
  264. return ErrorCount
  265. }

 

 

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
其他教程

[教程][文件]AutoHotKey系列教程中级教程第四节第一课文件操作简介

2017-8-3 20:41:06

其他案例

[办公]简单工作记录

2017-8-7 16:38:59

0 条回复 A文章作者 M管理员
欢迎您,新朋友,感谢参与互动!
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
私信列表
搜索