Generate and return .true.
if the requested path removal action from the file system failed, otherwise return .false.
indicating success.
The procedures of this generic interface perform the path removal action whether the input path points to a file or an empty or non-empty directory.
The removal strategy depends on the nature of the input path
:
-
If the input
path
points to a single file, then the path is removed from the file system using Fortran intrinsic routines.
-
If the input
path
points to a multiple files via a pattern specification or a directory, then the path is removed via the relevant shell commands.
- Parameters
-
[in] | path | : The input scalar character of default kind SK containing a POSIX-style or Windows-style path to a file or directory.
|
[in] | recursive | : The input scalar logical of default kind LK. If .true. the removal action will be performed recursively (including all subdirectories).
This input argument is relevant only if the input path is a directory potentially with subdirectories.
(optional, default = .false. ) |
[in] | forced | : The input scalar logical of default kind LK. If .true. the removal action will be performed without any questions asked (and nonexistent files will be ignored).
Note that setting force = .true. is required to ignore errors raised on Windows related to non-existence of the specified path or pattern.
(optional, default = .false. ) |
[in] | wait | : The input scalar logical of default kind LK with the same functionality as the wait argument of the Fortran intrinsic execute_command_line() .
-
If
.true. , the procedure will wait for the shell action to terminate before returning the control to the Fortran program.
-
Otherwise, the system call will be done asynchronously and the success of the action will not be verified.
(optional, default = .true. ) |
[in] | ntry | : The input scalar positive integer of default kind IK representing the number of times the requested action should be attempted.
Multiple tries are particularly useful on Windows platforms where applications take the ownership of a particular resource on the system and may not allow other applications to utilize the resource.
For example, Dropbox is a well-known example of an application that blocks any other applications from making any changes to a specific path with which it is working, preventing any manipulation of the path by other applications.
(optional, default = 1 ) |
[in,out] | errmsg | : The input/output scalar character of default kind SK of arbitrary length type parameter.
If present and an error occurs, it is assigned an explanatory message describing the nature of the error that has occurred.
If the length of errmsg is too short for the output error message, the message tail will be clipped as needed.
A length of LEN_IOMSG characters is likely sufficient to capture most error messages in full.
(optional. If missing, no error message will be output.) |
- Returns
failed
: The output scalar logical
of default kind LK. It is .true.
if and only if an error occurs while performing the requested task.
This includes the possibility of the input path
not existing before the removal action.
Possible calling interfaces ⛓
character(2047, SK) :: errmsg
logical(LK) :: failed, forced
logical(LK) :: recursive
logical(LK) :: wait
integer(IK) :: ntry
failed
= isFailedRemove(path, recursive
= recursive, forced
= forced,
wait = wait, ntry
= ntry,
errmsg = errmsg)
Generate and return .true. if the requested path removal action from the file system failed,...
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
integer, parameter LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
This module contains classes and procedures for manipulating system file/folder paths.
- Warning
- Note that this procedure does not verify the conformance of the input paths to the naming conventions of the current processor shell. For example,
- if the shell is POSIX-conforming, then the path is expected to conform to the POSIX conventions.
- if the shell is Windows CMD or PowerShell, the path is expected to conform to the Windows conventions.
-
This procedure interprets the input paths verbatim.
This procedure potentially calls the operating system to create the input destination path directories.
To minimize security vulnerabilities and to properly handle the presence of whitespace or other potentially problematic characters, the input path will be interpreted verbatim by calling getPathVerbatim.
-
Asynchronous removal action.
Note that even if the processor supports asynchronous command execution (wait = .false.
), there is no mechanism provided for finding out later whether the command being executed asynchronously has terminated or what its exit status exitstat
was.
-
The input
ntry
must be a positive (non-zero) integer
.
This condition is verified only if the library is built with the preprocessor macro CHECK_ENABLED=1
.
- See also
- isFailedCopy
isFailedMove
isFailedRemove
isFailedMakeDir
Example usage ⛓
13 type(display_type) :: disp
23 character(:, SK),
allocatable :: path, dir
25 call disp%show(
"dir = getPathNew(prefix = SK_'tempdir_') ! define a temp directory name.")
28 call disp%show( dir , deliml
= SK_
"""" )
29 call disp%show(
"if (isFailedMakeDir(dir)) error stop 'directory creation failed.'")
31 call disp%show(
"path = getPathNew(dir) ! define a temp path name.")
34 call disp%show( path , deliml
= SK_
"""" )
35 call disp%show(
"open(newunit = unit, file = path, status = 'replace'); close(unit) ! Create a file in a randomly-named directory.")
36 open(newunit
= unit, file
= path, status
= 'replace');
close(unit)
39 call disp%show(
"if (isFailedRemove(path)) error stop 'removal failed.'")
41 call disp%show(
"[isFile(path), isExtant(path)]")
43 call disp%show(
.not."if ( isFailedRemove(path)) error stop 'removal of non existing path fails unless `forced`.'")
44 if (
.not. isFailedRemove(path))
error stop 'removal of non existing path fails unless `forced`.'
45 call disp%show(
"if (isFailedRemove(path, forced = .true._LK)) error stop 'removal of non existing path fails unless `forced`.'")
46 if (
isFailedRemove(path, forced
= .true._LK))
error stop 'removal of non existing path fails unless `forced`.'
49 call disp%show(
"if (isFailedRemove(dir, forced = .true._LK, recursive = .true._LK)) error stop 'removal of directory failed.'")
50 if (
isFailedRemove(dir, forced
= .true._LK, recursive
= .true._LK))
error stop 'removal of directory failed.'
58 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
59 call disp%show(
"! Remove directory or files matching pattern.")
60 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
64 type(css_type),
allocatable :: list(:)
65 character(:, SK),
allocatable :: dir, pattern
67 call disp%show(
"dir = getPathNew(prefix = SK_'tempdir_') ! define a temp directory name.")
70 call disp%show( dir , deliml
= SK_
"""" )
71 call disp%show(
"if (isFailedMakeDir(dir)) error stop 'directory creation failed.'")
73 call disp%show(
"call setResized(list, 5_IK)")
75 call disp%show(
"do i = 1, 3; list(i)%val = getPathNew(dir, prefix = SK_'tempfile_'); end do ! define temp path names.")
76 do i
= 1,
3; list(i)
%val
= getPathNew(dir, prefix
= SK_
'tempfile_');
end do
77 call disp%show(
"do i = 4, size(list); list(i)%val = getPathNew(dir, prefix = SK_'dumpfile_'); end do ! define temp path names.")
78 do i
= 4,
size(list); list(i)
%val
= getPathNew(dir, prefix
= SK_
'dumpfile_');
end do
80 call disp%show( list , deliml
= SK_
"""" )
83 call disp%show(
"do i = 1, size(list); open(newunit = unit, file = list(i)%val, status = 'replace'); close(unit); end do ! Create random files with specified patterns.")
84 do i
= 1,
size(list);
open(
newunit = unit,
file = list(i)
%val, status
= 'replace');
close(unit);
end do
87 call disp%show(
"pattern = dir//getDirSep()//SK_'*ump*'")
90 call disp%show( pattern , deliml
= SK_
"""" )
93 call disp%show(
"if (isFailedRemove(pattern, forced = .true._LK, recursive = .true._LK)) error stop 'removal of file(s) matching pattern '''//pattern//''' failed.'")
94 if (
isFailedRemove(pattern, forced
= .true._LK, recursive
= .true._LK))
error stop 'removal of file(s) matching pattern '''//pattern
//''' failed.'
98 call disp%show(
"pattern = SK_'./*emp*'")
99 pattern
= SK_
'./*emp*'
101 call disp%show( pattern , deliml
= SK_
"""" )
104 call disp%show(
"if (isFailedRemove(pattern, forced = .true._LK, recursive = .true._LK)) error stop 'removal of directories and files matching pattern '''//pattern//''' failed.'")
105 if (
isFailedRemove(pattern, forced
= .true._LK, recursive
= .true._LK))
error stop 'removal of directories and files matching pattern '''//pattern
//''' failed.'
Allocate or resize (shrink or expand) an input allocatable scalar string or array of rank 1....
This is a generic method of the derived type display_type with pass attribute.
This is a generic method of the derived type display_type with pass attribute.
Generate and return the directory separator symbol based on the runtime system shell.
Generate and return a unique (directory or file) path name in the specified directory or the default ...
Generate and return the result of globing the specified input pattern.
Generate and return .true. is the input path is an extant system directory, otherwise return ....
Generate and return .true. if the input path (whether a file or a directory) exists and ....
Generate and return .true. if the attempt to create the requested directory path fails,...
Generate and return .true. is the input path is a file (not a directory), otherwise return ....
Generate and return a list of all paths within the specified input path.
This module contains procedures and generic interfaces for resizing allocatable arrays of various typ...
This module contains the derived types for generating allocatable containers of scalar,...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
This is the css_type type for generating instances of container of scalar of string objects.
Generate and return an object of type display_type.
Example Unix compile command via Intel ifort
compiler ⛓
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example Windows Batch compile command via Intel ifort
compiler ⛓
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
Example Unix / MinGW compile command via GNU gfortran
compiler ⛓
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example output ⛓
9"tempdir_20241027_224348_402_pid_1"
13"tempdir_20241027_224348_402_pid_1/new_20241027_224348_407_pid_1"
14open(newunit
= unit, file
= path, status
= 'replace');
close(unit)
20if (
.not. isFailedRemove(path))
error stop 'removal of non existing path fails unless `forced`.'
21if (
isFailedRemove(path, forced
= .true._LK))
error stop 'removal of non existing path fails unless `forced`.'
24if (
isFailedRemove(dir, forced
= .true._LK, recursive
= .true._LK))
error stop 'removal of directory failed.'
37"tempdir_20241027_224348_418_pid_1"
40do i
= 1,
3; list(i)
%val
= getPathNew(dir, prefix
= SK_
'tempfile_');
end do
41do i
= 4,
size(list); list(i)
%val
= getPathNew(dir, prefix
= SK_
'dumpfile_');
end do
43"tempdir_20241027_224348_418_pid_1/tempfile_20241027_224348_422_pid_1",
"tempdir_20241027_224348_418_pid_1/tempfile_20241027_224348_423_pid_1",
"tempdir_20241027_224348_418_pid_1/tempfile_20241027_224348_425_pid_1",
"tempdir_20241027_224348_418_pid_1/dumpfile_20241027_224348_426_pid_1",
"tempdir_20241027_224348_418_pid_1/dumpfile_20241027_224348_428_pid_1"
46do i
= 1,
size(list);
open(
newunit = unit,
file = list(i)
%val, status
= 'replace');
close(unit);
end do
48"dumpfile_20241027_224348_426_pid_1",
"dumpfile_20241027_224348_428_pid_1",
"tempfile_20241027_224348_422_pid_1",
"tempfile_20241027_224348_423_pid_1",
"tempfile_20241027_224348_425_pid_1"
51"tempdir_20241027_224348_418_pid_1/*ump*"
53"tempdir_20241027_224348_418_pid_1/dumpfile_20241027_224348_426_pid_1",
"tempdir_20241027_224348_418_pid_1/dumpfile_20241027_224348_428_pid_1"
54if (
isFailedRemove(pattern, forced
= .true._LK, recursive
= .true._LK))
error stop 'removal of file(s) matching pattern '''//pattern
//''' failed.'
62"./tempdir_20241027_224348_418_pid_1"
63if (
isFailedRemove(pattern, forced
= .true._LK, recursive
= .true._LK))
error stop 'removal of directories and files matching pattern '''//pattern
//''' failed.'
- Test:
- test_pm_sysPath
- Todo:
- High Priority: The current Fortran standard 202x does not allow passing characters of non-default kind to the intrinsic Fortran statements and procedures.
As such, the implementation of this procedure for non-default character
kinds leads to compile-time kind mismatch errors.
This procedure should be converted back to a generic interface in the future when non-default character kinds are also fully supported by the intrinsic functions.
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
-
If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
-
If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
- Copyright
- Computational Data Science Lab
- Author:
- Amir Shahmoradi, Tuesday March 7, 2017, 3:09 AM, Institute for Computational Engineering and Sciences (ICES), The University of Texas Austin
Definition at line 3749 of file pm_sysPath.F90.