Link to home
Start Free TrialLog in
Avatar of philsivyer
philsivyer

asked on

Ruby - InputBox

Hello
Is it possible to get user input by using an Input Box e.g
Does a file exists - my code is as follows ........
puts "The file you are looking for does exist" if File.exist?("c:/Phil.txt")
.... then maybe get a message box to give the answer
I would like to get the user to enter c:/Phil.txt - is this possible and how

Regards
Phil

Avatar of Gertone (Geert Bormans)
Gertone (Geert Bormans)
Flag of Belgium image

what do you mean with mesage box?
is this command line, web based or do you envisage to build a gui?
Avatar of philsivyer
philsivyer

ASKER

Command Line
ASKER CERTIFIED SOLUTION
Avatar of Gertone (Geert Bormans)
Gertone (Geert Bormans)
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
note that you can use the FileTest module for checking the existence of the file

#puts the question
puts "Add a filename here:"

# read a line from the commandline
str1 = STDIN.gets

#test for file existence
flag = FileTest::exists?(str1.strip)
#echo
if flag then
      puts "#{str1.strip} does exist"
else
      puts "#{str1.strip} does NOT exist"
end

cheers

Geert
Geert
When I run the code it opens a command screen and does not allow me to make an entry.
Phil
try running it in a commandscreen already
ruby mycode.rb
OK - it does not like it from ScITE - any ideas?

Phil
I wouldn't know how to get that working from within SciTE
I will look at it tonight
Thanks
SciTE is for development by the way, is there a reason why you want to launch a program this way, other than for debugging?
Not really - I guess it's easier for me to cut and paste etc - and visually it looks easier on the eye.

Phil
No comment has been added to this question in more than 21 days, so it is now classified as abandoned.

I will leave the following recommendation for this question in the Cleanup Zone:
Accept gertone's comment 20374555 as answer

Any objections should be posted here in the next 4 days. After that time, the question will be closed.

wesgarrison Experts Exchange Cleanup Volunteer
Forced accept.

Computer101
EE Admin