更改python中的目录,相对路径

时间:2013-11-08 15:17:21

标签: python

我在一些帖子和文档中读到你可以使用os.path.expanduser(~/.PATHNAME)更改为python中的相对路径。我现在很难使用它。当我使用它时,我最终在目标路径上方的一个目录。

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))

1 个答案:

答案 0 :(得分:2)

看起来你错过了一步,并打算进入目录,如下所示:

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

否则你的os.path.expanduser行只是生成一个什么都没用的路径。