Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any ruby class / method where I could pass "a full path" e.g. home/me/a_file.txt to identify whether it is a valid file path?

Thanks in advance.

share|improve this question
My advice is to spend 10 minutes reading all the methods in FileUtils and File classes. It will save you a lot of time in the long run! – Alain Dec 21 '11 at 12:54
Can you clarify if you want to know "whether it is a valid file path" or "whether it is a path to a file that exists"? – Paul Annesley Dec 21 '11 at 12:58

2 Answers

up vote 8 down vote accepted

Check out Pathname and in particular Pathname#exist?.

Edit: File and its FileTest module are perhaps simpler / more direct, but I find Pathname a nicer interface in general.

share|improve this answer
thanks Paul, Pathname is what I needs. Somehow i am not able to find "File" and "FileTest" are accepting "FULL" path argument. Thanks again – iwan Jan 10 '12 at 4:45

File.exist?(filename) and File.file?(filename)

share|improve this answer
1  
just File.file? should be enough, no? Docs: "Returns true if the named file exists and is a regular file" – Pavel K. Feb 26 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.