Differenze tra le versioni di "Exist"
Da Gambas-it.org - Wikipedia.
Riga 2: | Riga 2: | ||
La sintassi è: | La sintassi è: | ||
− | esiste = Exist("<FONT | + | esiste = Exist("<FONT Color=gray>''/percorso/del/file''</font>") |
Riga 8: | Riga 8: | ||
'''Public''' Sub Button1_Click() | '''Public''' Sub Button1_Click() | ||
− | If Exist("<FONT | + | If Exist("<FONT Color=gray>''/percorso/del/file''</font>") = True Then |
Print "Il file esiste !" | Print "Il file esiste !" | ||
Endif | Endif | ||
'''End''' | '''End''' |
Versione delle 14:55, 6 gen 2017
La funzione Exist restituisce il valore booleano vero, se esiste un file o una directory.
La sintassi è:
esiste = Exist("/percorso/del/file")
Esempio:
Public Sub Button1_Click() If Exist("/percorso/del/file") = True Then Print "Il file esiste !" Endif End