gpt4 book ai didi

Haskell这个文件的路径

转载 作者:行者123 更新时间:2023-12-03 14:26:33 28 4
gpt4 key购买 nike

有没有办法获取定义函数的文件的路径?

例如:

rootappdir
|- Foo.hs
|- Bar.hs


module Foo where

getThisDir :: IO Filepath
getThisDir = ...

prelude> getThisDir
absolute/path/to/rootappdir/Foo.hs

如果可以使用更简单的函数::Filepath,那就更好了。
也许我们需要使用预处理器?

最佳答案

您需要使用 Template Haskell 来执行此操作。

{-# LANGUAGE TemplateHaskell #-}

import Data.Functor
import Language.Haskell.TH
import System.Directory
import System.FilePath

filePath :: String
filePath = $(do
dir <- runIO getCurrentDirectory
filename <- loc_filename <$> location
litE $ stringL $ dir </> filename)

关于Haskell这个文件的路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25737117/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com