Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda do Scilab >> Arquivos : funções de Entrada/Saída > deletefile

deletefile

deletes a file

Syntax

status = deletefile(filename)

Arguments

filename

character strings interpreted as existing file names or not.

status

booleans %t on success or %f on error. It has the same size as filename.

Description

This function deletes a file filename. If file filename has been deleted, it will return %t else %f.

Examples

fd = mopen(TMPDIR+'/filetodelete.txt','wt');
mclose(fd);

if (fileinfo(TMPDIR+'/filetodelete.txt') <> []) then
deletefile(TMPDIR+'/filetodelete.txt')
end

deletefile(TMPDIR+'/notexistingfile')

deletefile(TMPDIR+['/notexistingfile' '/notexistingsecondfile'])

See Also

History

VersãoDescrição
6.0.0 Manage multi-dimensionnal arguments to remove multiple files at once.
Report an issue
<< copyfile Arquivos : funções de Entrada/Saída dispfiles >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Feb 14 15:00:46 CET 2019