system_chdir(3f) - [M_system_FILE_SYSTEM] call chdir(3c) from Fortran
to change working directory
(LICENSE:PD)
subroutine system_chdir(path, err)
character(len=*) :: path
integer, optional, intent(out) :: err
system_chdir(3f) changes the current working directory of the calling
process to the directory specified in path. The current working
directory is the starting point for interpreting relative pathnames
(those not starting with '/').
On success, zero is returned. On error, -1 is returned, and errno is
set appropriately.
Depending on the file system, other errors can be returned. The more
general errors for chdir() are listed below, by their C definitions:
Errors
EACCES Search permission is denied for one of the components of path.
(See also path_resolution(7).)
EFAULT path points outside your accessible address space.
EIO An I/O error occurred.
ELOOP Too many symbolic links were encountered in resolving path.
ENAMETOOLONG path is too long.
ENOENT The file does not exist.
ENOMEM Insufficient kernel memory was available.
ENOTDIR A component of path is not a directory.
chroot(2), getcwd(3), path_resolution(7)
Change working directory from Fortran
program demo_system_chdir
use M_system, only : system_chdir
implicit none
integer :: ierr
call execute_command_line('pwd')
call system_chdir('/tmp',ierr)
call execute_command_line('pwd')
write(*,*)'*CHDIR TEST* IERR=',ierr
end program demo_system_chdir
Sample run output:
/home/urbanjs/V600
/tmp
*CHDIR TEST* IERR= 0
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*) | :: | path | ||||
integer, | intent(out), | optional | :: | err |
subroutine system_chdir(path, err)
! ident_15="@(#) M_system system_chdir(3f) call chdir(3c)"
character(len=*) :: path
integer, optional, intent(out) :: err
character(kind=c_char,len=1),allocatable :: temp(:)
interface
integer(kind=c_int) function c_chdir(c_path) bind(C,name="chdir")
import c_char, c_int
character(kind=c_char) :: c_path(*)
end function
end interface
integer :: loc_err
!-----------------------------------------------------------------------------------------------------------------------------------
temp = str2_carr(trim(path)) ! kludge for bug in ifort (IFORT) 2021.3.0 20210609
loc_err=c_chdir(temp)
if(present(err))then
err=loc_err
endif
end subroutine system_chdir