3
1

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.

pythonのopenでチルダ(~)で始まるパスを指定したら行方不明になった話

Last updated at Posted at 2020-11-14
path = '~/.config/remind_task/tasks.yml'
dir_name = os.path.dirname(path)
os.makedirs(dir_name, exist_ok=True) # 上位ディレクトリが存在しなければ掘る
with open(path, mode="w") as f:
    f.write("hoge")

このようにファイルを開きファイルを作成するとホームディレクトリの.config/remind_task/tasks.ymlにファイルが作成されると思ってしまう。
上のコードを実行するとファイルは作成される。しかし無い。

> cat ~/.config/remind_task/tasks.yml
cat: /Users/atu/.config/remind_task/tasks.yml: No such file or directory

しかしファイルは作成されている。どこにあるのか探し回った結果、カレントディレクトリに作られていた。
この場合は/Users/atu/Documents/python/remind_task/~/.config/remind_task/tasks.ymlにあった。

> cat "/Users/atu/Documents/python/remind_task/~/.config/remind_task/tasks.yml"
hoge

チルダで始まるパスを扱う場合には以下のようにすればOKです。

import pathlib
path = pathlib.Path("~/.config/remind_task/tasks.yml").expanduser()
print("path", path)
## path /Users/atu/.config/remind_task/tasks.yml
3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?