Hello,
I'm trying to create an expression for the filename to import into SQL Server.
The filename is as follows: transport_01_08_2020.TXT
The current expression logic I have is:
"C:\\Drops-MIS\\F&F Import - dropShip\\transport_" + RIGHT("0" + (DT_STR, 2, 1252) DATEPART("mm" , GETDATE()), 2) + "_" + RIGHT("0" + (DT_STR, 2, 1252) DATEPART("dd" , GETDATE()), 2) + "_" + (DT_STR, 4, 1252) DATEPART("yyyy" , GETDATE()) ".TXT"
I tried this expression but received the following error:

Do I need an escape character for hyphen (-) and ampersand (&)? If so, how do I add it to the logic I have?