Haskell语言Directory模块中函数renameFile的用法及代码示例。
用法类型:
FilePath -> FilePath -> IO ()
renameFileold new将现有文件系统对象的名称从old更改为new。如果新对象已经存在,则将其原子替换为旧对象。这两个路径都不能引用现有目录。一致的实现不必在所有情况下都支持重命名文件(例如,在不同的物理设备之间重命名),但是必须记录约束。
示例1:
源码:
import IO
import Directory
main = do hdl <- openFile "/tmp/foo.txt" WriteMode
hPutStr hdl "HELLO"
hClose hdl
a <- doesFileExist "/tmp/foo.txt"
renameFile "/tmp/foo.txt" "/tmp/bar.txt"
b <- doesFileExist "/tmp/foo.txt"
c <- doesFileExist "/tmp/bar.txt"
print (a,b,c)
输出:
(True,False,True)
注:本文由纯净天空筛选整理自 haskell renameFile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。