Powershell 以创建文件夹(如果不存在)



>我正在尝试解析文件夹中的文件名并将部分文件名存储在变量中。 检查! 然后,我想获取其中一个变量并检查该文件夹名称是否存在于其他位置,以及它是否没有创建它。 如果我使用 Write-Host文件夹名称是有效路径,并且文件夹名称不存在,但在执行脚本时仍然没有创建文件夹。

如果文件夹不存在,我应该怎么做才能创建它?

$fileDirectory = "C:Test"
$ParentDir = "C:Completed"
foreach ($file in Get-ChildItem $fileDirectory){
    $parts =$file.Name -split '.'
    $ManagerName = $parts[0].Trim()
    $TwoDigitMonth = $parts[1].substring(0,3)
    $TwoDigitYear = $parts[1].substring(3,3)
    $FolderToCreate = Join-Path -Path $ParentDir -ChildPath $ManagerName
    If(!(Test-Path -path "$FolderToCreate"))
    {
        #if it does not create it
        New-Item -ItemType -type Directory -Force -Path $FolderToCreate
    }
}
if (!(Test-Path $FolderToCreate -PathType Container)) {
    New-Item -ItemType Directory -Force -Path $FolderToCreate
}

尝试使用 -Force 标志 - 当每个子目录不存在时,它会检查它们,它只会创建它并转到下一个子目录,并且永远不会抛出错误。

在下面的示例中,您需要 7 个嵌套的子目录,只需一行即可创建不存在的任何人。

您还可以根据需要多次重新运行它,并且它的设计永远不会抛出错误!

New-Item -ItemType Directory -Force -Path C:PathThatMayOrMayNotExist

其他解决方案:

if (![System.IO.Directory]::Exists($FolderToCreate ))
{
     New-Item -ItemType Directory -Force -Path $FolderToCreate
}

单行。如果它已经存在,则不执行任何操作。

[IO.Directory]::CreateDirectory($Path)

相关内容

  • 没有找到相关文章

最新更新