public/New-FootballFixutreFile.ps1

function New-FootballFixutreFile {
    <#
        .EXAMPLE
            New-FootballFixutreFile -Competition eng-premier -Date 2025-02-01 -Type match-analysis -Path C:\Users\colin\Desktop\sportsmonk
             
        #>

    [CmdletBinding()]
    param(

        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [string]$Competition,

        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [string]$Date,
        
        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [string]$Path,

        [Parameter(Mandatory=$true)]
        [ValidateSet('match-analysis','match-card-code','twitter-summary-code')]
        [string]$Type

    )
    process{

        $ErrorActionPreference = 'Stop'

        try {

            $FixtureFolderNames = Get-FootballFixtureFolderName -Competition $Competition -Date $Date -Path $Path

            switch ($Type) {

                'match-card-code' {

                    $NewsFolders =@('multi-media')

                }
                'twitter-summary-code' {

                    $NewsFolders =@('multi-media')

                }
                default {

                    $NewsFolders =@('pre-match-news','post-match-news')

                }
                
            }

            foreach ($FixtureFolderName in $FixtureFolderNames) {

                Write-Warning "processing $FixtureFolderName."

                foreach ($NewsFolder in $NewsFolders) {

                    $FullPath = "$Path\fixture-artifact\$NewsFolder\$Competition\$Date\$FixtureFolderName"
                    $FullPathExists = Test-Path -Path $FullPath

                    if ($FullPathExists) {
                    
                        $FileToCreate = "$FullPath\$FixtureFolderName-$Type.txt"
                        $FileToCreateExists = Test-Path -Path $FileToCreate

                        if (!$($FileToCreateExists)) {

                            New-Item -Path $FileToCreate -Verbose | Out-Null

                        }
                        else {

                            Write-Warning -Message "File exists: $FileToCreate."
                            
                        } # if

                    }
                    else {

                        Write-Warning -Message "Folder exists: $FullPathExists."

                    } # if
            
                } # foreach

            } # foreach

        }
        catch {

            $($FixtureChildItem.FullName)
            $_.Exception.Message

        } # trycatch

    } # process

} # function