Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

site_dirがまだ作られていないときにビルドに失敗する #1

Open
srymh opened this issue Jun 2, 2019 · 1 comment
Open

Comments

@srymh
Copy link
Owner

srymh commented Jun 2, 2019

site_dirがまだ作られていないときにビルドに失敗する。

INFO    -  Cleaning site directory
INFO    -  Building documentation to directory: D:\hoge\site
ERROR   -  Error reading page 'sample.md': [Errno 2] No such file or directory: 'D:\\hoge\\site\\tags.json'

あらかじめ site_dir フォルダを作成しておけば失敗しない。

@srymh
Copy link
Owner Author

srymh commented Jun 2, 2019

フォルダがなければ作る。ただし、フォルダ名を決定するために config の site_dir を参照する必要がある。

Python でファイル作成する時に指定したディレクトリが無ければ作るメモ - 牌語備忘録 -pygo より

# coding=utf-8
import os


def write(filename, text):
    file_path = os.path.dirname(filename)
    if not os.path.exists(file_path):
        os.makedirs(file_path)

    with open(filename, 'w') as f:
        f.write(text)


write('/tmp/foo/bar.txt', 'hello!')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant