我应该在我的长生不老药代码中使用 Mix.Utils 吗?
Should I use Mix.Utils in my elixir code?
我需要通过URL获取一个文件并存储到本地磁盘。
我看到 Mix.Utils 有:
copy_path!(source, target, opts \ [])
这似乎完全符合我的要求,但是 Mix.Utils 只是您用于编写混合任务而不用于一般问题解决的东西吗?
Which seems to do exactly what I want, but is Mix.Utils only something you'd use for writing mix tasks and not for general problem solving?
通常是。如果你想使用它,你需要依赖 def application
函数内的 mix.exs
文件中的 :mix
应用程序。
我需要通过URL获取一个文件并存储到本地磁盘。
我看到 Mix.Utils 有:
copy_path!(source, target, opts \ [])
这似乎完全符合我的要求,但是 Mix.Utils 只是您用于编写混合任务而不用于一般问题解决的东西吗?
Which seems to do exactly what I want, but is Mix.Utils only something you'd use for writing mix tasks and not for general problem solving?
通常是。如果你想使用它,你需要依赖 def application
函数内的 mix.exs
文件中的 :mix
应用程序。