Je sais que je peux l'utiliser pour obtenir le chemin d'accès complet au fichier
os.path.dirname(os.path.realpath(__file__))
Mais je veux juste le nom du dossier, mon script est dedans. SO si j'ai my_script.py et qu'il se trouve à
/home/user/test/my_script.py
Je veux retourner "test" Comment puis-je faire cela?
Merci
import os
os.path.basename(os.path.dirname(os.path.realpath(__file__)))
En panne:
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
>>> import os
>>> os.getcwd()