在我的 django 应用程序结构如下:
__init__.py
__init__.pyc
models.py
tests.py
usage.rrd
views.py
views.pyc
我正在尝试按如下方式访问该usage.rrd
文件:views.py
from django.http import HttpResponse
import rrdtool
def hello(request):
info = rrdtool.info('usage.rrd')
return HttpResponse(info)
但我得到:
打开“/usage.rrd”:没有这样的文件或目录
尽管在当前目录中。