fileglob(3f) - [M_system:QUERY_FILE] Read output of an ls(1) command from Fortran (LICENSE:PD)
Synopsis
Description
Options
Examples
Author
License
subroutine fileglob(glob,list)
character(len=*),intent(in) :: glob character(len=*),pointer :: list(:)
Non-portable procedure uses the shell and the ls(1) command to expand a filename and returns a pointer to a list of expanded filenames.
glob Pattern for the filenames (like: *.txt) list Allocated list of filenames (returned), the caller must deallocate it.
Read output of an ls(1) command from Fortran
program demo_fileglob ! simple unit test call tryit(’*.*’) call tryit(’/tmp/__notthere.txt’) containssubroutine tryit(string) use M_system, only : fileglob character(len=255),pointer :: list(:) character(len=*) :: string integer :: i call fileglob(string, list) write(*,*)’Files:’,size(list) write(*,’(a)’)(trim(list(i)),i=1,size(list)) deallocate(list) end subroutine tryit
end program demo_fileglob ! simple unit test
John S. Urban
Public Domain
Nemo Release 3.1 | fileglob (3m_system) | March 07, 2025 |