8

我在不知道它的绝对路径的情况下列出当前用户的主目录时遇到问题。我尝试了以下方法,但它不起作用:

[root@blackbox source]# python
Python 2.6.6 (r266:84292, Dec  7 2011, 20:38:36)
[GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.listdir('/root')
['python', '.bashrc', '.viminfo']
>>> os.listdir('~')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 2] No such file or directory: '~'
>>>
4

2 回答 2

21

您需要使用以下os.path.expanduser()功能

>>> import os.path
>>> os.path.expanduser('~')
'/home/username'
于 2012-12-11T23:22:02.157 回答
1

你可以这样问操作系统:

>>> import os
>>> os.environ['HOME']
'/home/noctua'
>>> os.listdir(os.environ['HOME'])
于 2012-12-11T23:24:40.697 回答