Alex Lau Posted November 23, 2006 Posted November 23, 2006 (edited) I want to copy a file to c:\windows\system32\drivers\etc\, but the "@SystemDir\drivers\etc\" path is invalid, cause the "@SystemDir" is not support a trailing backslash, so how can i do this? Any suggestion will be appreciate! Edited November 23, 2006 by Alex Lau
NeoFoX Posted November 23, 2006 Posted November 23, 2006 (edited) I want to copy a file to c:\windows\system32\drivers\etc\, but the "@SystemDir\drivers\etc\" path is invalid, cause the "@SystemDir" is not support a trailing backslash, so how can i do this? Any suggestion will be appreciate!Perhaps @Systemdir & "\drivers\etc\" will workNeo Edited November 23, 2006 by NeoFoX [center][font="Arial"]--- The Neo and Only --- [/font][font="Arial"]--Projects---[/font]Image to Text converterText to ASCII converter[/center]
Alex Lau Posted November 23, 2006 Author Posted November 23, 2006 Perhaps @Systemdir & "\drivers\etc\" will workNeoThanks !!
Alex Lau Posted November 24, 2006 Author Posted November 24, 2006 Perhaps @Systemdir & "\drivers\etc\" will workNeoshould be : $dirid=@SystemDir then $dirid & "\drivers\etc" tested with successful
Moderators SmOke_N Posted November 24, 2006 Moderators Posted November 24, 2006 should be : $dirid=@SystemDir then $dirid & "\drivers\etc" tested with successful Why?@SystemDir & "\drivers\etc..." is the same. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Alex Lau Posted November 24, 2006 Author Posted November 24, 2006 Why?@SystemDir & "\drivers\etc..." is the same.You are right, i made a mistake. Sorry !!
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