• # va voir l'aide de python

    Posté par . En réponse au message Aide pour script. Évalué à 3.

    rename( src, dst)

    Rename the file or directory src to dst. If dst is a directory, OSError will be raised. On Unix, if dst exists and is a file, it will be removed silently if the user has permission. The operation may fail on some Unix flavors if src and dst are on different filesystems. If successful, the renaming will be an atomic operation (this is a POSIX requirement). On Windows, if dst already exists, OSError will be raised even if it is a file; there may be no way to implement an atomic rename when dst names an existing file. Availability: Macintosh, Unix, Windows.

    Donc peut-être que ça marchera si tu ne crée pas le répertoire sur c: avant de faire un appel a os.rename.

    Lis un peu la doc des fonctions que tu utilise avant de demander de l'aide!