0

有没有比执行以下操作更简单的方法来获取父目录的字符串?

'/'.join(os.getcwd().split('/')[:-1])
4

3 回答 3

3

我相信这对你来说会简单得多

os.path.abspath(os.path.pardir)

甚至更简单

os.path.dirname(os.getcwd())
于 2012-04-09T19:53:01.500 回答
1

我不知道这样做的方法,但我会做类似的事情:

os.path.abspath(os.path.join(os.getcwd(), os.pardir))

编辑:这种方式有效,但Ixanezis方式可能更好。

于 2012-04-09T19:49:33.023 回答
1

好吧,这个方法可能有用:

os.path.dirname(os.getcwd())
于 2012-04-09T19:53:54.520 回答