files - obtener el nombre del directorio de script-Python
python list files in directory (3)
Solo escribe
import os
import os.path
print( os.path.basename(os.getcwd()) )
Espero que esto ayude...
Sé que puedo usar esto para obtener la ruta completa del archivo
os.path.dirname(os.path.realpath(__file__))
Pero solo quiero el nombre de la carpeta, mi script está en. Por lo tanto, si tengo my_script.py y está ubicado en
/home/user/test/my_script.py
Quiero devolver "prueba" ¿Cómo podría hacer esto?
Gracias
>>> import os
>>> os.getcwd()
import os
os.path.basename(os.path.dirname(os.path.realpath(__file__)))
Desglosado:
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