5
Come posso verificare il flag EOF
in R?Come testare il flag EOF in R?
Ad esempio:
f <- file(fname, "rb")
while (???) {
a <- readBin(f, "int", n=1)
}
Come posso verificare il flag EOF
in R?Come testare il flag EOF in R?
Ad esempio:
f <- file(fname, "rb")
while (???) {
a <- readBin(f, "int", n=1)
}
La funzione readLines restituirà un valore di lunghezza zero quando raggiunge l'EOF.
Prova a controllare la lunghezza dei dati restituiti dal readBin:
while (length(a <- readBin(f, 'int', n=1)) > 0) {
# do something
}