aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/filelib.xml
blob: 3a97f38ec2aeda80661900bac5b30afc80c6c836 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2003</year><year>2013</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      The contents of this file are subject to the Erlang Public License,
      Version 1.1, (the "License"); you may not use this file except in
      compliance with the License. You should have received a copy of the
      Erlang Public License along with this software. If not, it can be
      retrieved online at http://www.erlang.org/.
    
      Software distributed under the License is distributed on an "AS IS"
      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
      the License for the specific language governing rights and limitations
      under the License.
    
    </legalnotice>

    <title>filelib</title>
    <prepared>Bjorn Gustavsson</prepared>
    <responsible>Bjorn Gustavsson</responsible>
    <docno>1</docno>
    <approved>Kenneth Lundin</approved>
    <checked></checked>
    <date>03-01-21</date>
    <rev>A</rev>
    <file>filelib.sgml</file>
  </header>
  <module>filelib</module>
  <modulesummary>File utilities, such as wildcard matching of filenames</modulesummary>
  <description>
    <p>This module contains utilities on a higher level than the <c>file</c>
      module.</p>
    <p>This module does not support "raw" file names (i.e. files whose names
    do not comply with the expected encoding). Such files will be ignored
    by the functions in this module.</p>
    <p>For more information about raw file names, see the <seealso marker="kernel:file">file</seealso> module.</p>
  </description>

  <datatypes>
    <datatype>
      <name name="filename"/>
    </datatype>
    <datatype>
      <name name="dirname"/>
    </datatype>
  </datatypes>

  <funcs>
    <func>
      <name name="ensure_dir" arity="1"/>
      <fsummary>Ensure that all parent directories for a file or directory exist.</fsummary>
      <desc>
        <p>The <c>ensure_dir/1</c> function ensures that all parent
          directories for the given file or directory name <c><anno>Name</anno></c>
          exist, trying to create them if necessary.</p>
        <p>Returns <c>ok</c> if all parent directories already exist
          or could be created, or <c>{error, <anno>Reason</anno>}</c> if some parent
          directory does not exist and could not be created for some
          reason.</p>
      </desc>
    </func>
    <func>
      <name name="file_size" arity="1"/>
      <fsummary>Return the size in bytes of the file.</fsummary>
      <desc>
        <p>The <c>file_size</c> function returns the size of the given file.</p>
      </desc>
    </func>
    <func>
      <name name="fold_files" arity="5"/>
      <fsummary>Fold over all files matching a regular expression.</fsummary>
      <desc>
        <p>The <c>fold_files/5</c> function folds the function
          <c><anno>Fun</anno></c> over all (regular) files <c><anno>F</anno></c> in the
          directory <c><anno>Dir</anno></c> that match the regular expression <c><anno>RegExp</anno></c>
	  (see the <seealso marker="re">re</seealso> module for a description
	  of the allowed regular expressions).
          If <c><anno>Recursive</anno></c> is true all sub-directories to <c>Dir</c>
          are processed. The regular expression matching is done on just
	  the filename without the directory part.</p>

	  <p>If Unicode file name translation is in effect and the file
	  system is completely transparent, file names that cannot be
	  interpreted as Unicode may be encountered, in which case the
	  <c>fun()</c> must be prepared to handle raw file names
	  (i.e. binaries). If the regular expression contains
	  codepoints beyond 255, it will not match file names that do
	  not conform to the expected character encoding (i.e. are not
	  encoded in valid UTF-8).</p>

	  <p>For more information about raw file names, see the 
          <seealso marker="kernel:file">file</seealso> module.</p>
      </desc>
    </func>
    <func>
      <name name="is_dir" arity="1"/>
      <fsummary>Test whether Name refer to a directory or not</fsummary>
      <desc>
        <p>The <c>is_dir/1</c> function returns <c>true</c> if <c><anno>Name</anno></c>
          refers to a directory, and <c>false</c> otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="is_file" arity="1"/>
      <fsummary>Test whether Name refer to a file or directory.</fsummary>
      <desc>
        <p>The <c>is_file/1</c> function returns <c>true</c> if <c><anno>Name</anno></c>
          refers to a file or a directory, and <c>false</c> otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="is_regular" arity="1"/>
      <fsummary>Test whether Name refer to a (regular) file.</fsummary>
      <desc>
        <p>The <c>is_regular/1</c> function returns <c>true</c> if <c><anno>Name</anno></c>
          refers to a file (regular file), and <c>false</c> otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="last_modified" arity="1"/>
      <fsummary>Return the local date and time when a file was last modified.</fsummary>
      <desc>
        <p>The <c>last_modified/1</c> function returns the date and time the
          given file or directory was last modified, or 0 if the file
	  does not exist.</p>
      </desc>
    </func>
    <func>
      <name name="wildcard" arity="1"/>
      <fsummary>Match filenames using Unix-style wildcards.</fsummary>
      <desc>
        <p>The <c>wildcard/1</c> function returns a list of all files
          that match Unix-style wildcard-string <c><anno>Wildcard</anno></c>.</p>
        <p>The wildcard string looks like an ordinary filename, except
          that certain "wildcard characters" are interpreted in a special
          way. The following characters are special:
          </p>
        <taglist>
          <tag>?</tag>
          <item>
            <p>Matches one character.</p>
          </item>
          <tag>*</tag>
          <item>
            <p>Matches any number of characters up to the end of
              the filename, the next dot, or the next slash.</p>
          </item>
          <tag>**</tag>
          <item>
            <p>Two adjacent <c>*</c>'s used as a single pattern will
        match all files and zero or more directories and subdirectories.</p>
          </item>
          <tag>[Character1,Character2,...]</tag>
          <item>
            <p>Matches any of the characters listed. Two characters
	    separated by a hyphen will match a range of characters.
	    Example: <c>[A-Z]</c> will match any uppercase letter.</p>
          </item>
          <tag>{Item,...}</tag>
          <item>
            <p>Alternation. Matches one of the alternatives.</p>
          </item>
        </taglist>
        <p>Other characters represent themselves. Only filenames that
          have exactly the same character in the same position will match.
          (Matching is case-sensitive; i.e. "a" will not match "A").
          </p>
        <p>Note that multiple "*" characters are allowed
          (as in Unix wildcards, but opposed to Windows/DOS wildcards).
          </p>
        <p>Examples:</p>
        <p>The following examples assume that the current directory is the
          top of an Erlang/OTP installation.
          </p>
        <p>To find all <c>.beam</c> files in all applications, the following
          line can be used:</p>
        <code type="none">
    filelib:wildcard("lib/*/ebin/*.beam").        </code>
        <p>To find either <c>.erl</c> or <c>.hrl</c> in all applications
          <c>src</c> directories, the following</p>
        <code type="none">
    filelib:wildcard("lib/*/src/*.?rl")        </code>
        <p>or the following line</p>
        <code type="none">
    filelib:wildcard("lib/*/src/*.{erl,hrl}")        </code>
        <p>can be used.</p>
        <p>To find all <c>.hrl</c> files in either <c>src</c> or <c>include</c>
          directories, use:</p>
        <code type="none">
    filelib:wildcard("lib/*/{src,include}/*.hrl").        </code>
        <p>To find all <c>.erl</c> or <c>.hrl</c> files in either
          <c>src</c> or <c>include</c> directories, use:</p>
        <code type="none">
    filelib:wildcard("lib/*/{src,include}/*.{erl,hrl}")        </code>
        <p>To find all <c>.erl</c> or <c>.hrl</c> files in any
          subdirectory, use:</p>
        <code type="none">
    filelib:wildcard("lib/**/*.{erl,hrl}")        </code>
      </desc>
    </func>
    <func>
      <name name="wildcard" arity="2"/>
      <fsummary>Match filenames using Unix-style wildcards starting at a specified directory.</fsummary>
      <desc>
        <p>The <c>wildcard/2</c> function works like <c>wildcard/1</c>,
          except that instead of the actual working directory, <c><anno>Cwd</anno></c>
          will be used.</p>
      </desc>
    </func>
  </funcs>
</erlref>