how to include current date into path??

I know it is something sort of like this :slight_smile:
$Report= “C:\temp\report-$Date.html”

I need $Report to always have current date in the file name

I also tried
$Report= “C:\temp\report”+$Date+“.html”
which did not work either :slight_smile:

Concatenating paths and variables is more complicated than strings :slight_smile:
I didn’t find any good examples either…

Thank you for your help,
Tom

Nvm, I finally figured out how to search for what I needed.

I found this way:

$Report = “C:\temp\report-$(get-date -f yyyy-MM-dd).html”

from Timestamp on file name using PowerShell - Stack Overflow

Thank you, everyone…

Hi tommls, yes a subexpression is the way to go. A subexpression is an expression that’s part of a larger expression. So by doing $(“Something”) will achieve what you need.