Metodo Python os.ftruncate ()
Descrizione
Metodo Python ftruncate() tronca il file corrispondente al descrittore di file fd, in modo che abbia una dimensione massima di byte.
Sintassi
Di seguito è riportata la sintassi per ftruncate() metodo -
os.ftruncate(fd, length)
Parametri
fd - Questo è il descrittore di file, che deve essere troncato.
length - Questa è la lunghezza del file in cui il file deve essere troncato.
Valore di ritorno
Questo metodo non restituisce alcun valore.
Esempio
L'esempio seguente mostra l'utilizzo del metodo ftruncate ().
#!/usr/bin/python
import os, sys
# Open a file
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )
# Write one string
os.write(fd, "This is test - This is test")
# Now you can use ftruncate() method.
os.ftruncate(fd, 10)
# Now read this file from the beginning.
os.lseek(fd, 0, 0)
str = os.read(fd, 100)
print "Read String is : ", str
# Close opened file
os.close( fd )
print "Closed the file successfully!!"
Quando eseguiamo il programma sopra, produce il seguente risultato:
Read String is : This is te
Closed the file successfully!!