Scopo
Elimina un file esistente.
Sintassi
Applicazione.DeleteFile(percorso)
Argomenti
Percorso | Percorso del file da eliminare. |
Esempio
public boolean OggettoFS.Elimina()
{
// Se esiste ancora
if Esiste()
{
// Provo a cancellare
try
{
// Se è una cartella
if GetNamedPropertyValue(Cartella) = True
{
EsempiMS.DeleteDirectory(GetNamedPropertyValue(NomeCompleto))
}
else // Se è un file
{
EsempiMS.DeleteFile(GetNamedPropertyValue(NomeCompleto))
}
}
}
//
// Se non c'è più
if NOT(Esiste())
{
// Se ho un padre
if NOT(Parent IS Null Object)
...
//
// Cancellazione avvenuta
return True
}
else // C'è ancora
{
// Cancellazione non avvenuta
return False
}
}
{
// Se esiste ancora
if Esiste()
{
// Provo a cancellare
try
{
// Se è una cartella
if GetNamedPropertyValue(Cartella) = True
{
EsempiMS.DeleteDirectory(GetNamedPropertyValue(NomeCompleto))
}
else // Se è un file
{
EsempiMS.DeleteFile(GetNamedPropertyValue(NomeCompleto))
}
}
}
//
// Se non c'è più
if NOT(Esiste())
{
// Se ho un padre
if NOT(Parent IS Null Object)
...
//
// Cancellazione avvenuta
return True
}
else // C'è ancora
{
// Cancellazione non avvenuta
return False
}
}
Il percorso del file si riferisce al file system del server (non del client).
Ultima modifica: 23/03/2021 / Validità: da 6.8.3060