Sys.glob package:base R Documentation _W_i_l_d_c_a_r_d _E_x_p_a_n_s_i_o_n _o_n _F_i_l_e _P_a_t_h_s _D_e_s_c_r_i_p_t_i_o_n: Function to do wildcard expansion (also known as 'globbing') on file paths. Platforms are not required to support this, but all knoen current R platforms do. _U_s_a_g_e: Sys.glob(paths, dirmark = FALSE) _A_r_g_u_m_e_n_t_s: paths: character vector of patterns for relative or absolute filepaths. Missing values will be ignored. dirmark: logical: should matches to directories from patterns that do not already end in '/' have a slash appended? May not be supported on all platforms. _D_e_t_a_i_l_s: This expands wildcards in file paths. For precise details, see your system's documentation on the 'glob' system call. There is a POSIX 1003.2 standard (see ) but some OSes will go beyond this. The R implementation will always do tilde-expansion (see 'path.expand'). All systems should interpret '*' (match zero or more characters), '?' (match a single character) and (probably) '[' (begin a character class or range). If a filename starts with '.' this must be matched explicitly. By default paths ending in '/' will be accepted and matched only to directories. The rest of these details are indicative (and based on the POSIX standard). '[' begins a character class. If the first character in '[...]' is not '!', this is a character class which matches a single character against any of the characters specified. The class cannot be empty, so ']' can be included provided it is first. If the first character is '!', the character class matches a single character which is _none_ of the specified characters. Character classes can include ranges such as '[A-Z]': include '-' as a character by having it first or last in a class. (The interpretation of ranges should be locale-specific, so the example is not a good idea in an Estonian locale.) One can remove the special meaning of '?', '*' and '[' by preceding them by a backslash (except within a character class). _V_a_l_u_e: A character vector of matched file paths. The order is system-specific (but in the order of the elements of 'paths'): it is normally collated in either the current locale or in byte (ASCII) order. Directory errors are normally ignored, so the matches are to accessible file paths (but not necessarily accessible files). On platforms which do not have the 'glob' system call, 'paths' is returned unchanged. _S_e_e _A_l_s_o: 'path.expand'. Quotes for handling backslashes in character strings. _E_x_a_m_p_l_e_s: ## Not run: Sys.glob(file.path(R.home(), "library", "*", "R", "*.rdx")) ## End(Not run)