File size: 376 Bytes
19d6abb | 1 2 3 4 5 6 7 8 9 10 11 12 | $workdir = "e:\New folder (2)\future\data\risk_models"
$files = @('cardiovascular_model.pkl', 'diabetes_model.pkl', 'hypertension_model.pkl')
foreach ($file in $files) {
$filepath = Join-Path $workdir $file
New-Item -ItemType File -Path $filepath -Force | Out-Null
Write-Host "Created: $file"
}
Write-Host "`nFinal structure:"
Get-ChildItem -Path $workdir -Name
|