當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir File.exists?用法及代碼示例


Elixir語言中 File.exists? 相關用法介紹如下。

用法:

exists?(path, opts \\ [])
@spec exists?(Path.t(), [exists_option]) :: boolean() when exists_option: :raw

如果給定路徑存在,則返回 true

它可以是常規文件、目錄、套接字、符號鏈接、命名管道或設備文件。為指向不存在目標的符號鏈接返回false

選項

支持的選項有:

  • :raw - 單個原子繞過文件服務器,僅在本地檢查文件

例子

File.exists?("test/")
#=> true

File.exists?("missing.txt")
#=> false

File.exists?("/dev/null")
#=> true

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 File.exists?(path, opts \\ [])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。