ARGV parameters with spaces
I'm trying to pass ARGV parameters with spaces (a long dir name with spaces). I've tried all sorts of things and no luck. Any ideas?
Answer:
Enter the arguments under Run / Arguments. For spaces, you quote the filename. For example:
"c:\test 1\test 2.txt" /a
This will contain:
$ARGV[0]
c:\test 1\test 2.txt
(without the quotes)
$ARGV[1]
/a
22.06.2003. 10:24
This article hasn't been commented yet.
Write a comment