Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / html / python / lib / module-glob.html
CommitLineData
86530b38
AT
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3<head>
4<link rel="STYLESHEET" href="lib.css" type='text/css' />
5<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
6<link rel='start' href='../index.html' title='Python Documentation Index' />
7<link rel="first" href="lib.html" title='Python Library Reference' />
8<link rel='contents' href='contents.html' title="Contents" />
9<link rel='index' href='genindex.html' title='Index' />
10<link rel='last' href='about.html' title='About this document...' />
11<link rel='help' href='about.html' title='About this document...' />
12<link rel="next" href="module-fnmatch.html" />
13<link rel="prev" href="module-errno.html" />
14<link rel="parent" href="allos.html" />
15<link rel="next" href="module-fnmatch.html" />
16<meta name='aesop' content='information' />
17<title>6.24 glob -- Unix style pathname pattern expansion</title>
18</head>
19<body>
20<DIV CLASS="navigation">
21<div id='top-navigation-panel' xml:id='top-navigation-panel'>
22<table align="center" width="100%" cellpadding="0" cellspacing="2">
23<tr>
24<td class='online-navigation'><a rel="prev" title="6.23 errno "
25 href="module-errno.html"><img src='../icons/previous.png'
26 border='0' height='32' alt='Previous Page' width='32' /></A></td>
27<td class='online-navigation'><a rel="parent" title="6. Generic Operating System"
28 href="allos.html"><img src='../icons/up.png'
29 border='0' height='32' alt='Up One Level' width='32' /></A></td>
30<td class='online-navigation'><a rel="next" title="6.25 fnmatch "
31 href="module-fnmatch.html"><img src='../icons/next.png'
32 border='0' height='32' alt='Next Page' width='32' /></A></td>
33<td align="center" width="100%">Python Library Reference</td>
34<td class='online-navigation'><a rel="contents" title="Table of Contents"
35 href="contents.html"><img src='../icons/contents.png'
36 border='0' height='32' alt='Contents' width='32' /></A></td>
37<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
38 border='0' height='32' alt='Module Index' width='32' /></a></td>
39<td class='online-navigation'><a rel="index" title="Index"
40 href="genindex.html"><img src='../icons/index.png'
41 border='0' height='32' alt='Index' width='32' /></A></td>
42</tr></table>
43<div class='online-navigation'>
44<b class="navlabel">Previous:</b>
45<a class="sectref" rel="prev" href="module-errno.html">6.23 errno </A>
46<b class="navlabel">Up:</b>
47<a class="sectref" rel="parent" href="allos.html">6. Generic Operating System</A>
48<b class="navlabel">Next:</b>
49<a class="sectref" rel="next" href="module-fnmatch.html">6.25 fnmatch </A>
50</div>
51<hr /></div>
52</DIV>
53<!--End of Navigation Panel-->
54
55<H1><A NAME="SECTION0082400000000000000000">
566.24 <tt class="module">glob</tt> --
57 <span class="Unix">Unix</span> style pathname pattern expansion</A>
58</H1>
59
60<P>
61<A NAME="module-glob"></A>
62
63<P>
64The <tt class="module">glob</tt> module finds all the pathnames matching a specified
65pattern according to the rules used by the <span class="Unix">Unix</span> shell. No tilde
66expansion is done, but <code>*</code>, <code>?</code>, and character ranges
67expressed with <code>[]</code> will be correctly matched. This is done by
68using the <tt class="function">os.listdir()</tt> and <tt class="function">fnmatch.fnmatch()</tt>
69functions in concert, and not by actually invoking a subshell. (For
70tilde and shell variable expansion, use <tt class="function">os.path.expanduser()</tt>
71and <tt class="function">os.path.expandvars()</tt>.)
72<a id='l2h-2340' xml:id='l2h-2340'></a>
73
74<P>
75<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
76 <td><nobr><b><tt id='l2h-2339' xml:id='l2h-2339' class="function">glob</tt></b>(</nobr></td>
77 <td><var>pathname</var>)</td></tr></table></dt>
78<dd>
79Returns a possibly-empty list of path names that match <var>pathname</var>,
80which must be a string containing a path specification.
81<var>pathname</var> can be either absolute (like
82<span class="file">/usr/src/Python-1.5/Makefile</span>) or relative (like
83<span class="file">../../Tools/*/*.gif</span>), and can contain shell-style wildcards.
84Broken symlinks are included in the results (as in the shell).
85</dl>
86
87<P>
88For example, consider a directory containing only the following files:
89<span class="file">1.gif</span>, <span class="file">2.txt</span>, and <span class="file">card.gif</span>. <tt class="function">glob()</tt>
90will produce the following results. Notice how any leading components
91of the path are preserved.
92
93<P>
94<div class="verbatim"><pre>
95&gt;&gt;&gt; import glob
96&gt;&gt;&gt; glob.glob('./[0-9].*')
97['./1.gif', './2.txt']
98&gt;&gt;&gt; glob.glob('*.gif')
99['1.gif', 'card.gif']
100&gt;&gt;&gt; glob.glob('?.gif')
101['1.gif']
102</pre></div>
103
104<P>
105<div class="seealso">
106 <p class="heading">See Also:</p>
107
108 <dl compact="compact" class="seemodule">
109 <dt>Module <b><tt class="module"><a href="module-fnmatch.html">fnmatch</a></tt>:</b>
110 <dd>Shell-style filename (not path) expansion.
111 </dl>
112</div>
113
114<DIV CLASS="navigation">
115<div class='online-navigation'>
116<p></p><hr />
117<table align="center" width="100%" cellpadding="0" cellspacing="2">
118<tr>
119<td class='online-navigation'><a rel="prev" title="6.23 errno "
120 href="module-errno.html"><img src='../icons/previous.png'
121 border='0' height='32' alt='Previous Page' width='32' /></A></td>
122<td class='online-navigation'><a rel="parent" title="6. Generic Operating System"
123 href="allos.html"><img src='../icons/up.png'
124 border='0' height='32' alt='Up One Level' width='32' /></A></td>
125<td class='online-navigation'><a rel="next" title="6.25 fnmatch "
126 href="module-fnmatch.html"><img src='../icons/next.png'
127 border='0' height='32' alt='Next Page' width='32' /></A></td>
128<td align="center" width="100%">Python Library Reference</td>
129<td class='online-navigation'><a rel="contents" title="Table of Contents"
130 href="contents.html"><img src='../icons/contents.png'
131 border='0' height='32' alt='Contents' width='32' /></A></td>
132<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
133 border='0' height='32' alt='Module Index' width='32' /></a></td>
134<td class='online-navigation'><a rel="index" title="Index"
135 href="genindex.html"><img src='../icons/index.png'
136 border='0' height='32' alt='Index' width='32' /></A></td>
137</tr></table>
138<div class='online-navigation'>
139<b class="navlabel">Previous:</b>
140<a class="sectref" rel="prev" href="module-errno.html">6.23 errno </A>
141<b class="navlabel">Up:</b>
142<a class="sectref" rel="parent" href="allos.html">6. Generic Operating System</A>
143<b class="navlabel">Next:</b>
144<a class="sectref" rel="next" href="module-fnmatch.html">6.25 fnmatch </A>
145</div>
146</div>
147<hr />
148<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
149</DIV>
150<!--End of Navigation Panel-->
151<ADDRESS>
152See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
153</ADDRESS>
154</BODY>
155</HTML>