10
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

何でもOKなカレンダーAdvent Calendar 2020

Day 10

テンポラリーフォルダを得るにはSystem.tmp_dir!()を使うとよいですよ〜(Elixir)

Posted at

はじめに

  • Elixir 楽しんでいますか :bangbang::bangbang::bangbang:
  • テンポラリーフォルダ使いたいことありますよね:interrobang:

System.tmp_dir!/0を使うとよいですよ〜

リンク先のドキュメントを読みますと次の順にさがすとのことです。

  1. 環境変数 TMPDIR に設定されたディレクトリ
  2. 環境変数 TEMP に設定されたディレクトリ
  3. 環境変数 TMP に設定されたディレクトリ
  4. Windowsの場合はC:\TMP、UnixライクのOSの場合は/tmp
  5. ワーキングディレクトリ

macOS

$ iex

iex> System.tmp_dir!()
"/var/folders/66/dj7rwns53vn4db4_1npvqtrh0000gn/T/"

Nerves

$ ssh nerves.local

iex> System.tmp_dir!()
"/tmp"

参考

Wrapping Up 🎍🎍🎍🎍🎍

10
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?