(CLI) Target All Ase.Files in the Folder

Is there a way to target ‘any file with the .ase extension in the same folder as the batch file’ for CLI exporting?
When you work with many files, thinking about their filenames becomes kinda a chore.

Here is my example, with *.ase being the wildcard filename.

:: BATCH SCRIPT START
@ECHO OFF

@set ASEPRITE="C:\Program Files (x86)\Steam\steamapps\common\Aseprite\aseprite.exe"

%ASEPRITE% -b "*.ase" --ignore-empty --filename-format '{title}.{extnsion}' --save-as png/output.png

If there is no simple solution that ‘just works’, then I’ll stick to the old method. Thank you!