希望有人看看我的脚本并告诉我我在哪里搞砸了。
这是一个压缩日志文件的脚本,然后我想将它们移动到一个将通过网络共享的新文件夹中。现在我只是想获得正确使用 7zip 压缩文件的部分。
我对 VB 很陌生(比如 2 天),所以我认为有一些语法问题。
脚本在下面找到,提前感谢您的所有建议和帮助
Option Explicit
WScript.Echo "Press to start zipping log files."
Dim objFile, objPath, objFolder, Command, PathLogs, RetVal
Dim objFSO: Set objFSO = CreateObject("Scripting.FileSystemObject")
Dim objShell: Set objShell = CreateObject("WScript.Shell")
PathLogs = "C:\Testscripts\testfolder\" 'This path just has some test logs
' 遍历日志并压缩并移动每个文件(如果需要,您可以只移动带有 '.log' 扩展名的文件)
Set objPath = objFSO.GetFolder(PathLogs)
For Each objFile In objPath.Files
If (LCase(objfso.GetExtensionName(objFile)) = "log") Then
Wscript.Echo objFile.Name
' zip and move files
'Command = """C:\Program Files\7-zip\7z.exe"" -m -ex """ & PathLogs & \objFile.Name objfso.GetBaseName(objFile) & "*.zip"" """ & PathLogs & objFile.Name & """"
Command = ""C:\Program Files\7-zip\7z.exe"" a -m -ex " & PathLogs & "" & objFile.Name & ".zip " & PathLogs & "" & objFile.Name & "
WScript.Echo "Command: " & Command
RetVal = objShell.Run(Command,0,true)
End If
Next
WScript.Echo "Zip Successful."