Verifier si un fichier cfg existe sur un compte utilisateur cour
Fermé
xunil2003
-
Modifié par xunil2003 le 28/05/2014 à 18:31
xunil2003 Messages postés 766 Date d'inscription mercredi 17 novembre 2004 Statut Membre Dernière intervention 29 septembre 2024 - 29 mai 2014 à 17:16
xunil2003 Messages postés 766 Date d'inscription mercredi 17 novembre 2004 Statut Membre Dernière intervention 29 septembre 2024 - 29 mai 2014 à 17:16
A voir également:
- Verifier si un fichier cfg existe sur un compte utilisateur cour
- Créer un compte gmail - Guide
- Créer un compte google - Guide
- Comment ouvrir un fichier epub ? - Guide
- Créer un compte instagram sur google - Guide
- Comment réduire la taille d'un fichier - Guide
2 réponses
ElementW
Messages postés
4816
Date d'inscription
dimanche 12 juin 2011
Statut
Contributeur
Dernière intervention
5 octobre 2021
1 228
28 mai 2014 à 18:16
28 mai 2014 à 18:16
'lut, pour cela on utilise os.path.join():
et ça donnera
chemin = os.path.join(home, ".test/config.cfg")
et ça donnera
>>> chemin /home/user/.test/config.cfg
xunil2003
Messages postés
766
Date d'inscription
mercredi 17 novembre 2004
Statut
Membre
Dernière intervention
29 septembre 2024
14
29 mai 2014 à 17:16
29 mai 2014 à 17:16
Boujour,
Merci, ça marche nickel.
Merci, ça marche nickel.
from os.path import expanduser
home = expanduser('~/')
print "Le compte utilisateur est : ",(home)
print ""
#---------- Indique le chemin complet au fichier depuis le home directory courant ----------
import os
chemin = os.path.join(home, ".test2/config.cfg")
print "Le chemin complet au fichier de configuration cfg est :",chemin
print ""