如何检测 Vimscript 中是否存在特定文件?

发布于 2024-09-06 12:47:43 字数 313 浏览 9 评论 0原文

我正在 Vimscript 中寻找一种优雅的方式来检查当前目录中是否存在文件。

我想出了下面的代码,但我不确定这是否是最优雅的解决方案(如果文件存在,我将设置一个 Vim 选项)。有没有什么方法可以不必再次比较文件名?

也许使用与 Vim 不同的内置函数?

:function! SomeCheck()
:   if findfile("SpecificFile", ".") == "SpecificFile"
:       echo "SpecificFile exists"
:   endif
:endfunction

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

I came up with the code below but I'm not sure if that's the most elegant solution (I'll set a Vim option if the file exists). Is there any way of not having to do another comparison of the filename?

Maybe use a different built-in function from Vim?

:function! SomeCheck()
:   if findfile("SpecificFile", ".") == "SpecificFile"
:       echo "SpecificFile exists"
:   endif
:endfunction

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

撩人痒 2024-09-13 12:47:43

通过在 vim man 中进行一些搜索,我发现了这个,它看起来比原来的要好得多:

:function! SomeCheck()
:   if filereadable("SpecificFile")
:       echo "SpecificFile exists"
:   endif
:endfunction

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
唔猫 2024-09-13 12:47:43

一些评论表达了对 fileready 和使用 glob 的担忧。这解决了文件确实存在但权限阻止读取的问题。如果您想检测此类情况,可以使用以下方法:

:if !empty(glob("path/to/file"))
:   echo "File exists."
:endif

Some of the comments express concerns about filereadable and using glob instead. This addresses the issue of having a file that does exist, but permissions prevent it from being read. If you want to detect such cases, the following will work:

:if !empty(glob("path/to/file"))
:   echo "File exists."
:endif
黎歌 2024-09-13 12:47:43

进一步了解 @thinker3 的评论 关于已接受的答案:

if fileread(expand("~/.vim/bundle/vundle/README.md")) let g:hasVundle = 1 endif`

filereadable 是必需的,如果您在文件路径中使用 ~,则还有一个额外方便的 expand 步骤:

function! SomeCheck()
   if filereadable(expand("SpecificFile"))
       echo "SpecificFile exists"
   endif
endfunction

例如

  • :echo fileread('~/.vimrc') 给出 0
  • :echo fileread(expand('~/.vimrc')) 给出 1

Giving some more visibility to @thinker3's comment on the accepted answer:

if filereadable(expand("~/.vim/bundle/vundle/README.md")) let g:hasVundle = 1 endif`

filereadable is what is required, if you are using ~ in your file path, there's an extra handy step of expand:

function! SomeCheck()
   if filereadable(expand("SpecificFile"))
       echo "SpecificFile exists"
   endif
endfunction

For example

  • :echo filereadable('~/.vimrc') gives 0,
  • :echo filereadable(expand('~/.vimrc')) gives 1
拧巴小姐 2024-09-13 12:47:43

抱歉,如果为时已晚,但这样做

if !empty(expand(glob("filename")))
    echo "File exists"
else
    echo "File does not exists"
endif

对我来说效果很好

Sorry if it's too late, but doing

if !empty(expand(glob("filename")))
    echo "File exists"
else
    echo "File does not exists"
endif

works fine for me

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文