Tagged Questions
The glob tag has no wiki summary.
32
votes
9answers
2k views
What reasons are there to prefer glob over readdir (or vice-versa) in Perl?
This question is a spin-off from this one. Some history: when I first learned Perl, I pretty much always used glob rather than opendir + readdir because I found it easier. Then later various posts and ...
24
votes
7answers
13k views
Use a Glob() to find files recursively in Python?
This is what I have:
Glob(os.path.join('src','*.c'))
but I want to search the subfolders of src. Something like this would work:
Glob(os.path.join('src','*.c'))
Glob(os.path.join('src','*','*.c'))
...
20
votes
9answers
10k views
How can I use inverse or negative wildcards when pattern matching in a unix/linux shell?
Say I want to copy the contents of a directory excluding files and folders whose names contain the word 'Music'.
cp [exclude-matches] *Music* /target_directory
What should go in place of ...
12
votes
2answers
2k views
How to implement glob in C#
I don't know if it's legit at StackOverflow to post your own answer to a question, but I saw nobody had asked this already. I went looking for a C# Glob and didn't find one, so I wrote one that ...
11
votes
2answers
164 views
How to you distinguish a symbol table from a regular hash variable?
Is there any way to tell whether a hash reference is referring to a symbol table?
That is, how could the function
sub foo {
my ($hashref) = @_;
...
}
know whether it had been invoked as
...
11
votes
7answers
1k views
Test whether a glob has any matches in bash
If I want to check for the existance of a single file, I can test for it using test -e filename or [ -e filename ].
Supposing I have a glob and I want to know whether any files exist whose names ...
10
votes
2answers
776 views
Demystifying the Perl glob (*)
In this question the poster asked how to do the following in one line:
sub my_sub {
my $ref_array = shift;
my @array = @$ref_array;
}
which with my knowledge of the basic Perl magic I would ...
10
votes
3answers
151 views
What are the comparative advantages of glob('foo*') over <foo*>?
I was just looking at Can someone tell me how to create an array of directory contents?. Unsurprisingly, file globs were offered as an answer. What surprised me was that the post recommended using ...
9
votes
1answer
1k views
How to make mercurial ignore all hidden files?
I hate seeing nearly every directory in my repository list each file twice, once with a dot in front of it and once without. I tried adding .* to my .hgignore file, but it has no effect. Is this the ...
9
votes
5answers
16k views
git: How do I recursively add all files in a directory subtree that match a glob pattern?
I have several .screen files inside /xxx/documentation and its subdirectories that are already tracked by Git.
After modifying many of these screen files, I run git add documentation/\\*.screen—as ...
9
votes
2answers
343 views
Why am I leaking memory with this python loop?
I am writing a custom file system crawler, which gets passed millions of globs to process through sys.stdin. I'm finding that when running the script, its memory usage increases massively over time ...
9
votes
10answers
4k views
Is there an equivalent of java.util.regex for “glob” type patterns?
Is there a standard (preferably Apache Commons or similarly non-viral) library for doing "glob" type matches in Java? When I had to do similar in Perl once, I just changed all the "." to "\.", the ...
8
votes
4answers
2k views
File Glob in C++
What's the C++ way of Perl's idiom:
my @files = glob("file*.txt");
foreach my $file (@files) {
# process $file
}
8
votes
4answers
8k views
How to glob variables in bash script?
When the following two lines of code are executed in a bash script, "ls" complains that the files don't exist:
dirs=/content/{dev01,dev02}
ls -l $dirs
When I run the script with the -x option, it ...
7
votes
3answers
796 views
Ignore files in Mercurial using Glob syntax
I'm using Mercurial and I have a following structure:
files
test
demo.jpg
video.flv
video.doc
sport
demo2.jpg
picture.jpg
text.txt
demo3.jpg
...
7
votes
4answers
516 views
Why doesn't Perl file glob() work outside of a loop in scalar context?
According to the Perl documentation on file globbing, the <*> operator or glob() function, when used in a scalar context, should iterate through the list of files matching the specified pattern, ...
7
votes
4answers
2k views
Can PHP's glob() be made to find files in a case insensitive manner?
I want all CSV files in a directory, so I use
glob('my/dir/*.CSV')
This however doesn't find files with a lowercase CSV extension.
I could use
glob('my/dir/*.{CSV,csv}', GLOB_BRACE);
But is ...
7
votes
5answers
2k views
Globbing in C++/C, on Windows
Is there a smooth way to glob in C or C++ in Windows?
E.g., myprogram.exe *.txt sends my program an ARGV list that has...ARGV[1]=*.txt in it.
I would like to be able to have a function (let's call ...
7
votes
10answers
4k views
Move all files except one
How can I move all files except one? I am looking for something like:
'mv ~/Linux/Old/!Tux.png ~/Linux/New/'
where I move old stuff to new stuff -folder except a Tux.png. !-sign represents a ...
7
votes
9answers
3k views
glob pattern matching in .NET
Is there a built-in mechanism in .NET to match patterns other than Regular Expressions? I'd like to match using UNIX style (glob) wildcards (* = any number of any character).
I'd like to use this ...
6
votes
1answer
31 views
Should glob, with GLOB_MARK, append / to symlink-to-directory results?
The glob function has a GLOB_MARK flag that's specified to append a slash to results which are directories:
GLOB_MARK
Each pathname that is a directory that matches pattern shall have a ...
6
votes
3answers
1k views
Recursively add files by pattern
How do I recursively add files by a pattern (or glob) located in different directories?
For example, I'd like to add A/B/C/foo.java and D/E/F/bar.java (and several other java files) with one command:
...
5
votes
2answers
292 views
Why does the PHP function glob() return files that do not match the wildcard?
In data2 directory, I have these files:
With the following code (running on Mac), I want to only get the files that end with .xls:
$file_names = glob('data2/*.xls');
foreach ($file_names as ...
5
votes
2answers
180 views
what is the better way to search in millions of file names with wildcard(GLOB) support
i am working on a small search engine to display a matching file names with full path. and important thing is that i need to provide wildcard(GLOB) search like *.doc or *list*.xlx or *timesheet* or ...
4
votes
1answer
74 views
How do I test whether a string would match a glob in Ruby?
Without hitting the filesystem, is it possible to see whether the glob "foo*" would match "food" in Ruby?
Background: one of my scripts produce files, and I'd like to unit test that other scripts ...
4
votes
1answer
402 views
cmake glob include while preserving directory structure
I'm new to cmake and I'm trying to install .hpp files while preserving directory structure.
So far I have
FILE(GLOB files "${CMAKE_CURRENT_SOURCE_DIR}/include/*.hpp"
...
4
votes
3answers
443 views
How to list an image sequence in an efficient way? Numercial sequence comparison in Python
I have a directory of 9 images:
image_0001, image_0002, image_0003
image_0010, image_0011
image_0011-1, image_0011-2, image_0011-3
image_9999
I would like to be able to list them in an efficient ...
4
votes
7answers
544 views
perl: iterate over a typeglob
Given a typeglob, how can I find which types are actually defined?
In my application, we user PERL as a simple configuration format.
I'd like to require() the user config file, then be able to see ...
4
votes
2answers
1k views
zsh for loop exclusion
This is somewhat of a simple question, but for the life of me, I cannot figure out how to exclude something from a zsh for loop. For instance, let's say we have this:
for $package in ...
4
votes
2answers
1k views
Python glob and bracket characters ('[]')
/Users/smcho/Desktop/bracket/[10,20] directory has "abc.txt", but when I run this Python code
import glob
import os.path
path1 = "/Users/smcho/Desktop/bracket/\[10,20\]"
pathName = ...
4
votes
2answers
613 views
How exactly does zsh expand globs?
I have a C program that displays it's command-line by iterating through the argv variable.
#include <stdio.h>
int main(int argc, char *argv[]){
int i = 0;
printf("----------\n");
...
4
votes
5answers
2k views
How does this Perl one liner to check if a directory is empty work?
I got this strange line of code today, it tells me 'empty' or 'not empty' depending on whether the CWD has any items (other than . and ..) in it.
I want to know how it works because it makes no sense ...
4
votes
1answer
846 views
Regular expression (glob) search tree
Anyone know how one might adapt a search tree to handle limited regular expressions? The task is, given a file name, find all nodes matching that file name. Nodes may contain usual file name globs (* ...
4
votes
7answers
211 views
Text specification for a tree of files?
I'm looking for examples of specifying files in a tree structure, for example, for specifying the set of files to search in a grep tool. I'd like to be able to include and exclude files and ...
4
votes
4answers
2k views
Case-insensitive Glob on zsh/bash
I need to list all files whose names start with 'SomeLongString'. But the case of 'SomeLongString' can vary. How?
I am using zsh, but a bash solution is also welcome.
3
votes
1answer
60 views
PHP glob() in bracketed directories
On a Windows machine, the following script:
<?php
mkdir("c:\\[test]");
file_put_contents("c:\\[test]\\test.txt", "some content");
chdir("c:\\[test]");
echo getcwd()."\n";
var_dump(glob('*'));
...
3
votes
2answers
72 views
How to recursively search directories in a minimal shell (no grep, find, etc.)?
I'm working with an embedded system running QNX that has a stripped-down shell (KSH).
I want to locate all run all executables on the filesystem that match the following:
*/shle/*-*_test
The ...
3
votes
2answers
33 views
Can I execute the command for each result of the file globbing in zsh without for?
I am searching for away to execute the current command for each result of the file globbing without building a for loop. I saw this somewhere but can't remember where exactly.
(The echo is just an ...
3
votes
2answers
246 views
Wildcard string matching in Ruby
I'd like to write a utility function/module that'll provide simple wildcard/glob matching to strings. The reason I'm not using regular expressions is that the user will be the one who'll end up ...
3
votes
4answers
435 views
Get folders with PHP glob - unlimited levels deep
I have this working function that finds folders and creates an array.
function dua_get_files($path)
{
foreach (glob($path . "/*", GLOB_ONLYDIR) as $filename)
{
$dir_paths[] = ...
3
votes
5answers
189 views
Better than O(n) glob matcher?
The problem: Given a list of globs, I need to find (and return) a glob from the list that a given string matches or definitively determine that none match in. Excluding setup time, performance must be ...
3
votes
1answer
181 views
What C library has the functionality to do zsh's recursive globs?
I wrote a nodejs binding to glob.h (npm install glob to use it).
I'd really like to support zsh's fancy lib/**/*.js type of stuff, but I can't seem to figure out which library has that functionality.
...
3
votes
3answers
375 views
Ruby Dir['**/*'] limit?
Is it possible to set a limit on Dir.each method? I would like to retrieve only last 10 files (ordered by create date).
Example:
Dir[File.join(Rails.root, '*.json'), 10].each do |f|
puts f
end
...
3
votes
5answers
445 views
How can I find all MP3 files in a directory?
I recently started with delphi and now I want to get all mp3 files from a directory. I want something like the php function glob().
3
votes
1answer
714 views
How to use Scons to compile same objects in different environments with Glob?
I have a C++ project builds with Scons. At first I have only the optimized version to compile, it works fine. Then I also need a debug version, then I add another environment for it. Here is the ...
3
votes
5answers
298 views
Globbing/pathname expansion with colon as separator
How can I convert a string containing glob characters such as
/var/lib/gems/*/bin
into a colon-separated string of filenames (i.e. PATH compatible) matching the pattern?
i.e. echo ...
3
votes
1answer
398 views
use python glob to find a folder that is a 14 digit number
I have a folder with subfolders that are all in the pattern YYYYMMDDHHMMSS (timestamp).
I want to use glob to only select the folders that match that pattern.
3
votes
5answers
502 views
help with glob pattern
It would be nice if someone could give me a regexp pattern for glob for getting below filenames:
1.jpg // this file
1_thumb.jpg
2.png // this file
2_thumb.png
etc...
returning the files without ...
3
votes
3answers
717 views
Bash globbing - autoexpand for a few specific cases?
I understand that the wildcard * (by itself) will expand in such a way that it means "all non-hidden files in the current folder" with hidden files being those prefixed by a period.
There are two use ...
3
votes
1answer
458 views
Is there any guarantee that results of globbing will be sorted in Perl?
Is there any guarantee that the array of filenames returned from a glob (e.g. <*>) will be sorted?
I can't find that sorting is mentioned one way or the other in the documentation, but it seems ...