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

I'm looking for an elegant way in vimscript to check if file exists in the current directory in a function.

I came up with this but not sure if that's the most elegant solution (I'll be setting vim option if it exists) - is there any way of not having to do another comparison of the filename - maybe use different vim built-in function(?):

:function! SomeCheck()
:   if findfile("SpecificFile", ".") == "SpecificFile"
:       echo "SpecificFile exists"
:   endif
:endfunction
share|improve this question

2 Answers

up vote 27 down vote accepted

With a bit of searching in vim man I've found this, which looks much better that the original:

:function! SomeCheck()
:   if filereadable("SpecificFile")
:       echo "SpecificFile exists"
:   endif
:endfunction
share|improve this answer
1  
What if SpecificFile exists, but is not readable for current user. Maybe findfile is better. – ppan Apr 12 '12 at 9:53
The help for filereadable mentions you can use glob if you don't care about readability. – Sumudu Fernando Apr 28 '12 at 21:20
:h functions

will give you the exhaustive list of available functions when scripting vim.

share|improve this answer
4  
It is sometimes difficult to find the right function in such a list if you don't have the right “keyword” to search for (and you don't really want to read end to end). As such I don't think this is a very good answer. – Martin Nov 16 '11 at 8:32
In this case, I expect the OP to be able to do a /file. Moreover, the list (not the help file) is not that long to read. – Luc Hermitte Nov 16 '11 at 10:31
1  
Yes, but when you answer in StackOverflow, you should give the full answer, not tell the OP how to find it themselves. See meta.stackoverflow.com/questions/98959 – Lambda Fairy Nov 19 '11 at 4:56
1  
Hum ... this is very egocentric of SO to be THE source. I'm not sure people with a long (in time) history in answering questions will loose their time on meta. Eventually, they (we?) strive for real new challenges, and when something is trivial, teaching how to find the trivial answer is the real answer. However, re-reading the question, I must admit my mistake, it seems the OP knew how to find the built-in functions. – Luc Hermitte Nov 21 '11 at 10:46

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.