独占删除以删除大多数文件树但保留特定文件树

独占删除以删除大多数文件树但保留特定文件树

我正在尝试创建一个脚本,当收到特定文件时,它会解压并查看解压后的文件并删除所有内容,除了两个或三个特定文件夹及其内容。然后重新压缩。我现在的压缩、解压和删除工作正常,但执行删除时,它会查看所有内容,而不仅仅是文件夹的顶层。有什么建议吗?这是我目前的脚本:

$filesToZip="c:\temp\powertest\*" 
$zipfilename = "c:\temp\ziptest.zip" 
$originalzipfile = "c:\temp\powertest.zip"
$extractionlocation = "c:\temp\"


function Expand-ZIPFile($file, $destination)
{
    $shell = new-object -com shell.application
    $zip = $shell.NameSpace($file)
    foreach($item in $zip.items())
        {
        $shell.Namespace($destination).copyhere($item)
        }
}
Expand-ZIPFile –File $originalzipfile –Destination $extractionlocation

# replace "New folder" and "New Text Document.txt" with folders and documents you dont want deleted specifiying the file extensions seperated by commas
Remove-Item -recurse $filesToZip -exclude 'New folder' , 'New Text Document.txt' 

$value = $null

 if(-not (test-path($zipfilename)))
 {
      set-content $zipfilename $value 
           #("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
      (dir $zipfilename).IsReadOnly = $false    

 }

 $shellApplication = new-object -com shell.application
 $zipPackage = $shellApplication.NameSpace($zipfilename)
 $files = dir $filesToZip

 foreach($file in $files) 
 { 
      $zipPackage.CopyHere($file.FullName)
      Start-sleep -milliseconds 500
 }
remove-item -recurse "C:\temp\powertest\" 

答案1

如果您只想删除顶层文件夹中的项目,则应-recurse从命令中删除该选项Remove-Item

https://technet.microsoft.com/en-us/library/hh849765.aspx

答案2

此外,很多时候您可以将 -include 或 -exclude 开关与命令一起使用,这可能会帮助您说只获取这些文件或获取所有但这些特定的文件。

相关内容