Date/Get-FileDate.ps1

function Get-FileDate {
    [Alias('ftoday')]
    [CmdletBinding()]
    [OutputType([string])]
    param()
    Get-Date -Format 'FileDate'
}