List Elements Recursively up to Depth
Usage
listToDepth(
path,
max_depth = 0L,
full_info = FALSE,
FUN = listFiles,
...,
depth = 0,
prob_mutate = 0,
template = NULL
)
Arguments
- path
path to the element at which to start listing
- max_depth
maximal depth level of which to list elements. A value of
0
means non-recursive listing, a value ofNA
represents fully recursive listing.- full_info
return only
path
andisdir
information or the full information provided byFUN(full_info = TRUE)
?- FUN
function called to get the listing of the element given in
path
. The function must accept a path as its first argument and it must define the argumentfull_info
second. It may accept further arguments. It must always return a data frame. Forfull_info = FALSE
the data frame must have columnsfile
andisdir
(is the "file" a directory?). Forfull_info = TRUE
the function may return further columns. The function must provide an empty data frame with the expected columns when being called withcharacter()
as the first argument. The function is expected to set the attribute "failed" to the given path in case that the path could not be accessed (e.g. because of a broken internet connection if the listing is done remotely). Seekwb.utils:::listFiles
for an example implementation that somehow simulates the behaviour of thedir
function. Seekwb.dwd::list_url()
for a more advanced usage of this function in order to recursively list the files on an FTP server (FTP = file transfer protocol).- ...
further arguments passed to
FUN
- depth
start depth of recursion if
max_depth > 0
. This argument is for internal use and not intended to be set by the user!- prob_mutate
probability to alter the path so that it becomes useless. This is zero by default. Set the value only if you want to test how the function behaves if the listing of a path fails.
- template
empty data frame (zero rows) and with columns that are identical to the columns in the data frame returned by
FUN
. If not provided the function will callFUN
once with a zero-lengthpath
argument expecting to retrieve the template that is expected here.
Value
data frame containing at least the columns file
and
isdir
. If full_info = TRUE
the result data frame may contain
further columns, as provided by the function given in FUN
for
full_info = TRUE
.
Examples
# Example list function provided in this package (file listing)
FUN <- kwb.utils:::listFiles
# The list function must provide empty records when no path is given. The
# returned data frame must provide the columns "file" and "isdir" ...
FUN()
#> listing .
#> file isdir
#> 1 DIN.A4.html FALSE
#> 2 Rplot001.png FALSE
#> 3 Rplot002.png FALSE
#> 4 addClass.html FALSE
#> 5 addRowWithName.html FALSE
#> 6 addSuffixToColumns.html FALSE
#> 7 allAreEqual.html FALSE
#> 8 allAreIdentical.html FALSE
#> 9 almostEqual.html FALSE
#> 10 appendSuffix.html FALSE
#> 11 arglist-1.png FALSE
#> 12 arglist-2.png FALSE
#> 13 arglist.html FALSE
#> 14 argsCsv.html FALSE
#> 15 arrayToDataFrame.html FALSE
#> 16 asColumnList.html FALSE
#> 17 asNoFactorDataFrame.html FALSE
#> 18 asRowList.html FALSE
#> 19 assertFinalSlash.html FALSE
#> 20 assertRowsAndColumns.html FALSE
#> 21 assignAll.html FALSE
#> 22 assignArgumentDefaults.html FALSE
#> 23 assignGlobally.html FALSE
#> 24 assignObjects.html FALSE
#> 25 assignPackageObjects.html FALSE
#> 26 atLeastOneRowIn.html FALSE
#> 27 backspace.html FALSE
#> 28 breakInSequence.html FALSE
#> 29 callWith-1.png FALSE
#> 30 callWith-2.png FALSE
#> 31 callWith.html FALSE
#> 32 callWithData.html FALSE
#> 33 callWithStringsAsFactors.html FALSE
#> 34 catAndRun.html FALSE
#> 35 catChanges.html FALSE
#> 36 catChangesIf.html FALSE
#> 37 catIf.html FALSE
#> 38 catLines.html FALSE
#> 39 catNewLineIf.html FALSE
#> 40 catchWarning.html FALSE
#> 41 checkForMissingColumns.html FALSE
#> 42 clearConsole.html FALSE
#> 43 clipMatrix.html FALSE
#> 44 cmdLinePath.html FALSE
#> 45 colMaxima.html FALSE
#> 46 colMinima.html FALSE
#> 47 colNaNumbers.html FALSE
#> 48 colStatisticOneFunction.html FALSE
#> 49 colStatistics.html FALSE
#> 50 collapsed.html FALSE
#> 51 columnDescriptor.html FALSE
#> 52 columnToDate.html FALSE
#> 53 columnwisePercentage.html FALSE
#> 54 combineAlternatingly.html FALSE
#> 55 commaCollapsed.html FALSE
#> 56 commonNames.html FALSE
#> 57 compareDataFrames.html FALSE
#> 58 compareSets.html FALSE
#> 59 containsNulString.html FALSE
#> 60 convertCsvFile.html FALSE
#> 61 copyAttributes.html FALSE
#> 62 copyDirectoryStructure.html FALSE
#> 63 copyListElements.html FALSE
#> 64 countNaInColumn.html FALSE
#> 65 countOrSum.html FALSE
#> 66 createAccessor.html FALSE
#> 67 createDirAndReturnPath.html FALSE
#> 68 createDirectories.html FALSE
#> 69 createDirectory.html FALSE
#> 70 createFunctionAssignObjects.html FALSE
#> 71 createFunctionExtdataFile.html FALSE
#> 72 createIdAlong.html FALSE
#> 73 createMatrix.html FALSE
#> 74 createPasswordFile.html FALSE
#> 75 createStorage.html FALSE
#> 76 csvTextToDataFrame.html FALSE
#> 77 decode.html FALSE
#> 78 defaultIf.html FALSE
#> 79 defaultIfNA.html FALSE
#> 80 defaultIfNULL.html FALSE
#> 81 defaultIfZero.html FALSE
#> 82 defaultLevels.html FALSE
#> 83 defaultWindowsProgramFolders.html FALSE
#> 84 desktop.html FALSE
#> 85 diffrows.html FALSE
#> 86 directoryName.html FALSE
#> 87 dot-OStype.html FALSE
#> 88 dot-log.html FALSE
#> 89 dot-logline.html FALSE
#> 90 dot-logok.html FALSE
#> 91 dot-logstart.html FALSE
#> 92 dropDim.html FALSE
#> 93 dropUnusedFactorLevels.html FALSE
#> 94 encode.html FALSE
#> 95 enlargeVector.html FALSE
#> 96 excludeNULL.html FALSE
#> 97 expandGrid.html FALSE
#> 98 extdataFile.html FALSE
#> 99 extendLimits.html FALSE
#> 100 extractRowRanges.html FALSE
#> 101 extractSubstring.html FALSE
#> 102 fileExtension.html FALSE
#> 103 findChanges.html FALSE
#> 104 findPartialDuplicates.html FALSE
#> 105 finishAndShowPdf.html FALSE
#> 106 finishAndShowPdfIf.html FALSE
#> 107 firstElement.html FALSE
#> 108 firstPosixColumn.html FALSE
#> 109 frenchToAscii.html FALSE
#> 110 frequencyTable.html FALSE
#> 111 fullWinPath.html FALSE
#> 112 fullySorted.html FALSE
#> 113 generateKeyFile.html FALSE
#> 114 getAttribute.html FALSE
#> 115 getByPositiveOrNegativeIndex.html FALSE
#> 116 getElementLengths.html FALSE
#> 117 getEvenNumbers.html FALSE
#> 118 getFunctionValueOrDefault.html FALSE
#> 119 getGlobally.html FALSE
#> 120 getKeywordPositions.html FALSE
#> 121 getListNode.html FALSE
#> 122 getNamesOfObjectsInRDataFiles.html FALSE
#> 123 getObjectFromRDataFile.html FALSE
#> 124 getOddNumbers.html FALSE
#> 125 getPassword.html FALSE
#> 126 getPathsAndValuesFromRecursiveList.html FALSE
#> 127 getTagNames.html FALSE
#> 128 get_homedir.html FALSE
#> 129 guessSeparator.1.html FALSE
#> 130 guessSeparator.2.html FALSE
#> 131 guessSeparator.html FALSE
#> 132 hasFinalSlash.html FALSE
#> 133 hasZeroLength.html FALSE
#> 134 headtail.html FALSE
#> 135 hsAddMissingCols.html FALSE
#> 136 hsChrToNum.html FALSE
#> 137 hsCountInStr.html FALSE
#> 138 hsDelEmptyCols.html FALSE
#> 139 hsMatrixToListForm.html FALSE
#> 140 hsMovingMean-1.png FALSE
#> 141 hsMovingMean.html FALSE
#> 142 hsOpenWindowsExplorer.html FALSE
#> 143 hsPrepPdf.html FALSE
#> 144 hsQuoteChr.html FALSE
#> 145 hsRenameColumns.html FALSE
#> 146 hsResolve.html FALSE
#> 147 hsRestoreAttributes.html FALSE
#> 148 hsSafeName.html FALSE
#> 149 hsShell.html FALSE
#> 150 hsShowPdf.html FALSE
#> 151 hsStringToDate.html FALSE
#> 152 hsStringToDouble.html FALSE
#> 153 hsSubstSpecChars.html FALSE
#> 154 hsSystem.html FALSE
#> 155 hsTrim.html FALSE
#> 156 hsValidValue.html FALSE
#> 157 inRange.html FALSE
#> 158 indent.html FALSE
#> 159 index.html FALSE
#> 160 insertColumns.html FALSE
#> 161 intToNumeralSystem.html FALSE
#> 162 is.unnamed.html FALSE
#> 163 isASCII.html FALSE
#> 164 isDotOrDoubleDot.html FALSE
#> 165 isEvenNumber.html FALSE
#> 166 isLoaded.html FALSE
#> 167 isNaInAllColumns.html FALSE
#> 168 isNaInAllRows.html FALSE
#> 169 isNaOrEmpty.html FALSE
#> 170 isNetworkPath.html FALSE
#> 171 isNullOrEmpty.html FALSE
#> 172 isOddNumber.html FALSE
#> 173 isTryError.html FALSE
#> 174 lastElement.html FALSE
#> 175 left.html FALSE
#> 176 leftSubstringEquals.html FALSE
#> 177 limitToRange.html FALSE
#> 178 linearCombination.html FALSE
#> 179 listObjects.html FALSE
FUN(full_info = TRUE)
#> listing .
#> file isdir size mode
#> 1 DIN.A4.html FALSE 8325 644
#> 2 Rplot001.png FALSE 1011 644
#> 3 Rplot002.png FALSE 5908 644
#> 4 addClass.html FALSE 9502 644
#> 5 addRowWithName.html FALSE 9186 644
#> 6 addSuffixToColumns.html FALSE 11947 644
#> 7 allAreEqual.html FALSE 9141 644
#> 8 allAreIdentical.html FALSE 8986 644
#> 9 almostEqual.html FALSE 9157 644
#> 10 appendSuffix.html FALSE 10839 644
#> 11 arglist-1.png FALSE 18498 644
#> 12 arglist-2.png FALSE 18423 644
#> 13 arglist.html FALSE 13070 644
#> 14 argsCsv.html FALSE 9022 644
#> 15 arrayToDataFrame.html FALSE 13662 644
#> 16 asColumnList.html FALSE 11053 644
#> 17 asNoFactorDataFrame.html FALSE 11387 644
#> 18 asRowList.html FALSE 10937 644
#> 19 assertFinalSlash.html FALSE 11983 644
#> 20 assertRowsAndColumns.html FALSE 12525 644
#> 21 assignAll.html FALSE 8977 644
#> 22 assignArgumentDefaults.html FALSE 10406 644
#> 23 assignGlobally.html FALSE 8665 644
#> 24 assignObjects.html FALSE 9736 644
#> 25 assignPackageObjects.html FALSE 9234 644
#> 26 atLeastOneRowIn.html FALSE 8739 644
#> 27 backspace.html FALSE 10507 644
#> 28 breakInSequence.html FALSE 9118 644
#> 29 callWith-1.png FALSE 18498 644
#> 30 callWith-2.png FALSE 18423 644
#> 31 callWith.html FALSE 12170 644
#> 32 callWithData.html FALSE 12201 644
#> 33 callWithStringsAsFactors.html FALSE 14644 644
#> 34 catAndRun.html FALSE 12930 644
#> 35 catChanges.html FALSE 9592 644
#> 36 catChangesIf.html FALSE 9039 644
#> 37 catIf.html FALSE 8698 644
#> 38 catLines.html FALSE 8801 644
#> 39 catNewLineIf.html FALSE 9050 644
#> 40 catchWarning.html FALSE 11253 644
#> 41 checkForMissingColumns.html FALSE 9944 644
#> 42 clearConsole.html FALSE 8257 644
#> 43 clipMatrix.html FALSE 8991 644
#> 44 cmdLinePath.html FALSE 8774 644
#> 45 colMaxima.html FALSE 8788 644
#> 46 colMinima.html FALSE 8788 644
#> 47 colNaNumbers.html FALSE 8724 644
#> 48 colStatisticOneFunction.html FALSE 9215 644
#> 49 colStatistics.html FALSE 9831 644
#> 50 collapsed.html FALSE 8981 644
#> 51 columnDescriptor.html FALSE 8892 644
#> 52 columnToDate.html FALSE 11431 644
#> 53 columnwisePercentage.html FALSE 14835 644
#> 54 combineAlternatingly.html FALSE 12102 644
#> 55 commaCollapsed.html FALSE 8604 644
#> 56 commonNames.html FALSE 10149 644
#> 57 compareDataFrames.html FALSE 13564 644
#> 58 compareSets.html FALSE 11873 644
#> 59 containsNulString.html FALSE 8927 644
#> 60 convertCsvFile.html FALSE 22600 644
#> 61 copyAttributes.html FALSE 10630 644
#> 62 copyDirectoryStructure.html FALSE 9825 644
#> 63 copyListElements.html FALSE 11966 644
#> 64 countNaInColumn.html FALSE 8979 644
#> 65 countOrSum.html FALSE 13908 644
#> 66 createAccessor.html FALSE 10784 644
#> 67 createDirAndReturnPath.html FALSE 9459 644
#> 68 createDirectories.html FALSE 8950 644
#> 69 createDirectory.html FALSE 9352 644
#> 70 createFunctionAssignObjects.html FALSE 10143 644
#> 71 createFunctionExtdataFile.html FALSE 10163 644
#> 72 createIdAlong.html FALSE 11964 644
#> 73 createMatrix.html FALSE 13976 644
#> 74 createPasswordFile.html FALSE 9791 644
#> 75 createStorage.html FALSE 14926 644
#> 76 csvTextToDataFrame.html FALSE 8837 644
#> 77 decode.html FALSE 8901 644
#> 78 defaultIf.html FALSE 9328 644
#> 79 defaultIfNA.html FALSE 10506 644
#> 80 defaultIfNULL.html FALSE 10529 644
#> 81 defaultIfZero.html FALSE 11821 644
#> 82 defaultLevels.html FALSE 10620 644
#> 83 defaultWindowsProgramFolders.html FALSE 8401 644
#> 84 desktop.html FALSE 8966 644
#> 85 diffrows.html FALSE 10903 644
#> 86 directoryName.html FALSE 10223 644
#> 87 dot-OStype.html FALSE 8650 644
#> 88 dot-log.html FALSE 8699 644
#> 89 dot-logline.html FALSE 8853 644
#> 90 dot-logok.html FALSE 8789 644
#> 91 dot-logstart.html FALSE 8984 644
#> 92 dropDim.html FALSE 14020 644
#> 93 dropUnusedFactorLevels.html FALSE 13976 644
#> 94 encode.html FALSE 11223 644
#> 95 enlargeVector.html FALSE 11565 644
#> 96 excludeNULL.html FALSE 11071 644
#> 97 expandGrid.html FALSE 14744 644
#> 98 extdataFile.html FALSE 10329 644
#> 99 extendLimits.html FALSE 9309 644
#> 100 extractRowRanges.html FALSE 19686 644
#> 101 extractSubstring.html FALSE 15364 644
#> 102 fileExtension.html FALSE 10104 644
#> 103 findChanges.html FALSE 13292 644
#> 104 findPartialDuplicates.html FALSE 13373 644
#> 105 finishAndShowPdf.html FALSE 9453 644
#> 106 finishAndShowPdfIf.html FALSE 9062 644
#> 107 firstElement.html FALSE 8789 644
#> 108 firstPosixColumn.html FALSE 8684 644
#> 109 frenchToAscii.html FALSE 8706 644
#> 110 frequencyTable.html FALSE 15887 644
#> 111 fullWinPath.html FALSE 10660 644
#> 112 fullySorted.html FALSE 14577 644
#> 113 generateKeyFile.html FALSE 9006 644
#> 114 getAttribute.html FALSE 13359 644
#> 115 getByPositiveOrNegativeIndex.html FALSE 9223 644
#> 116 getElementLengths.html FALSE 10120 644
#> 117 getEvenNumbers.html FALSE 8719 644
#> 118 getFunctionValueOrDefault.html FALSE 9253 644
#> 119 getGlobally.html FALSE 9058 644
#> 120 getKeywordPositions.html FALSE 9476 644
#> 121 getListNode.html FALSE 12796 644
#> 122 getNamesOfObjectsInRDataFiles.html FALSE 8854 644
#> 123 getObjectFromRDataFile.html FALSE 9409 644
#> 124 getOddNumbers.html FALSE 8709 644
#> 125 getPassword.html FALSE 10015 644
#> 126 getPathsAndValuesFromRecursiveList.html FALSE 12609 644
#> 127 getTagNames.html FALSE 9708 644
#> 128 get_homedir.html FALSE 9122 644
#> 129 guessSeparator.1.html FALSE 9003 644
#> 130 guessSeparator.2.html FALSE 8877 644
#> 131 guessSeparator.html FALSE 9236 644
#> 132 hasFinalSlash.html FALSE 9734 644
#> 133 hasZeroLength.html FALSE 11318 644
#> 134 headtail.html FALSE 15163 644
#> 135 hsAddMissingCols.html FALSE 9666 644
#> 136 hsChrToNum.html FALSE 9634 644
#> 137 hsCountInStr.html FALSE 9029 644
#> 138 hsDelEmptyCols.html FALSE 10193 644
#> 139 hsMatrixToListForm.html FALSE 10649 644
#> 140 hsMovingMean-1.png FALSE 100974 644
#> 141 hsMovingMean.html FALSE 12561 644
#> 142 hsOpenWindowsExplorer.html FALSE 9236 644
#> 143 hsPrepPdf.html FALSE 9997 644
#> 144 hsQuoteChr.html FALSE 9304 644
#> 145 hsRenameColumns.html FALSE 8984 644
#> 146 hsResolve.html FALSE 9538 644
#> 147 hsRestoreAttributes.html FALSE 8879 644
#> 148 hsSafeName.html FALSE 11155 644
#> 149 hsShell.html FALSE 8716 644
#> 150 hsShowPdf.html FALSE 12227 644
#> 151 hsStringToDate.html FALSE 9332 644
#> 152 hsStringToDouble.html FALSE 9130 644
#> 153 hsSubstSpecChars.html FALSE 9213 644
#> 154 hsSystem.html FALSE 8728 644
#> 155 hsTrim.html FALSE 9406 644
#> 156 hsValidValue.html FALSE 9529 644
#> 157 inRange.html FALSE 9294 644
#> 158 indent.html FALSE 8956 644
#> 159 index.html FALSE 65913 644
#> 160 insertColumns.html FALSE 16465 644
#> 161 intToNumeralSystem.html FALSE 14071 644
#> 162 is.unnamed.html FALSE 11392 644
#> 163 isASCII.html FALSE 10272 644
#> 164 isDotOrDoubleDot.html FALSE 9710 644
#> 165 isEvenNumber.html FALSE 8585 644
#> 166 isLoaded.html FALSE 10927 644
#> 167 isNaInAllColumns.html FALSE 8929 644
#> 168 isNaInAllRows.html FALSE 8908 644
#> 169 isNaOrEmpty.html FALSE 9028 644
#> 170 isNetworkPath.html FALSE 9225 644
#> 171 isNullOrEmpty.html FALSE 8844 644
#> 172 isOddNumber.html FALSE 8575 644
#> 173 isTryError.html FALSE 9880 644
#> 174 lastElement.html FALSE 8937 644
#> 175 left.html FALSE 9385 644
#> 176 leftSubstringEquals.html FALSE 9983 644
#> 177 limitToRange.html FALSE 9808 644
#> 178 linearCombination.html FALSE 12279 644
#> 179 listObjects.html FALSE 10305 644
#> mtime ctime atime uid gid uname
#> 1 2024-03-28 12:46:32 2024-03-28 12:46:32 2024-03-28 12:46:32 501 20 runner
#> 2 2024-03-28 12:47:43 2024-03-28 12:47:43 2024-03-28 12:46:33 501 20 runner
#> 3 2024-03-28 12:46:42 2024-03-28 12:46:42 2024-03-28 12:46:35 501 20 runner
#> 4 2024-03-28 12:46:32 2024-03-28 12:46:32 2024-03-28 12:46:32 501 20 runner
#> 5 2024-03-28 12:46:33 2024-03-28 12:46:33 2024-03-28 12:46:33 501 20 runner
#> 6 2024-03-28 12:46:33 2024-03-28 12:46:33 2024-03-28 12:46:33 501 20 runner
#> 7 2024-03-28 12:46:34 2024-03-28 12:46:34 2024-03-28 12:46:34 501 20 runner
#> 8 2024-03-28 12:46:34 2024-03-28 12:46:34 2024-03-28 12:46:34 501 20 runner
#> 9 2024-03-28 12:46:34 2024-03-28 12:46:34 2024-03-28 12:46:34 501 20 runner
#> 10 2024-03-28 12:46:35 2024-03-28 12:46:35 2024-03-28 12:46:35 501 20 runner
#> 11 2024-03-28 12:46:35 2024-03-28 12:46:35 2024-03-28 12:46:35 501 20 runner
#> 12 2024-03-28 12:46:35 2024-03-28 12:46:35 2024-03-28 12:46:35 501 20 runner
#> 13 2024-03-28 12:46:36 2024-03-28 12:46:36 2024-03-28 12:46:36 501 20 runner
#> 14 2024-03-28 12:46:36 2024-03-28 12:46:36 2024-03-28 12:46:36 501 20 runner
#> 15 2024-03-28 12:46:37 2024-03-28 12:46:37 2024-03-28 12:46:37 501 20 runner
#> 16 2024-03-28 12:46:37 2024-03-28 12:46:37 2024-03-28 12:46:37 501 20 runner
#> 17 2024-03-28 12:46:37 2024-03-28 12:46:37 2024-03-28 12:46:37 501 20 runner
#> 18 2024-03-28 12:46:38 2024-03-28 12:46:38 2024-03-28 12:46:38 501 20 runner
#> 19 2024-03-28 12:46:38 2024-03-28 12:46:38 2024-03-28 12:46:38 501 20 runner
#> 20 2024-03-28 12:46:39 2024-03-28 12:46:39 2024-03-28 12:46:39 501 20 runner
#> 21 2024-03-28 12:46:39 2024-03-28 12:46:39 2024-03-28 12:46:39 501 20 runner
#> 22 2024-03-28 12:46:40 2024-03-28 12:46:40 2024-03-28 12:46:40 501 20 runner
#> 23 2024-03-28 12:46:40 2024-03-28 12:46:40 2024-03-28 12:46:40 501 20 runner
#> 24 2024-03-28 12:46:40 2024-03-28 12:46:40 2024-03-28 12:46:40 501 20 runner
#> 25 2024-03-28 12:46:41 2024-03-28 12:46:41 2024-03-28 12:46:41 501 20 runner
#> 26 2024-03-28 12:46:41 2024-03-28 12:46:41 2024-03-28 12:46:41 501 20 runner
#> 27 2024-03-28 12:46:42 2024-03-28 12:46:42 2024-03-28 12:46:42 501 20 runner
#> 28 2024-03-28 12:46:42 2024-03-28 12:46:42 2024-03-28 12:46:42 501 20 runner
#> 29 2024-03-28 12:46:42 2024-03-28 12:46:42 2024-03-28 12:46:42 501 20 runner
#> 30 2024-03-28 12:46:42 2024-03-28 12:46:42 2024-03-28 12:46:42 501 20 runner
#> 31 2024-03-28 12:46:42 2024-03-28 12:46:42 2024-03-28 12:46:42 501 20 runner
#> 32 2024-03-28 12:46:43 2024-03-28 12:46:43 2024-03-28 12:46:43 501 20 runner
#> 33 2024-03-28 12:46:44 2024-03-28 12:46:44 2024-03-28 12:46:44 501 20 runner
#> 34 2024-03-28 12:46:44 2024-03-28 12:46:44 2024-03-28 12:46:44 501 20 runner
#> 35 2024-03-28 12:46:44 2024-03-28 12:46:44 2024-03-28 12:46:44 501 20 runner
#> 36 2024-03-28 12:46:45 2024-03-28 12:46:45 2024-03-28 12:46:45 501 20 runner
#> 37 2024-03-28 12:46:45 2024-03-28 12:46:45 2024-03-28 12:46:45 501 20 runner
#> 38 2024-03-28 12:46:46 2024-03-28 12:46:46 2024-03-28 12:46:46 501 20 runner
#> 39 2024-03-28 12:46:46 2024-03-28 12:46:46 2024-03-28 12:46:46 501 20 runner
#> 40 2024-03-28 12:46:46 2024-03-28 12:46:46 2024-03-28 12:46:46 501 20 runner
#> 41 2024-03-28 12:46:47 2024-03-28 12:46:47 2024-03-28 12:46:47 501 20 runner
#> 42 2024-03-28 12:46:47 2024-03-28 12:46:47 2024-03-28 12:46:47 501 20 runner
#> 43 2024-03-28 12:46:47 2024-03-28 12:46:47 2024-03-28 12:46:47 501 20 runner
#> 44 2024-03-28 12:46:48 2024-03-28 12:46:48 2024-03-28 12:46:48 501 20 runner
#> 45 2024-03-28 12:46:48 2024-03-28 12:46:48 2024-03-28 12:46:48 501 20 runner
#> 46 2024-03-28 12:46:48 2024-03-28 12:46:48 2024-03-28 12:46:48 501 20 runner
#> 47 2024-03-28 12:46:49 2024-03-28 12:46:49 2024-03-28 12:46:49 501 20 runner
#> 48 2024-03-28 12:46:49 2024-03-28 12:46:49 2024-03-28 12:46:49 501 20 runner
#> 49 2024-03-28 12:46:50 2024-03-28 12:46:50 2024-03-28 12:46:50 501 20 runner
#> 50 2024-03-28 12:46:50 2024-03-28 12:46:50 2024-03-28 12:46:50 501 20 runner
#> 51 2024-03-28 12:46:50 2024-03-28 12:46:50 2024-03-28 12:46:50 501 20 runner
#> 52 2024-03-28 12:46:51 2024-03-28 12:46:51 2024-03-28 12:46:51 501 20 runner
#> 53 2024-03-28 12:46:51 2024-03-28 12:46:51 2024-03-28 12:46:51 501 20 runner
#> 54 2024-03-28 12:46:52 2024-03-28 12:46:52 2024-03-28 12:46:52 501 20 runner
#> 55 2024-03-28 12:46:52 2024-03-28 12:46:52 2024-03-28 12:46:52 501 20 runner
#> 56 2024-03-28 12:46:53 2024-03-28 12:46:53 2024-03-28 12:46:53 501 20 runner
#> 57 2024-03-28 12:46:53 2024-03-28 12:46:53 2024-03-28 12:46:53 501 20 runner
#> 58 2024-03-28 12:46:53 2024-03-28 12:46:53 2024-03-28 12:46:53 501 20 runner
#> 59 2024-03-28 12:46:54 2024-03-28 12:46:54 2024-03-28 12:46:54 501 20 runner
#> 60 2024-03-28 12:46:54 2024-03-28 12:46:54 2024-03-28 12:46:54 501 20 runner
#> 61 2024-03-28 12:46:55 2024-03-28 12:46:55 2024-03-28 12:46:55 501 20 runner
#> 62 2024-03-28 12:46:55 2024-03-28 12:46:55 2024-03-28 12:46:55 501 20 runner
#> 63 2024-03-28 12:46:55 2024-03-28 12:46:55 2024-03-28 12:46:55 501 20 runner
#> 64 2024-03-28 12:46:56 2024-03-28 12:46:56 2024-03-28 12:46:56 501 20 runner
#> 65 2024-03-28 12:46:56 2024-03-28 12:46:56 2024-03-28 12:46:56 501 20 runner
#> 66 2024-03-28 12:46:57 2024-03-28 12:46:57 2024-03-28 12:46:57 501 20 runner
#> 67 2024-03-28 12:46:57 2024-03-28 12:46:57 2024-03-28 12:46:57 501 20 runner
#> 68 2024-03-28 12:46:58 2024-03-28 12:46:58 2024-03-28 12:46:58 501 20 runner
#> 69 2024-03-28 12:46:58 2024-03-28 12:46:58 2024-03-28 12:46:58 501 20 runner
#> 70 2024-03-28 12:46:58 2024-03-28 12:46:58 2024-03-28 12:46:58 501 20 runner
#> 71 2024-03-28 12:46:59 2024-03-28 12:46:59 2024-03-28 12:46:59 501 20 runner
#> 72 2024-03-28 12:46:59 2024-03-28 12:46:59 2024-03-28 12:46:59 501 20 runner
#> 73 2024-03-28 12:47:00 2024-03-28 12:47:00 2024-03-28 12:47:00 501 20 runner
#> 74 2024-03-28 12:47:00 2024-03-28 12:47:00 2024-03-28 12:47:00 501 20 runner
#> 75 2024-03-28 12:47:01 2024-03-28 12:47:01 2024-03-28 12:47:01 501 20 runner
#> 76 2024-03-28 12:47:01 2024-03-28 12:47:01 2024-03-28 12:47:01 501 20 runner
#> 77 2024-03-28 12:47:01 2024-03-28 12:47:01 2024-03-28 12:47:01 501 20 runner
#> 78 2024-03-28 12:47:02 2024-03-28 12:47:02 2024-03-28 12:47:02 501 20 runner
#> 79 2024-03-28 12:47:02 2024-03-28 12:47:02 2024-03-28 12:47:02 501 20 runner
#> 80 2024-03-28 12:47:03 2024-03-28 12:47:03 2024-03-28 12:47:03 501 20 runner
#> 81 2024-03-28 12:47:03 2024-03-28 12:47:03 2024-03-28 12:47:03 501 20 runner
#> 82 2024-03-28 12:47:04 2024-03-28 12:47:04 2024-03-28 12:47:04 501 20 runner
#> 83 2024-03-28 12:47:04 2024-03-28 12:47:04 2024-03-28 12:47:04 501 20 runner
#> 84 2024-03-28 12:47:04 2024-03-28 12:47:04 2024-03-28 12:47:04 501 20 runner
#> 85 2024-03-28 12:47:05 2024-03-28 12:47:05 2024-03-28 12:47:05 501 20 runner
#> 86 2024-03-28 12:47:05 2024-03-28 12:47:05 2024-03-28 12:47:05 501 20 runner
#> 87 2024-03-28 12:47:06 2024-03-28 12:47:06 2024-03-28 12:47:06 501 20 runner
#> 88 2024-03-28 12:47:06 2024-03-28 12:47:06 2024-03-28 12:47:06 501 20 runner
#> 89 2024-03-28 12:47:06 2024-03-28 12:47:06 2024-03-28 12:47:06 501 20 runner
#> 90 2024-03-28 12:47:07 2024-03-28 12:47:07 2024-03-28 12:47:07 501 20 runner
#> 91 2024-03-28 12:47:07 2024-03-28 12:47:07 2024-03-28 12:47:07 501 20 runner
#> 92 2024-03-28 12:47:08 2024-03-28 12:47:08 2024-03-28 12:47:08 501 20 runner
#> 93 2024-03-28 12:47:08 2024-03-28 12:47:08 2024-03-28 12:47:08 501 20 runner
#> 94 2024-03-28 12:47:08 2024-03-28 12:47:08 2024-03-28 12:47:08 501 20 runner
#> 95 2024-03-28 12:47:09 2024-03-28 12:47:09 2024-03-28 12:47:09 501 20 runner
#> 96 2024-03-28 12:47:09 2024-03-28 12:47:09 2024-03-28 12:47:09 501 20 runner
#> 97 2024-03-28 12:47:10 2024-03-28 12:47:10 2024-03-28 12:47:10 501 20 runner
#> 98 2024-03-28 12:47:10 2024-03-28 12:47:10 2024-03-28 12:47:10 501 20 runner
#> 99 2024-03-28 12:47:11 2024-03-28 12:47:11 2024-03-28 12:47:11 501 20 runner
#> 100 2024-03-28 12:47:11 2024-03-28 12:47:11 2024-03-28 12:47:11 501 20 runner
#> 101 2024-03-28 12:47:12 2024-03-28 12:47:12 2024-03-28 12:47:12 501 20 runner
#> 102 2024-03-28 12:47:12 2024-03-28 12:47:12 2024-03-28 12:47:12 501 20 runner
#> 103 2024-03-28 12:47:12 2024-03-28 12:47:12 2024-03-28 12:47:12 501 20 runner
#> 104 2024-03-28 12:47:13 2024-03-28 12:47:13 2024-03-28 12:47:13 501 20 runner
#> 105 2024-03-28 12:47:13 2024-03-28 12:47:13 2024-03-28 12:47:13 501 20 runner
#> 106 2024-03-28 12:47:14 2024-03-28 12:47:14 2024-03-28 12:47:14 501 20 runner
#> 107 2024-03-28 12:47:14 2024-03-28 12:47:14 2024-03-28 12:47:14 501 20 runner
#> 108 2024-03-28 12:47:14 2024-03-28 12:47:14 2024-03-28 12:47:14 501 20 runner
#> 109 2024-03-28 12:47:15 2024-03-28 12:47:15 2024-03-28 12:47:15 501 20 runner
#> 110 2024-03-28 12:47:15 2024-03-28 12:47:15 2024-03-28 12:47:15 501 20 runner
#> 111 2024-03-28 12:47:16 2024-03-28 12:47:16 2024-03-28 12:47:16 501 20 runner
#> 112 2024-03-28 12:47:16 2024-03-28 12:47:16 2024-03-28 12:47:16 501 20 runner
#> 113 2024-03-28 12:47:17 2024-03-28 12:47:17 2024-03-28 12:47:17 501 20 runner
#> 114 2024-03-28 12:47:17 2024-03-28 12:47:17 2024-03-28 12:47:17 501 20 runner
#> 115 2024-03-28 12:47:18 2024-03-28 12:47:18 2024-03-28 12:47:18 501 20 runner
#> 116 2024-03-28 12:47:18 2024-03-28 12:47:18 2024-03-28 12:47:18 501 20 runner
#> 117 2024-03-28 12:47:19 2024-03-28 12:47:19 2024-03-28 12:47:19 501 20 runner
#> 118 2024-03-28 12:47:19 2024-03-28 12:47:19 2024-03-28 12:47:19 501 20 runner
#> 119 2024-03-28 12:47:19 2024-03-28 12:47:19 2024-03-28 12:47:19 501 20 runner
#> 120 2024-03-28 12:47:20 2024-03-28 12:47:20 2024-03-28 12:47:20 501 20 runner
#> 121 2024-03-28 12:47:21 2024-03-28 12:47:21 2024-03-28 12:47:21 501 20 runner
#> 122 2024-03-28 12:47:21 2024-03-28 12:47:21 2024-03-28 12:47:21 501 20 runner
#> 123 2024-03-28 12:47:21 2024-03-28 12:47:21 2024-03-28 12:47:21 501 20 runner
#> 124 2024-03-28 12:47:22 2024-03-28 12:47:22 2024-03-28 12:47:22 501 20 runner
#> 125 2024-03-28 12:47:22 2024-03-28 12:47:22 2024-03-28 12:47:22 501 20 runner
#> 126 2024-03-28 12:47:23 2024-03-28 12:47:23 2024-03-28 12:47:23 501 20 runner
#> 127 2024-03-28 12:47:23 2024-03-28 12:47:23 2024-03-28 12:47:23 501 20 runner
#> 128 2024-03-28 12:47:23 2024-03-28 12:47:23 2024-03-28 12:47:23 501 20 runner
#> 129 2024-03-28 12:47:24 2024-03-28 12:47:24 2024-03-28 12:47:24 501 20 runner
#> 130 2024-03-28 12:47:24 2024-03-28 12:47:24 2024-03-28 12:47:24 501 20 runner
#> 131 2024-03-28 12:47:25 2024-03-28 12:47:25 2024-03-28 12:47:25 501 20 runner
#> 132 2024-03-28 12:47:25 2024-03-28 12:47:25 2024-03-28 12:47:25 501 20 runner
#> 133 2024-03-28 12:47:25 2024-03-28 12:47:25 2024-03-28 12:47:25 501 20 runner
#> 134 2024-03-28 12:47:26 2024-03-28 12:47:26 2024-03-28 12:47:26 501 20 runner
#> 135 2024-03-28 12:47:26 2024-03-28 12:47:26 2024-03-28 12:47:26 501 20 runner
#> 136 2024-03-28 12:47:27 2024-03-28 12:47:27 2024-03-28 12:47:27 501 20 runner
#> 137 2024-03-28 12:47:27 2024-03-28 12:47:27 2024-03-28 12:47:27 501 20 runner
#> 138 2024-03-28 12:47:28 2024-03-28 12:47:28 2024-03-28 12:47:28 501 20 runner
#> 139 2024-03-28 12:47:28 2024-03-28 12:47:28 2024-03-28 12:47:28 501 20 runner
#> 140 2024-03-28 12:47:28 2024-03-28 12:47:28 2024-03-28 12:47:28 501 20 runner
#> 141 2024-03-28 12:47:29 2024-03-28 12:47:29 2024-03-28 12:47:29 501 20 runner
#> 142 2024-03-28 12:47:29 2024-03-28 12:47:29 2024-03-28 12:47:29 501 20 runner
#> 143 2024-03-28 12:47:29 2024-03-28 12:47:29 2024-03-28 12:47:29 501 20 runner
#> 144 2024-03-28 12:47:30 2024-03-28 12:47:30 2024-03-28 12:47:30 501 20 runner
#> 145 2024-03-28 12:47:30 2024-03-28 12:47:30 2024-03-28 12:47:30 501 20 runner
#> 146 2024-03-28 12:47:31 2024-03-28 12:47:31 2024-03-28 12:47:31 501 20 runner
#> 147 2024-03-28 12:47:31 2024-03-28 12:47:31 2024-03-28 12:47:31 501 20 runner
#> 148 2024-03-28 12:47:31 2024-03-28 12:47:31 2024-03-28 12:47:31 501 20 runner
#> 149 2024-03-28 12:47:32 2024-03-28 12:47:32 2024-03-28 12:47:32 501 20 runner
#> 150 2024-03-28 12:47:32 2024-03-28 12:47:32 2024-03-28 12:47:32 501 20 runner
#> 151 2024-03-28 12:47:33 2024-03-28 12:47:33 2024-03-28 12:47:33 501 20 runner
#> 152 2024-03-28 12:47:33 2024-03-28 12:47:33 2024-03-28 12:47:33 501 20 runner
#> 153 2024-03-28 12:47:33 2024-03-28 12:47:33 2024-03-28 12:47:33 501 20 runner
#> 154 2024-03-28 12:47:34 2024-03-28 12:47:34 2024-03-28 12:47:34 501 20 runner
#> 155 2024-03-28 12:47:34 2024-03-28 12:47:34 2024-03-28 12:47:34 501 20 runner
#> 156 2024-03-28 12:47:35 2024-03-28 12:47:35 2024-03-28 12:47:35 501 20 runner
#> 157 2024-03-28 12:47:35 2024-03-28 12:47:35 2024-03-28 12:47:35 501 20 runner
#> 158 2024-03-28 12:47:35 2024-03-28 12:47:35 2024-03-28 12:47:35 501 20 runner
#> 159 2024-03-28 12:46:31 2024-03-28 12:46:31 2024-03-28 12:46:31 501 20 runner
#> 160 2024-03-28 12:47:36 2024-03-28 12:47:36 2024-03-28 12:47:36 501 20 runner
#> 161 2024-03-28 12:47:36 2024-03-28 12:47:36 2024-03-28 12:47:36 501 20 runner
#> 162 2024-03-28 12:47:37 2024-03-28 12:47:37 2024-03-28 12:47:37 501 20 runner
#> 163 2024-03-28 12:47:37 2024-03-28 12:47:37 2024-03-28 12:47:37 501 20 runner
#> 164 2024-03-28 12:47:38 2024-03-28 12:47:38 2024-03-28 12:47:38 501 20 runner
#> 165 2024-03-28 12:47:38 2024-03-28 12:47:38 2024-03-28 12:47:38 501 20 runner
#> 166 2024-03-28 12:47:38 2024-03-28 12:47:38 2024-03-28 12:47:38 501 20 runner
#> 167 2024-03-28 12:47:39 2024-03-28 12:47:39 2024-03-28 12:47:39 501 20 runner
#> 168 2024-03-28 12:47:39 2024-03-28 12:47:39 2024-03-28 12:47:39 501 20 runner
#> 169 2024-03-28 12:47:40 2024-03-28 12:47:40 2024-03-28 12:47:40 501 20 runner
#> 170 2024-03-28 12:47:40 2024-03-28 12:47:40 2024-03-28 12:47:40 501 20 runner
#> 171 2024-03-28 12:47:40 2024-03-28 12:47:40 2024-03-28 12:47:40 501 20 runner
#> 172 2024-03-28 12:47:41 2024-03-28 12:47:41 2024-03-28 12:47:41 501 20 runner
#> 173 2024-03-28 12:47:41 2024-03-28 12:47:41 2024-03-28 12:47:41 501 20 runner
#> 174 2024-03-28 12:47:41 2024-03-28 12:47:41 2024-03-28 12:47:41 501 20 runner
#> 175 2024-03-28 12:47:42 2024-03-28 12:47:42 2024-03-28 12:47:42 501 20 runner
#> 176 2024-03-28 12:47:42 2024-03-28 12:47:42 2024-03-28 12:47:42 501 20 runner
#> 177 2024-03-28 12:47:42 2024-03-28 12:47:42 2024-03-28 12:47:42 501 20 runner
#> 178 2024-03-28 12:47:43 2024-03-28 12:47:43 2024-03-28 12:47:43 501 20 runner
#> 179 2024-03-28 12:47:43 2024-03-28 12:47:43 2024-03-28 12:47:43 501 20 runner
#> grname
#> 1 staff
#> 2 staff
#> 3 staff
#> 4 staff
#> 5 staff
#> 6 staff
#> 7 staff
#> 8 staff
#> 9 staff
#> 10 staff
#> 11 staff
#> 12 staff
#> 13 staff
#> 14 staff
#> 15 staff
#> 16 staff
#> 17 staff
#> 18 staff
#> 19 staff
#> 20 staff
#> 21 staff
#> 22 staff
#> 23 staff
#> 24 staff
#> 25 staff
#> 26 staff
#> 27 staff
#> 28 staff
#> 29 staff
#> 30 staff
#> 31 staff
#> 32 staff
#> 33 staff
#> 34 staff
#> 35 staff
#> 36 staff
#> 37 staff
#> 38 staff
#> 39 staff
#> 40 staff
#> 41 staff
#> 42 staff
#> 43 staff
#> 44 staff
#> 45 staff
#> 46 staff
#> 47 staff
#> 48 staff
#> 49 staff
#> 50 staff
#> 51 staff
#> 52 staff
#> 53 staff
#> 54 staff
#> 55 staff
#> 56 staff
#> 57 staff
#> 58 staff
#> 59 staff
#> 60 staff
#> 61 staff
#> 62 staff
#> 63 staff
#> 64 staff
#> 65 staff
#> 66 staff
#> 67 staff
#> 68 staff
#> 69 staff
#> 70 staff
#> 71 staff
#> 72 staff
#> 73 staff
#> 74 staff
#> 75 staff
#> 76 staff
#> 77 staff
#> 78 staff
#> 79 staff
#> 80 staff
#> 81 staff
#> 82 staff
#> 83 staff
#> 84 staff
#> 85 staff
#> 86 staff
#> 87 staff
#> 88 staff
#> 89 staff
#> 90 staff
#> 91 staff
#> 92 staff
#> 93 staff
#> 94 staff
#> 95 staff
#> 96 staff
#> 97 staff
#> 98 staff
#> 99 staff
#> 100 staff
#> 101 staff
#> 102 staff
#> 103 staff
#> 104 staff
#> 105 staff
#> 106 staff
#> 107 staff
#> 108 staff
#> 109 staff
#> 110 staff
#> 111 staff
#> 112 staff
#> 113 staff
#> 114 staff
#> 115 staff
#> 116 staff
#> 117 staff
#> 118 staff
#> 119 staff
#> 120 staff
#> 121 staff
#> 122 staff
#> 123 staff
#> 124 staff
#> 125 staff
#> 126 staff
#> 127 staff
#> 128 staff
#> 129 staff
#> 130 staff
#> 131 staff
#> 132 staff
#> 133 staff
#> 134 staff
#> 135 staff
#> 136 staff
#> 137 staff
#> 138 staff
#> 139 staff
#> 140 staff
#> 141 staff
#> 142 staff
#> 143 staff
#> 144 staff
#> 145 staff
#> 146 staff
#> 147 staff
#> 148 staff
#> 149 staff
#> 150 staff
#> 151 staff
#> 152 staff
#> 153 staff
#> 154 staff
#> 155 staff
#> 156 staff
#> 157 staff
#> 158 staff
#> 159 staff
#> 160 staff
#> 161 staff
#> 162 staff
#> 163 staff
#> 164 staff
#> 165 staff
#> 166 staff
#> 167 staff
#> 168 staff
#> 169 staff
#> 170 staff
#> 171 staff
#> 172 staff
#> 173 staff
#> 174 staff
#> 175 staff
#> 176 staff
#> 177 staff
#> 178 staff
#> 179 staff
# ... even when being called with an empty character vector
FUN(character())
#> listing
#> [1] file isdir
#> <0 rows> (or 0-length row.names)
FUN(character(), full_info = TRUE)
#> listing
#> [1] file isdir size mode mtime ctime atime uid gid uname
#> [11] grname
#> <0 rows> (or 0-length row.names)
# Call the function recursively up to the given depth level
kwb.utils:::listToDepth(".", max_depth = 1, FUN = FUN)
#> listing .
#> listing .
#> file isdir
#> 1 DIN.A4.html FALSE
#> 2 Rplot001.png FALSE
#> 3 Rplot002.png FALSE
#> 4 addClass.html FALSE
#> 5 addRowWithName.html FALSE
#> 6 addSuffixToColumns.html FALSE
#> 7 allAreEqual.html FALSE
#> 8 allAreIdentical.html FALSE
#> 9 almostEqual.html FALSE
#> 10 appendSuffix.html FALSE
#> 11 arglist-1.png FALSE
#> 12 arglist-2.png FALSE
#> 13 arglist.html FALSE
#> 14 argsCsv.html FALSE
#> 15 arrayToDataFrame.html FALSE
#> 16 asColumnList.html FALSE
#> 17 asNoFactorDataFrame.html FALSE
#> 18 asRowList.html FALSE
#> 19 assertFinalSlash.html FALSE
#> 20 assertRowsAndColumns.html FALSE
#> 21 assignAll.html FALSE
#> 22 assignArgumentDefaults.html FALSE
#> 23 assignGlobally.html FALSE
#> 24 assignObjects.html FALSE
#> 25 assignPackageObjects.html FALSE
#> 26 atLeastOneRowIn.html FALSE
#> 27 backspace.html FALSE
#> 28 breakInSequence.html FALSE
#> 29 callWith-1.png FALSE
#> 30 callWith-2.png FALSE
#> 31 callWith.html FALSE
#> 32 callWithData.html FALSE
#> 33 callWithStringsAsFactors.html FALSE
#> 34 catAndRun.html FALSE
#> 35 catChanges.html FALSE
#> 36 catChangesIf.html FALSE
#> 37 catIf.html FALSE
#> 38 catLines.html FALSE
#> 39 catNewLineIf.html FALSE
#> 40 catchWarning.html FALSE
#> 41 checkForMissingColumns.html FALSE
#> 42 clearConsole.html FALSE
#> 43 clipMatrix.html FALSE
#> 44 cmdLinePath.html FALSE
#> 45 colMaxima.html FALSE
#> 46 colMinima.html FALSE
#> 47 colNaNumbers.html FALSE
#> 48 colStatisticOneFunction.html FALSE
#> 49 colStatistics.html FALSE
#> 50 collapsed.html FALSE
#> 51 columnDescriptor.html FALSE
#> 52 columnToDate.html FALSE
#> 53 columnwisePercentage.html FALSE
#> 54 combineAlternatingly.html FALSE
#> 55 commaCollapsed.html FALSE
#> 56 commonNames.html FALSE
#> 57 compareDataFrames.html FALSE
#> 58 compareSets.html FALSE
#> 59 containsNulString.html FALSE
#> 60 convertCsvFile.html FALSE
#> 61 copyAttributes.html FALSE
#> 62 copyDirectoryStructure.html FALSE
#> 63 copyListElements.html FALSE
#> 64 countNaInColumn.html FALSE
#> 65 countOrSum.html FALSE
#> 66 createAccessor.html FALSE
#> 67 createDirAndReturnPath.html FALSE
#> 68 createDirectories.html FALSE
#> 69 createDirectory.html FALSE
#> 70 createFunctionAssignObjects.html FALSE
#> 71 createFunctionExtdataFile.html FALSE
#> 72 createIdAlong.html FALSE
#> 73 createMatrix.html FALSE
#> 74 createPasswordFile.html FALSE
#> 75 createStorage.html FALSE
#> 76 csvTextToDataFrame.html FALSE
#> 77 decode.html FALSE
#> 78 defaultIf.html FALSE
#> 79 defaultIfNA.html FALSE
#> 80 defaultIfNULL.html FALSE
#> 81 defaultIfZero.html FALSE
#> 82 defaultLevels.html FALSE
#> 83 defaultWindowsProgramFolders.html FALSE
#> 84 desktop.html FALSE
#> 85 diffrows.html FALSE
#> 86 directoryName.html FALSE
#> 87 dot-OStype.html FALSE
#> 88 dot-log.html FALSE
#> 89 dot-logline.html FALSE
#> 90 dot-logok.html FALSE
#> 91 dot-logstart.html FALSE
#> 92 dropDim.html FALSE
#> 93 dropUnusedFactorLevels.html FALSE
#> 94 encode.html FALSE
#> 95 enlargeVector.html FALSE
#> 96 excludeNULL.html FALSE
#> 97 expandGrid.html FALSE
#> 98 extdataFile.html FALSE
#> 99 extendLimits.html FALSE
#> 100 extractRowRanges.html FALSE
#> 101 extractSubstring.html FALSE
#> 102 fileExtension.html FALSE
#> 103 findChanges.html FALSE
#> 104 findPartialDuplicates.html FALSE
#> 105 finishAndShowPdf.html FALSE
#> 106 finishAndShowPdfIf.html FALSE
#> 107 firstElement.html FALSE
#> 108 firstPosixColumn.html FALSE
#> 109 frenchToAscii.html FALSE
#> 110 frequencyTable.html FALSE
#> 111 fullWinPath.html FALSE
#> 112 fullySorted.html FALSE
#> 113 generateKeyFile.html FALSE
#> 114 getAttribute.html FALSE
#> 115 getByPositiveOrNegativeIndex.html FALSE
#> 116 getElementLengths.html FALSE
#> 117 getEvenNumbers.html FALSE
#> 118 getFunctionValueOrDefault.html FALSE
#> 119 getGlobally.html FALSE
#> 120 getKeywordPositions.html FALSE
#> 121 getListNode.html FALSE
#> 122 getNamesOfObjectsInRDataFiles.html FALSE
#> 123 getObjectFromRDataFile.html FALSE
#> 124 getOddNumbers.html FALSE
#> 125 getPassword.html FALSE
#> 126 getPathsAndValuesFromRecursiveList.html FALSE
#> 127 getTagNames.html FALSE
#> 128 get_homedir.html FALSE
#> 129 guessSeparator.1.html FALSE
#> 130 guessSeparator.2.html FALSE
#> 131 guessSeparator.html FALSE
#> 132 hasFinalSlash.html FALSE
#> 133 hasZeroLength.html FALSE
#> 134 headtail.html FALSE
#> 135 hsAddMissingCols.html FALSE
#> 136 hsChrToNum.html FALSE
#> 137 hsCountInStr.html FALSE
#> 138 hsDelEmptyCols.html FALSE
#> 139 hsMatrixToListForm.html FALSE
#> 140 hsMovingMean-1.png FALSE
#> 141 hsMovingMean.html FALSE
#> 142 hsOpenWindowsExplorer.html FALSE
#> 143 hsPrepPdf.html FALSE
#> 144 hsQuoteChr.html FALSE
#> 145 hsRenameColumns.html FALSE
#> 146 hsResolve.html FALSE
#> 147 hsRestoreAttributes.html FALSE
#> 148 hsSafeName.html FALSE
#> 149 hsShell.html FALSE
#> 150 hsShowPdf.html FALSE
#> 151 hsStringToDate.html FALSE
#> 152 hsStringToDouble.html FALSE
#> 153 hsSubstSpecChars.html FALSE
#> 154 hsSystem.html FALSE
#> 155 hsTrim.html FALSE
#> 156 hsValidValue.html FALSE
#> 157 inRange.html FALSE
#> 158 indent.html FALSE
#> 159 index.html FALSE
#> 160 insertColumns.html FALSE
#> 161 intToNumeralSystem.html FALSE
#> 162 is.unnamed.html FALSE
#> 163 isASCII.html FALSE
#> 164 isDotOrDoubleDot.html FALSE
#> 165 isEvenNumber.html FALSE
#> 166 isLoaded.html FALSE
#> 167 isNaInAllColumns.html FALSE
#> 168 isNaInAllRows.html FALSE
#> 169 isNaOrEmpty.html FALSE
#> 170 isNetworkPath.html FALSE
#> 171 isNullOrEmpty.html FALSE
#> 172 isOddNumber.html FALSE
#> 173 isTryError.html FALSE
#> 174 lastElement.html FALSE
#> 175 left.html FALSE
#> 176 leftSubstringEquals.html FALSE
#> 177 limitToRange.html FALSE
#> 178 linearCombination.html FALSE
#> 179 listObjects.html FALSE