Metodo Python os.ttyname ()
Descrizione
Metodo Python ttyname()restituisce una stringa, che specifica il dispositivo terminale associato a fd . Se fd non è associato a un dispositivo terminale, viene sollevata un'eccezione.
Sintassi
Di seguito è riportata la sintassi per ttyname() metodo -
os.ttyname(fd)
Parametri
fd - Questo è il descrittore di file.
Valore di ritorno
Questo metodo restituisce una stringa che specifica il dispositivo terminale.
Esempio
L'esempio seguente mostra l'utilizzo del metodo ttyname ().
# !/usr/bin/python
import os, sys
# Showing current directory
print "Current working dir :%s" %os.getcwd()
# Changing dir to /dev/tty
fd = os.open("/dev/tty",os.O_RDONLY)
p = os.ttyname(fd)
print "the terminal device associated is: "
print p
print "done!!"
os.close(fd)
print "Closed the file successfully!!"
Quando eseguiamo il programma sopra, produce il seguente risultato:
Current working dir is :/tmp
the terminal device associated is:
/dev/tty
done!!
Closed the file successfully!!