批量改名

;~ COM Object: Shell.Application [Folder Object]
;~ Purpose: Access/Manipulate Folders
;~ System Requirements: General
;~ Documentation Link: Shell Object, Folder Object
;~ Code Example: Rename Folders/Files without using FileCopy(Dir)

;// Create an example directory
dir :=   A_Desktop "Example_Dir"
FileCreateDir, %dir%Temp
Loop 9
   FileAppend, , %dir%_%A_Index%.txt
Run %dir%
MsgBox, 262144, , Press OK to add Prefix to files...

;// Loop through the folder items. Add a Prefix to the files.
objFolder :=   ComObjCreate("Shell.Application").NameSpace(dir)
for item in objFolder.items
   if   Not item.isFolder
      item.name :=   "File" item.name

;// Delete example directory
MsgBox Deleting Directory...
FileRemoveDir, %dir%, 1

给TA捐赠
共{{data.count}}人
人已捐赠
其他

批量扰乱文件名

2020-3-9 2:47:44

其他

批量文本通过正则提取相应信息进行数据整理实例

2020-3-9 2:49:44

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索