PowerShell删除除root中的一个文件和子文件夹中的一个文件之外的所有其他内容

问题描述 投票:1回答:1

我需要删除除根文件夹中的一个文件和子文件夹中的另一个文件之外的所有文件和文件夹。此外,文件名作为参数传递给脚本,如逗号分隔字符串,如'file1.txt,Subfolder \ file2.txt'。

我试图做这样的事情,

$Path = "C:\\Delete\\"
$Argument= "file1.txt,Subfolder\\file2.txt"
$ExcludedFiles = [string]::Join(',', $Argument);
$files = [System.IO.Directory]::GetFiles($Path, "*", "AllDirectories")

foreach($file in $files) { 
    $clearedFile = $file.replace($Path, '').Trim('\\');

    if($ExcludedFiles -contains $clearedFile){
        continue;
    } 

    Remove-Item $file
}

通过这样做,所有文件夹都保留,所有文件都被删除。任何人都可以建议我应该怎么做才能做到这一点,因为我很难做到这一点。

powershell build-automation
1个回答
0
投票

完成它的最简单方法是使用qazxsw poi中的qazxsw poi参数。

以下是排除文件的示例:

-Exclude

使用通配符排除具有特定扩展名的文件:

get-childitem

以递归方式获取所有文件并排除相同:

Get-ChildItem C:\Path -Exclude SampleFileToExclude.txt| Remove-Item -Force

在同一命令中根据您的意愿排除项目列表:

Get-ChildItem C:\Path -Exclude *.zip | Remove-Item -Force

你甚至可以使用数组和where条件:

Get-ChildItem C:\Path -Recurse -Exclude *.zip | Remove-Item -Force

然后你可以删除使用Get-ChildItem C:\Path -Recurse -Exclude *.zip, *.docx | Remove-Item -Force

希望能帮助到你。

© www.soinside.com 2019 - 2024. All rights reserved.