私のFlaskアプリケーションの構造は次のようになります
application_top/
application/
static/
english_words.txt
templates/
main.html
urls.py
views.py
runserver.py
を実行するとrunserver.py
、でサーバーが起動しますlocalhost:5000
。私の場合、ファイルを views.py
次のように開こうとしますenglish.txt
f = open('/static/english.txt')
エラーが発生しますIOError: No such file or directory
このファイルにアクセスするにはどうすればよいですか?