C Library Functions  - filedelete (3)

NAME

filedelete(3f) - [M_io] A simple close of an open file with STATUS=’DELETE’ (LICENSE:PD)

CONTENTS

Synopsis
Description
Option
Returns
Examples
Author
License

SYNOPSIS

function filedelete(lun) result(ios)

    integer,intent(in)          :: lun
      or
    character(len=*),intent(in) :: filename
    integer                     :: ios

DESCRIPTION

A convenience command for deleting an OPEN(3f) file that leaves an error message in the current journal file if active

OPTION

LUN unit number of open file to delete or filename.

RETURNS

IOS status returned by CLOSE().

EXAMPLES

Sample program:

    program demo_filedelete
    use M_io, only : filedelete, fileopen
    implicit none
    integer :: lun
    integer :: ios
       lun=fileopen(’<input.txt’)
       ios=filedelete(lun)
    end program demo_filedelete

AUTHOR

John S. Urban

LICENSE

Public Domain


Nemo Release 3.1 filedelete (3) February 23, 2025
Generated by manServer 1.08 from 76083869-54a3-4e43-b10d-76d588ee0924 using man macros.