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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- This document was generated using DocBuilder 3.3.3 -->
<HTML>
<HEAD>
<TITLE>filename</TITLE>
<SCRIPT type="text/javascript" src="../../../../doc/erlresolvelinks.js">
</SCRIPT>
<STYLE TYPE="text/css">
<!--
.REFBODY { margin-left: 13mm }
.REFTYPES { margin-left: 8mm }
-->
</STYLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF00FF"
ALINK="#FF0000">
<!-- refpage -->
<CENTER>
<A HREF="http://www.erlang.se">
<IMG BORDER=0 ALT="[Ericsson AB]" SRC="min_head.gif">
</A>
<H1>filename</H1>
</CENTER>
<H3>MODULE</H3>
<DIV CLASS=REFBODY>
filename
</DIV>
<H3>MODULE SUMMARY</H3>
<DIV CLASS=REFBODY>
Filename Manipulation Functions
</DIV>
<H3>DESCRIPTION</H3>
<DIV CLASS=REFBODY>
<P>The module <CODE>filename</CODE> provides a number of useful functions
for analyzing and manipulating file names. These functions are
designed so that the Erlang code can work on many different
platforms with different formats for file names. With file name
is meant all strings that can be used to denote a file. They can
be short relative names like <CODE>foo.erl</CODE>, very long absolute
name which include a drive designator and directory names like
<CODE>D:\usr/local\bin\erl/lib\tools\foo.erl</CODE>, or any variations
in between.
<P>In Windows, all functions return file names with forward slashes
only, even if the arguments contain back slashes. Use
<CODE>join/1</CODE> to normalize a file name by removing redundant
directory separators.
</DIV>
<H3>DATA TYPES</H3>
<DIV CLASS=REFBODY>
<PRE>
name() = string() | atom() | DeepList
DeepList = [char() | atom() | DeepList]
</PRE>
</DIV>
<H3>EXPORTS</H3>
<P><A NAME="absname/1"><STRONG><CODE>absname(Filename) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Converts a relative <CODE>Filename</CODE> and returns an absolute
name. No attempt is made to create the shortest absolute name,
because this can give incorrect results on file systems which
allow links.
<P>Unix examples:
<PRE>
1> <STRONG>pwd().</STRONG>
"/usr/local"
2> <STRONG>filename:absname("foo").</STRONG>
"/usr/local/foo"
3> <STRONG>filename:absname("../x").</STRONG>
"/usr/local/../x"
4> <STRONG>filename:absname("/").</STRONG>
"/"
</PRE>
<P>Windows examples:
<PRE>
1> <STRONG>pwd().</STRONG>
"D:/usr/local"
2> <STRONG>filename:absname("foo").</STRONG>
"D:/usr/local/foo"
3> <STRONG>filename:absname("../x").</STRONG>
"D:/usr/local/../x"
4> <STRONG>filename:absname("/").</STRONG>
"D:/"
</PRE>
</DIV>
<P><A NAME="absname/2"><STRONG><CODE>absname(Filename, Dir) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
<STRONG><CODE>Dir = string()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>This function works like <CODE>absname/1</CODE>, except that
the directory to which the file name should be made relative
is given explicitly in the <CODE>Dir</CODE> argument.
</DIV>
<P><A NAME="absname_join/2"><STRONG><CODE>absname_join(Dir, Filename) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Dir = string()</CODE></STRONG><BR>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Joins an absolute directory with a relative filename.
Similar to <CODE>join/2</CODE>, but on platforms with tight
restrictions on raw filename length and no support for
symbolic links (read: VxWorks), leading parent directory
components in <CODE>Filename</CODE> are matched against trailing
directory components in <CODE>Dir</CODE> so they can be removed
from the result - minimizing its length.
</DIV>
<P><A NAME="basename/1"><STRONG><CODE>basename(Filename) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the last component of <CODE>Filename</CODE>, or
<CODE>Filename</CODE> itself if it does not contain any directory
separators.
<PRE>
5> <STRONG>filename:basename("foo").</STRONG>
"foo"
6> <STRONG>filename:basename("/usr/foo").</STRONG>
"foo"
7> <STRONG>filename:basename("/").</STRONG>
[]
</PRE>
</DIV>
<P><A NAME="basename/2"><STRONG><CODE>basename(Filename, Ext) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = Ext = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the last component of <CODE>Filename</CODE> with the
extension <CODE>Ext</CODE> stripped. This function should be used
to remove a specific extension which might, or might not, be
there. Use <CODE>rootname(basename(Filename))</CODE> to remove an
extension that exists, but you are not sure which one it is.
<PRE>
8> <STRONG>filename:basename("~/src/kalle.erl", ".erl").</STRONG>
"kalle"
9> <STRONG>filename:basename("~/src/kalle.beam", ".erl").</STRONG>
"kalle.beam"
10> <STRONG>filename:basename("~/src/kalle.old.erl", ".erl").</STRONG>
"kalle.old"
11> <STRONG>filename:rootname(filename:basename("~/src/kalle.erl")).</STRONG>
"kalle"
12> <STRONG>filename:rootname(filename:basename("~/src/kalle.beam")).</STRONG>
"kalle"
</PRE>
</DIV>
<P><A NAME="dirname/1"><STRONG><CODE>dirname(Filename) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the directory part of <CODE>Filename</CODE>.
<PRE>
13> <STRONG>filename:dirname("/usr/src/kalle.erl").</STRONG>
"/usr/src"
14> <STRONG>filename:dirname("kalle.erl").</STRONG>
"."
5> <STRONG>filename:dirname("\\usr\\src/kalle.erl").</STRONG> % Windows
"/usr/src"
</PRE>
</DIV>
<P><A NAME="extension/1"><STRONG><CODE>extension(Filename) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the file extension of <CODE>Filename</CODE>, including
the period. Returns an empty string if there is no extension.
<PRE>
15> <STRONG>filename:extension("foo.erl").</STRONG>
".erl"
16> <STRONG>filename:extension("beam.src/kalle").</STRONG>
[]
</PRE>
</DIV>
<P><A NAME="flatten/1"><STRONG><CODE>flatten(Filename) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Converts a possibly deep list filename consisting of
characters and atoms into the corresponding flat string
filename.
</DIV>
<P><A NAME="join/1"><STRONG><CODE>join(Components) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Components = [string()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Joins a list of file name <CODE>Components</CODE> with directory
separators. If one of the elements of <CODE>Components</CODE>
includes an absolute path, for example <CODE>"/xxx"</CODE>,
the preceding elements, if any, are removed from the result.
<P>The result is "normalized":
<P>
<UL>
<LI>
Redundant directory separators are removed.
</LI>
<LI>
In Windows, all directory separators are forward
slashes and the drive letter is in lower case.
</LI>
</UL>
<PRE>
17> <STRONG>filename:join(["/usr", "local", "bin"]).</STRONG>
"/usr/local/bin"
18> <STRONG>filename:join(["a/b///c/"]).</STRONG>
"a/b/c"
6> <STRONG>filename:join(["B:a\\b///c/"]).</STRONG> % Windows
"b:a/b/c"
</PRE>
</DIV>
<P><A NAME="join/2"><STRONG><CODE>join(Name1, Name2) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Name1 = Name2 = string()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Joins two file name components with directory separators.
Equivalent to <CODE>join([Name1, Name2])</CODE>.
</DIV>
<P><A NAME="nativename/1"><STRONG><CODE>nativename(Path) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Path = string()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Converts <CODE>Path</CODE> to a form accepted by the command shell
and native applications on the current platform. On Windows,
forward slashes is converted to backward slashes. On all
platforms, the name is normalized as done by <CODE>join/1</CODE>.
<PRE>
19> <STRONG>filename:nativename("/usr/local/bin/").</STRONG> % Unix
"/usr/local/bin"
7> <STRONG>filename:nativename("/usr/local/bin/").</STRONG> % Windows
"\\usr\\local\\bin"
</PRE>
</DIV>
<P><A NAME="pathtype/1"><STRONG><CODE>pathtype(Path) -> absolute | relative | volumerelative
</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Returns the type of path, one of <CODE>absolute</CODE>,
<CODE>relative</CODE>, or <CODE>volumerelative</CODE>.
<P>
<DL>
<DT>
<CODE>absolute</CODE>
</DT>
<DD>
The path name refers to a specific file on a specific
volume.<BR>
Unix example: <CODE>/usr/local/bin</CODE><BR>
Windows example: <CODE>D:/usr/local/bin</CODE><BR>
</DD>
<DT>
<CODE>relative</CODE>
</DT>
<DD>
The path name is relative to the current working
directory on the current volume.<BR>
Example: <CODE>foo/bar, ../src</CODE><BR>
</DD>
<DT>
<CODE>volumerelative</CODE>
</DT>
<DD>
The path name is relative to the current working
directory on a specified volume, or it is a specific file
on the current working volume.<BR>
Windows example: <CODE>D:bar.erl, /bar/foo.erl</CODE><BR>
</DD>
</DL>
</DIV>
<P><A NAME="rootname/1"><STRONG><CODE>rootname(Filename) -> string()</CODE></STRONG></A><BR>
<A NAME="rootname/2"><STRONG><CODE>rootname(Filename, Ext) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = Ext = name()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Remove a filename extension. <CODE>rootname/2</CODE> works as
<CODE>rootname/1</CODE>, except that the extension is removed only
if it is <CODE>Ext</CODE>.
<PRE>
20> <STRONG>filename:rootname("/beam.src/kalle").</STRONG>
/beam.src/kalle"
21> <STRONG>filename:rootname("/beam.src/foo.erl").</STRONG>
"/beam.src/foo"
22> <STRONG>filename:rootname("/beam.src/foo.erl", ".erl").</STRONG>
"/beam.src/foo"
23> <STRONG>filename:rootname("/beam.src/foo.beam", ".erl").</STRONG>
"/beam.src/foo.beam"
</PRE>
</DIV>
<P><A NAME="split/1"><STRONG><CODE>split(Filename) -> Components</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Filename = name()</CODE></STRONG><BR>
<STRONG><CODE>Components = [string()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list whose elements are the path components of
<CODE>Filename</CODE>.
<PRE>
24> <STRONG>filename:split("/usr/local/bin").</STRONG>
["/","usr","local","bin"]
25> <STRONG>filename:split("foo/bar").</STRONG>
["foo","bar"]
26> <STRONG>filename:split("a:\\msdev\\include").</STRONG>
["a:/","msdev","include"]
</PRE>
</DIV>
<P><A NAME="find_src/1"><STRONG><CODE>find_src(Beam) -> {SourceFile, Options}</CODE></STRONG></A><BR>
<A NAME="find_src/2"><STRONG><CODE>find_src(Beam, Rules) -> {SourceFile, Options}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Beam = Module | Filename</CODE></STRONG><BR>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Filename = string() | atom()</CODE></STRONG><BR>
<STRONG><CODE>SourceFile = string()</CODE></STRONG><BR>
<STRONG><CODE>Options = [Opt]</CODE></STRONG><BR>
<STRONG><CODE>Opt = {i, string()} | {outdir, string()} | {d, atom()}
</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Finds the source filename and compiler options for a module.
The result can be fed to <CODE>compile:file/2</CODE> in order to
compile the file again.
<P>The <CODE>Beam</CODE> argument, which can be a string or an atom,
specifies either the module name or the path to the source
code, with or without the <CODE>".erl"</CODE> extension. In either
case, the module must be known by the code server, i.e.
<CODE>code:which(Module)</CODE> must succeed.
<P><CODE>Rules</CODE> describes how the source directory can be found,
when the object code directory is known. It is a list of
tuples <CODE>{BinSuffix, SourceSuffix}</CODE> and is interpreted
as follows: If the end of the directory name where the object
is located matches <CODE>BinSuffix</CODE>, then the source code
directory has the same name, but with <CODE>BinSuffix</CODE>
replaced by <CODE>SourceSuffix</CODE>. <CODE>Rules</CODE> defaults to:
<PRE>
[{"", ""}, {"ebin", "src"}, {"ebin", "esrc"}]
</PRE>
<P>If the source file is found in the resulting directory, then
the function returns that location together with
<CODE>Options</CODE>. Otherwise, the next rule is tried, and so on.
<P>The function returns <CODE>{SourceFile, Options}</CODE>.
<CODE>SourceFile</CODE> is the absolute path to the source file
without the <CODE>".erl"</CODE> extension. <CODE>Options</CODE>
include the options which are necessary to recompile the file
with <CODE>compile:file/2</CODE>, but excludes options
such as <CODE>report</CODE> or <CODE>verbose</CODE> which do not change
the way code is generated. The paths in the <CODE>{outdir,
Path}</CODE> and <CODE>{i, Path}</CODE> options are guaranteed to be
absolute.
</DIV>
<H3>AUTHORS</H3>
<DIV CLASS=REFBODY>
Bjrn Gustavsson - support@erlang.ericsson.se<BR>
</DIV>
<CENTER>
<HR>
<SMALL>stdlib 1.14.2<BR>
Copyright © 1991-2006
<A HREF="http://www.erlang.se">Ericsson AB</A><BR>
</SMALL>
</CENTER>
</BODY>
</HTML>
|