An Azure service for ingesting, preparing, and transforming data at scale.
Maybe you can try something like this, I have tried this to add the current time (YYYYMMDD) in folder path as well as file name. Instead of replacing you can create your expected folder path.
@markus.bohland@hotmail.de (pipeline().parameters.Par_LoadDetails.DstFileName),'_',formatDateTime(utcnow(),'yyyyMMdd'),'.parquet')
@markus.bohland@hotmail.de (pipeline().parameters.Par_LoadDetails.DstFolderPath,'/',formatDateTime(pipeline().TriggerTime,'yyyyMMdd'))
Also you can refer the below link for your reference,
https://learn.microsoft.com/en-us/azure/data-factory/tutorial-incremental-copy-partitioned-file-name-copy-data-tool
Hope this helps.