I’m currently creating a new (job output mask) that will be able to files multiple PDFs on a daily bases in a directory. However, I will like to have them organize first by year, month and then by day.
My current naming is:
${system.time,‘yyyy’}${system.time,‘MM’}${system.time,‘dd’}${document.metadata.PONumber}${document.metadata.BillToNumber}${document.metadata.ProductDescription}_.${file.ext}
However since the ${system.time,‘yyyy’} already exist from yesterday when I run it today I will get an error telling me that the destination already exit.
Is there a command that will ignore ${system.time,‘yyyy’} if already exist?