scubasteve1281 Posted January 20, 2010 Posted January 20, 2010 I need to add .txt to the of file that is being named using a varaible @Yday and @Year I can't seem to get the syntax correct. the script creates the file fine but as soon as I try to add the .txt the end of the variable it creates a syntax $sFile = "C:\program files\FIC\Logs\" & @YDAY & @YEAR ".txt" If Not FileExists($sFile) Then RunWait(@ComSpec & " /c " & "exf.exe -cv ""C:\Program Files\fic\Baseline\Baseline.txt"" -d c:\ >""" & $sFile) error
99ojo Posted January 20, 2010 Posted January 20, 2010 (edited) Hi,There is a & missing:$sFile = "C:\program files\FIC\Logs\" & @YDAY & @YEAR & ".txt" ;-))Stefan Edited January 20, 2010 by 99ojo
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now