Generate and return a list
of all paths within the specified input path
.
This generic interface is a convenience wrapper around the more verbose isFailedList.
Unlike isFailedList which can gracefully handle the occurrence of runtime error, this generic interface halts the program by calling error stop
if a runtime error occurs.
- Parameters
-
[in] | path | : The input scalar character of default kind SK of arbitrary length type parameter containing the directory or file pattern to list.
|
[in] | sort | : The input scalar character of default kind SK of arbitrary length type parameter containing the sorting methodology used for sorting paths in the listing.
The following values are supported,
-
sort = "name" : Sort all items alphabetically by their names.
-
sort = "tmod" : Sort all items chronologically by their dates of last modification (oldest first).
-
sort = "tacc" : Sort all items chronologically by their dates of last access (oldest first).
-
sort = "size" : Sort all items by their size (smallest first).
-
sort = "fext" : Sort all items alphabetically by their file name extension (empty extensions first).
(optional, default = "name" ) |
[in] | showdir | : The input scalar logical of default kind LK. If .true. , the subdirectories (if any exist) in the specified path will be also listed.
(optional, default = .true. ) |
[in] | showfile | : The input scalar logical of default kind LK. If .true. , the file (if any exist) in the specified path will be also listed.
(optional, default = .true. ) |
[in] | showhidden | : The input scalar logical of default kind LK. If .true. , the hidden files (if any exist) in the specified path will be also listed.
(optional, default = .true. ) |
[in] | reversed | : The input scalar logical of default kind LK. If .true. , the sorting of the list will be reversed.
(optional, default = .false. ) |
- Returns
list
: The output allocatable
vector of containers of type css_type containing scalar strings of kind SK, each element of which contains the path to one entry in the directory listing.
Possible calling interfaces ⛓
type(css_type), allocatable :: list(:)
logical(LK) :: showhidden, showdir, showfile
list
= ls(path, sort
= sort, showdir
= showdir, showfile
= showfile, showhidden
= showhidden, reversed
= reversed) ! `list` is a vector of string containers.
Generate and return a list of all paths within the specified input path.
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.
- Note
- The procedures of this generic interface can handle characters of any kind (including nongraphical ASCII characters like newline) on Unix systems.
- See also
- ls
isFailedList
Example usage ⛓
9 type(display_type) :: disp
14 call disp%show(
ls(SK_
'.') , deliml
= SK_
"""" )
19 call disp%show(
ls(SK_
'..') , deliml
= SK_
"""" )
24 call disp%show(
ls(SK_
'./*.F90') , deliml
= SK_
"""" )
28 call disp%show(
"ls(SK_'./main.F90')")
29 call disp%show(
ls(SK_
'./main.F90') , deliml
= SK_
"""" )
33 call disp%show(
"ls(SK_'./*.nonexistent')")
34 call disp%show(
ls(SK_
'./*.nonexistent') , deliml
= SK_
"""" )
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 .true. if the attempt to create the requested directory path fails,...
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.
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 ⛓
3"CMakeFiles/",
"CMakeCache.txt",
"CMakeLists.txt",
"Makefile",
"build.sh",
"cmake_install.cmake",
"main.F90",
"main.exe",
"main.out.F90"
7"getBaseName/",
"getDirCurrent/",
"getDirHome/",
"getDirName/",
"getDirSep/",
"getDirSeps/",
"getExtName/",
"getFileName/",
"getIndexBaseName/",
"getIndexDirName/",
"getIndexExtName/",
"getPathAbs/",
"getPathExpandedUser/",
"getPathHostNameIndex/",
"getPathJoined/",
"getPathMatch/",
"getPathNew/",
"getPathPosix/",
"getPathPosixEscaped/",
"getPathQuoted/",
"getPathSep/",
"getPathTemp/",
"getPathVerbatim/",
"getPathVerbatimCMD/",
"getPathVerbatimFish/",
"getPathVerbatimPosix/",
"getPathVerbatimPowerShell/",
"getPathWindows/",
"glob/",
"hasDriveLetter/",
"isDir/",
"isExtant/",
"isFailedChangeDir/",
"isFailedCopy/",
"isFailedGlob/",
"isFailedList/",
"isFailedMakeDir/",
"isFailedMakeDirTemp/",
"isFailedMove/",
"isFailedRemove/",
"isFile/",
"isPathAbsPosix/",
"isPathAbsWindows/",
"ls/",
"setPathMatch/",
"setPathPosix/",
"setPathPosixEscaped/",
"setPathWindows/"
18ls(SK_
'./*.nonexistent')
- Test:
- test_pm_sysPath
- Todo:
- Normal 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 the procedures of this generic interface 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, 7:03 AM, Institute for Computational Engineering and Sciences (ICES), The University of Texas Austin
Definition at line 882 of file pm_sysPath.F90.