我在包含大型日志文件的文件夹中有一系列文件
-20180907 1229 debug.log -20180907 1229 system.log
我想编写一个PowerShell脚本以将其归档。这是我的脚本:
dir *.log | % {
$archive = '"' + $_.Name + '.7z"'
$archive
$source = '"' + $_.Name + '"'
$source
&"C:\Program Files\7-Zip\7z.exe" -mx9 a -t7z $archive $source -WhatIf
}
但是,当我运行它时,我得到以下输出:
"-20180907 1229 debug.log.7z" "-20180907 1229 debug.log" 7z.exe : At C:\Users\User\Temporary\Test 7z\archive-logs.ps1:6 char:5 + &"C:\Program Files\7-Zip\7z.exe" -mx9 a -t7z $archive $source + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Command Line Error: Unknown switch: -20180907 1229 debug.log.7z "-20180907 1229 system.log.7z" "-20180907 1229 system.log" 7z.exe : At C:\Users\User\Temporary\Test 7z\archive-logs.ps1:6 char:5 + &"C:\Program Files\7-Zip\7z.exe" -mx9 a -t7z $archive $source + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Command Line Error: Unknown switch: -20180907 1229 system.log.7z
即使我将文件名用双引号引起来,它也显示为7-Zip忽略了双引号。
有什么想法吗?
我尝试了此变体(用单引号引起来的文件名):
dir *.log | % {
$archive = "'" + $_.Name + ".7z'"
$archive
$source = "'" + $_.Name + "'"
$source
&"C:\Program Files\7-Zip\7z.exe" -mx9 a -t7z $archive $source
}
这一次我得到以下输出:
'-20180907 1229 debug.log.7z' '-20180907 1229 debug.log' 7-Zip 18.05 (x64) : Copyright (c) 1999-2018 Igor Pavlov : 2018-04-30 Open archive: '-20180907 1229 debug.log.7z' -- Path = '-20180907 1229 debug.log.7z' Type = 7z Physical Size = 32 Headers Size = 0 Solid = - Blocks = 0 Scanning the drive: 7z.exe : At C:\Users\User\Temporary\Test 7z\archive-logs-B.ps1:6 char:5 + &"C:\Program Files\7-Zip\7z.exe" -mx9 a -t7z $archive $source + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError WARNING: The system cannot find the file specified. '-20180907 1229 debug.log' 0 files, 0 bytes Updating archive: '-20180907 1229 debug.log.7z' Add new data to archive: 0 files, 0 bytes Files read from disk: 0 Archive size: 32 bytes (1 KiB) Scan WARNINGS for files and folders: '-20180907 1229 debug.log' : The system cannot find the file specified. ---------------- Scan WARNINGS: 1
它创建的文件类似'-20180907 1229 debug.log.7z'
,但没有内容。
答案 0 :(得分:1)
尝试一下:
$executable = "C:\Program Files\7-Zip\7z.exe"
dir *.log | % {
$archive = "$($_.Name).7z"
$archive
$source = $_.Name
$source
$oneliner = "a",".\$($archive)",".\$($source)", "-mx4"
& $executable @oneliner
}
答案 1 :(得分:0)
我认为它不需要用引号引起来。
如果我执行以下操作怎么办?
dir *.log | % { &"C:\Program Files\7-Zip\7z.exe" -mx9 a -t7z "$_.7z" $_ }