按键精灵 移动目录
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按键精灵 移动目录相关的知识,希望对你有一定的参考价值。
Function moveToWorkPath()
//检测文件是否存在 不存在直接退出
inputPath=APKParentPath&"\\app\\build\\outputs\\apk"
outPutPath = InputBoxFilePath & "\\apk"
If Lib.文件.判断文件夹是否存在(inputPath) Then
Set fso = CreateObject("Scripting.FileSystemObject")
If Plugin.File.IsFileExist(outPutPath) Then
Fso.DeleteFolder outPutPath
End If
//移动文件到新的地址
//True:覆盖,False:不覆盖
Fso.CopyFolder inputPath, outPutPath, True
Delay 3000
TracePrint inputPath
//删除源文件
Call Plugin.File.DeleteFolder(inputPath)
Else
TracePrint "不用复制啦 复制过啦"
End If
End Function
以上是关于按键精灵 移动目录的主要内容,如果未能解决你的问题,请参考以下文章