我知道我可以使用它来获取完整的文件路径
os.path.dirname(os.path.realpath(__file__))
但我只想要文件夹的名称,我的文件夹就在。如果我有my_script.py并且它位于
/home/user/test/my_script.py
我想回来"测试"我怎么能这样做?
由于
答案 0 :(得分:54)
>>> import os
>>> os.getcwd()
答案 1 :(得分:47)
import os
os.path.basename(os.path.dirname(os.path.realpath(__file__)))
细分:
currentFile = __file__ # May be 'my_script', or './my_script' or
# '/home/user/test/my_script.py' depending on exactly how
# the script was run/loaded.
realPath = os.path.realpath(currentFile) # /home/user/test/my_script.py
dirPath = os.path.dirname(realPath) # /home/user/test
dirName = os.path.basename(dirPath) # test
答案 2 :(得分:0)
只需写下
import os
import os.path
print( os.path.basename(os.getcwd()) )
希望这会有所帮助......