gpt4 book ai didi

elixir - 接收 :badarg on File. 写入

转载 作者:行者123 更新时间:2023-12-04 12:47:06 25 4
gpt4 key购买 nike

我开始学习 Elixir,这也是我的第一个动态语言,所以我真的迷失在没有类型声明的函数上。

我正在尝试做的事情:

def create_training_data(file_path, indices_path, result_path) do
file_path
|> File.stream!
|> Stream.with_index
|> filter_data_with_indices(indices_path)
|> create_output_file(result_path)
end

def filter_data_with_indices(raw_data, indices_path) do
Stream.filter raw_data, fn {_elem, index} ->
index_match?(index, indices_path)
end
end

defp index_match?(index, indices_path) do
indices_path
|> File.stream!
|> Enum.any? fn elem ->
(elem
|> String.replace(~r/\n/, "")
|> String.to_integer
|> (&(&1 == index)).())
end
end

defp create_output_file(data, path) do
File.write(path, data)
end

当我调用函数时:
create_training_data("./resources/data/usps.csv","./resources/indices/17.csv","./output.txt")

它返回 {:error, :badarg}。我已经检查过,错误出在 create_output_file 函数上。

如果我注释掉函数 create_output_file,我得到的是一个流(有点道理)。问题可能是我不能给 File.write 一个 Stream 吗?如果有问题,我该怎么办?我在文档中没有找到任何关于此的内容。

编辑

所以,问题是 File.write 的路径应该没问题,我将函数修改为这样:
defp create_output_file(data, path) do
IO.puts("You are trying to write to: " <> path)
File.write(path, data)
end

现在,当我尝试使用这些参数运行时:
iex(3)> IaBay.DataHandling.create_training_data("/home/lhahn/data/usps.csv", "/home/lhahn/indices/17.csv", "/home/lhahn/output.txt")
You are trying to write to: /home/lhahn/output.txt
{:error, :badarg}
iex(4)> File.write("/home/lhahn/output.txt", "Hello, World")
:ok

所以,我仍然遇到 :badarg 问题,也许我传递的内容不对?

最佳答案

您要写入的目录是否存在?我会试试这个:

defp create_output_file(data, path) do
File.mkdir_p!(Path.dirname(path))
File.write!(path, data)
end

关于elixir - 接收 :badarg on File. 写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30227370/

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