glob patterns, aka shell patterns, are a pattern matching language used in many popular shells to match filenames: `*.c` is a glob for C source files.

learn more… | top users | synonyms

0
votes
2answers
48 views

How would I search through a directory and all subdirectories recursively using perl

I saw this link using glob It's not quite what I want to do though. Here is my plan. In order to search though a directory for any files that partially match a string, given to my function as a ...
0
votes
2answers
22 views

Reading results from glob into a python function

I am trying to automate some plotting using python and fortran together. I am very close to getting it to work, but I'm having problems getting the result from a glob search to feed into my python ...
1
vote
2answers
24 views

How are the results from glob ordered?

I am reading files in a directory using : glob_t* globlist; // initialization. glob(pattern, GLOB_ERR | GLOB_BRACE, NULL, globlist); This works well, but now the order of processing for each file ...
1
vote
1answer
30 views

Difference between dir/**/* and dir/*/* in Unix glob pattern?

It seems that the output are the same when I echoed it. I also tested other commands such as open, but the results from both are the same.
0
votes
1answer
44 views

Finding latest file's name and modification time in PHP

I search a director with glob function and get the matched files' list. Then by checking filemtime of the files I create a map. Then sort the map with respect to file dates. At last I get latest ...
0
votes
4answers
30 views

How to use PHP string endsWith to skip files from read? [duplicate]

I want to simple skip files with filename that ends with "@2x" and implement in this code: $fullres = glob("gallery/*.*"); for ($i=0; $i<count($fullres); $i++) { ...
2
votes
2answers
15 views

Using glob() to display images from a directory while echo'ing a unique first image

I am quite new to PHP and I did not want to ask anything here until I absolutely could not find a way to do this. I have a situation where I would like to use PHP to read and display images from a ...
0
votes
4answers
60 views

Glob pattern to match non-hidden filenames that don't start with a particular string

I'm pretty inexperienced to globbing in general. How would one go about writing a glob pattern that matches filenames not starting with, say, "ab" but still need a length of at least 2? i.e. "start ...
0
votes
1answer
33 views

How does one get all files in a directory with a specific pattern in their names in Python

I need to get all filenames from a directory with a specific ending. The files i want from the directory have the same name but with different numbers, other files exist in the same directory. All the ...
1
vote
3answers
37 views

can i glob dirnames to an array and then usort by a file value?

Can anyone please advise whether I can write a function for usort that will do the following in PHP : Firstly I have a bunch of directories that all have two files inside - these two files each ...
1
vote
2answers
16 views

Glob pattern matching the first part of a file name

In a directory I have filenames like 123X1.jpg, 23X1.jpg, 23X2.jpg, 4123X1.jpg. I need the glob pattern to only get listed files starting with a required string. For example: '23X' -> 23X1.jpg, ...
4
votes
1answer
56 views

Is there a faster alternative to Ruby's Dir.glob?

I'm using Dir.glob to visit the set of all files matching a wildcard pattern. Dir.glob( '**/*.txt' ) { |file_name| parse file_name } Because this glob call is recursive and because lots of ...
0
votes
2answers
39 views

Glob is different value error opening a file and reading

sub open_files { my @files = @_; my @lines; foreach (@files){ print "$_\[1\]\n"; } foreach my $f (@files){ print "$f\[2\]\n"; open(my $fh,'<',$f) or ...
5
votes
1answer
64 views

Why does glob lstat matching entries?

Looking into behavior in this question, I was surprised to see that perl lstat()s every path matching a glob pattern: $ mkdir dir $ touch dir/{foo,bar,baz}.txt $ strace -e trace=lstat perl -E 'say ...
-1
votes
2answers
30 views

Copy Files from folders to folder tree in php [closed]

I have a large number of books that I need to categorize by language and libraryID. The file-names are structured like this and spread out in many folders: ENG_FILENAME_LIBRARYNAME1.pdf ...
0
votes
3answers
93 views

Perl - A way to get only the first (.txt) filename from another directory without loading them all?

I have a directory that holds ~5000 2,400 sized .txt files. I just want one filename from that directory; order does not matter. The file will be processed and deleted. This is not the scripts ...
1
vote
2answers
30 views

php filter array of image names and show missing @2x retina images

I have a folder of a lot of images for in iPad app. Trying to create an automated php script to check to see if all the images that are in the folder have a paired non-retina and retina image set. If ...
0
votes
1answer
24 views

PHP: How can I make this variable size table output images from a GLOB Array?

I have to make a table with an amount of columns that can be set by a variable ($cols) with each cell containing a picture obtained through a GLOB Array. The code I have now will output a table with ...
0
votes
4answers
51 views

Python glob fails?

I want to glob several directories, each containing a file named GDS_XYZ/GDS_XYZ.summary.txt. XYZ changes from folder to folder, so I do glob.glob('GDS_*/GDS*.summary.txt' However, the result is ...
1
vote
1answer
39 views

Display all image files from a directory into WordPress template page

I've been refraining from posting in here as I feel it's such a simple question that's been answered many times over and over again. I know this because I've read through countless posts people have ...
0
votes
1answer
33 views

list only directories that contain certain files

The following code below works fine for listing all directories and excluding those I don't want in the array list, but I'd like to add another feature to be able to ONLY list directories that contain ...
0
votes
1answer
20 views

Using url parameters, I am trying to create a gallery of thumbnails that coorespond into my table

I am trying to create some a gallery in my page using this html: <tr> <th> Sunday</th> <th> Monday</th> <th> Tuesday</th> <th> ...
0
votes
0answers
35 views

Using glob to pull images in the correct rotation

I am trying to rotate images in a directory. My issue is I can't get the correct path, if I put $imageR as the image source nothing comes through. My code is below: ...
0
votes
3answers
49 views

Visiting multiple folders with extensions

I'm working on something here, and I'm completely confused. Basically, I have the script in my directory, and that script has to run on multiple folders with a particular extension. Right now, I have ...
-1
votes
0answers
18 views

glob_t incomplete data type

I'm working with the wolfenstein3d redux's code to update the Linux backend, and I found out it was using an id's implementation of glob to implement FindFirst and FindNext like functions (it's done ...
3
votes
1answer
65 views

Bash script echo is performing a strange substitution

Realizing bash is very picky about double quotes, single quotes, brackets etc. -- I ran across a strange behavior today and can't explain it. The problem itself is easy to avoid but I don't ...
-4
votes
0answers
41 views

glob() does not work when parameter is a variable [closed]

I'm having a problem with the glob() function. I am not sure what causes the problem below. This won't work: $path = "./images/gallery/"; $images = glob($path."*.jpg"); This will work: $images = ...
0
votes
0answers
32 views

Using Glob to start from root and search every dir and subdir for a certain dir.

I am trying to search for a directory that I wouldn't know the exact path to just the name of that directory. I would like to start from root and check every dir and subdirs until I found the ...
1
vote
4answers
40 views

glob pattern to match two dates simultaneously

I'm using glob in this format at the moment: glob('/STORAGE/LOGFILES/*.*') Within /STORAGE/LOGFILES, there are hundreds of text files that all begin with YYYY-MM-DD. I'd like to change the *.* in ...
0
votes
1answer
61 views

Using PHP to generate rel canonical on multiple pages within the same category (and using the glob( ) function)

Let's say you work for a company that has a reasonably large e-commerce website with lots of product categories and subcategories (and sometimes, sub-subcategories). As such, for the ease of the user, ...
0
votes
1answer
33 views

Open accented xml file with python

I have this bit of code for xmlword in moviexmlfind: fileinfo = jukeboxpath + xmlword + "*.xml" for name in glob.glob(fileinfo): If an xmlword contains an ...
0
votes
1answer
18 views

nullglob and arrays

I can create an array, then delete from this array $ foo=(a b c) $ unset foo[0] $ echo ${foo[*]} b c However if nullglob is set then I cannot delete from the array $ shopt -s nullglob $ foo=(a ...
0
votes
3answers
38 views

Wildcard single file

Given the following files $ ls bar.txt baz.txt qux.txt I would like to save only the first txt file to a variable. I tried this $ var=*.txt but it just saves all files $ echo $var bar.txt ...
0
votes
2answers
38 views

Ruby: Get first few files from directory?

How do I just grab the first N files from a directory? I've tried iterating through the files via Dir.glob(expression).do |f| i = i + 1 files.push(f) if (i == 5) then break # ...
-1
votes
2answers
46 views

PHP increase date by 7 hours

it's working okay so far, but I want to increase the modified date by 7 hours. This means it will be in line with my timezone. I've searched the internet for answers but can't seem to get it ...
0
votes
2answers
39 views

How does bash/scp expand out “remote” glob patterns?

If I execute (in bash): scp remote.machine:/var/log/sy* . I get all the files which match /var/log/sy* on the remote machine. syslog 100% 91KB 10.1KB/s ...
1
vote
2answers
53 views

shell glob expansion with spaces

I'd like to write a Posix shell script function that will match on a pattern with both spaces and glob characters (*?) that need to be expanded. In Python, glob.glob('/tmp/hello world*') will return ...
0
votes
1answer
88 views

PHP readdir, glob and exec('ls') return in an empty array for some directories under Apache

I have developed the following PHP code in order to read a specific directory called /dados/capture: tst2.php <html> <body> <?php echo "whoami: " . ...
0
votes
1answer
104 views

Perl: How capture the outputs of Expect.pm?

I wrote a piece of perl code to generating ssh keys using Expect.pm. The code can create keys as expected. But I don't know how to capture the finger prints from the output. use Expect; my $passwd = ...
1
vote
1answer
24 views

PHP glob patter issue

Hi I am trying to get certain files in my directory by using glob. My pattern is like foreach(glob($root . "../test/te[0-9]{2}.xml") as $filename){ echo $filename; } The files are 0051_001.xml ...
0
votes
1answer
70 views

python fix standalone exe created by py2exe including pyd/dll

I have a pretty simple script and I converted it to exe format with py2exe. I then moved it to a Windows 7 machine that doesn't have Python. When I run it I get the following error: ...
1
vote
2answers
76 views

Can a Bash extended globbing pattern be used to match a path NOT containing specific characters

In a bash script I would like to find files whose path does not contain a subdirectory with a "double extension". For example, if I am looking in subdirectories of /my/home for path/to/my/file and the ...
2
votes
1answer
50 views

glob() is not searching folder

I think I'm doing something fundamentally wrong. Here is my code index.php <?php if(isset($_POST['a'])){ $action = $_POST['a']; } else if(isset($_GET['a'])){ $action = $_GET['a']; } else ...
-3
votes
2answers
95 views

How does glob() function work?

I know that glob() function is pretty slow but how does it work with the GLOB_ONLYDIR argument? Will it still check every file or it will use some index or whatever?
3
votes
0answers
88 views

Wildcard Expansion in Eclipse Run Configuration

Is there a way to make Eclipse expand wildcards in run configuration arguments? My class can handle the command line arguments passed to main(String[] args). From a normal shell (bash on my system), ...
0
votes
2answers
50 views

glob() and asterisks in curly brackets

I want to find some special filenames. Therefore I use glob(). $foundResults = glob($directory . '{data_*.csv, log_*.txt}', GLOB_BRACE); This code only finds my first pattern data_*.csv. So it ...
0
votes
1answer
51 views

glob() return in an empty array

Im trying to set a array containing all the image files in a directory, ive got my index.php set up in the same directory as the images. The code im using is $images = glob("*.jpg, *jpeg, *.png, ...
0
votes
1answer
280 views

Getting image from folder using PHP: Code working and getting image path but img not being placed into HTML

I've been looking all over the place but can't seem to find an issue quite like mine. Maybe I haven't been putting together the right keywords; but perhaps I'll have more luck just explaining my ...
0
votes
0answers
79 views

PHP glob search function work in Windows 7 env but not Ubuntu 12.10

Three functions found here: http://pastebin.com/h7pRT21J This script looks for video files in a "videos" directory located in the same directory as the php script. I developed it in Windows 7, and it ...
0
votes
1answer
64 views

Glob in C++ and print the results

I'm just trying to glob everything in a directory and print the list of results, but I get an empty printf: #include <glob.h> #include <stdio.h> int main() { int result; glob_t ...

1 2 3 4 5 8