1

我阅读了一些帖子和文档,您可以使用os.path.expanduser(~/.PATHNAME). 我现在很难使用它。当我使用它时,我最终会在目标路径上方找到一个目录。

from django.shortcuts import render
import os
import subprocess

def index(request):
  os.path.expanduser('~/.usernames')
  files = []
  for file in os.listdir("."):
    files.append(file)
  return render(request, 'sslcert/index.html', dict(files = files))
4

1 回答 1

3

看起来您缺少一个步骤,并且您打算进入目录,如下所示:

os.chdir(os.path.expanduser('~/.usernames'))

否则,您的 os.path.expanduser 行只会生成一个无用的路径。

于 2013-11-08T15:41:41.367 回答