当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


haskell doesFileExist用法及代码示例


Haskell语言Directory模块中函数doesFileExist的用法及代码示例。

用法类型:

FilePath -> IO Bool

手术doesFileExist如果参数文件存在且不是目录,则返回True,否则返回False。

示例1:

源码:

import IO
import Directory

main = do hdl <- openFile "/tmp/foo.txt" WriteMode
	  hPutStr hdl "Hello"
	  hClose hdl
	  x <- doesFileExist "/tmp/foo.txt"
	  print x
	  y <- doesFileExist "/tmp"
	  print y

输出:
True
         
输出:
False
         

注:本文由纯净天空筛选整理自 haskell doesFileExist。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。