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 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
|
<ppdoc>
<copyright>
Copyright (c) 2001 by Addison Wesley Longman. This
material may be distributed only subject to the terms and
conditions set forth in the Open Publication License, v1.0 or
later (the latest version is presently available at
http://www.opencontent.org/openpub/).
</copyright>
<class name="File" super="IO" type="class">
<p/>
A <classname>File</classname> is an abstraction of any file object accessible by the
program and is closely associated with class <classname>IO</classname>, page
329. <classname>File</classname> includes the methods of module
<modulename>FileTest</modulename> as class methods, allowing you to write (for example)
<tt>File.exist?("foo")</tt>.
<p/>
In this section, <em>permission bits</em>
are a platform-specific set of bits that indicate permissions of a
file. On Unix-based systems, permissions are viewed as a set of
three octets, for the owner, the group, and the rest of the world. For
each of these entities, permissions may be set to read, write, or
execute (or search, if a directory) the file:
<p/>
<center>
<table>
<tr>
<td colspan="3">Owner</td>
<td colspan="3">Group</td>
<td colspan="3">Other</td>
</tr>
<tr>
<td>r</td>
<td>w</td>
<td>x</td>
<td>r</td>
<td>w</td>
<td>x</td>
<td>r</td>
<td>w</td>
<td>x</td>
</tr>
<tr>
<td>4</td>
<td>2</td>
<td>1</td>
<td>4</td>
<td>2</td>
<td>1</td>
<td>4</td>
<td>2</td>
<td>1</td>
</tr>
</table>
<p/>
</center>
<p/>
The permission bits <tt>0644</tt> (in octal) would thus be interpreted as
read/write for owner, and read-only for group and other. Higher-order bits
may also be used to indicate the type of file (plain, directory,
pipe, socket, and so on) and various other special features.
<p/>
On non-Posix operating systems, there may be only the ability to make a
file read-only or not. In this case, the remaining permission bits
will be synthesized to resemble typical values. For instance, on
Windows NT the default permission bits are <tt>0644</tt>, which means
read/write for owner, read-only for all others. The only change
that can be made is to make the file read-only, which is reported as
<tt>0444</tt>.
<mixins>
<mixin name="FileTest">
blockdev?, chardev?, directory?, executable?, executable_real?,
exist?, exists?, file?, grpowned?, owned?, pipe?, readable?,
readable_real?, setgid?, setuid?, size, size?, socket?, sticky?,
symlink?, writable?, writable_real?, zero?</mixin>
</mixins>
<p/>
<methods type="class">
<p/>
<method name="atime" ref="atime">
<callseq>
File.atime( <obj>fileName</obj> )
<returns><obj>aTime</obj></returns>
</callseq>
<desc>
<p/>
Returns the last access time for the named file.
<p/>
<codefragment>
<fullcode><![CDATA[ File.atime("testfile")
]]></fullcode><rubycode>
<tr>
<td><tt>File.atime("testfile")</tt></td>
<td>»</td>
<td><tt>Sun<nbsp/>Mar<nbsp/>04<nbsp/>23:25:54<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="basename" ref="basename">
<callseq>
File.basename( <obj>fileName</obj> <opt>, <obj>aSuffix</obj></opt> )
<returns><obj>aNewString</obj></returns>
</callseq>
<desc>
<p/>
Returns the last component of the filename given in
<obj>fileName</obj>, which must be formed using forward slashes
(``<tt>/</tt>'') regardless of the separator used on the local
file system. If <obj>aSuffix</obj> is given and present at the end
of <obj>fileName</obj>, it is removed.
<p/>
<codefragment>
<fullcode><![CDATA[ File.basename("/home/gumby/work/ruby.rb")
File.basename("/home/gumby/work/ruby.rb", ".rb")
]]></fullcode><rubycode>
<tr>
<td><tt>File.basename("/home/gumby/work/ruby.rb")</tt></td>
<td>»</td>
<td><tt>"ruby.rb"</tt></td>
</tr>
<tr>
<td><tt>File.basename("/home/gumby/work/ruby.rb",<nbsp/>".rb")</tt></td>
<td>»</td>
<td><tt>"ruby"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="chmod" ref="chmod">
<callseq>
File.chmod( <obj>aModeInt</obj> <optn>, <obj>fileName</obj></optn> )
<returns><obj>anInteger</obj></returns>
</callseq>
<desc>
<p/>
Changes permission bits on the
named file(s) to the bit pattern represented by <obj>aModeInt</obj>.
Actual effects are operating system dependent (see the beginning
of this section). On Unix systems, see <tt>chmod(2)</tt> for
details. Returns the number of files processed.
<p/>
<codefragment>
<fullcode><![CDATA[!- f = File.new("out", "w");
!- f.close
File.chmod(0644, "testfile", "out")
!- File.delete("out");
]]></fullcode><rubycode>
<tr>
<td><tt>File.chmod(0644,<nbsp/>"testfile",<nbsp/>"out")</tt></td>
<td>»</td>
<td><tt>2</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="chown" ref="chown">
<callseq>
File.chown( <obj>anOwnerInt</obj>,
<obj>aGroupInt</obj> <optn>, <obj>fileName</obj></optn> )
<returns><obj>anInteger</obj></returns>
</callseq>
<desc>
<p/>
Changes the owner and group of the named file(s) to the given
numeric owner and group id's.
Only a process with superuser
privileges may change the owner of a file. The current owner of
a file may change the file's group to any group to which the
owner belongs. A <tt>nil</tt> or -1 owner or group id is
ignored.
Returns the number of files processed.
<p/>
<codefragment>
<alltt><fullcode><![CDATA[ File.chown(nil, 100, "testfile")
]]></fullcode>
File.chown(nil,<nbsp/>100,<nbsp/>"testfile")
</alltt>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="ctime" ref="ctime">
<callseq>
File.ctime( <obj>fileName</obj> )
<returns><obj>aTime</obj></returns>
</callseq>
<desc>
<p/>
Returns the change time for the named file (the time at which
directory information about the file was changed, not the file
itself).
<p/>
<codefragment>
<fullcode><![CDATA[ File.ctime("testfile")
]]></fullcode><rubycode>
<tr>
<td><tt>File.ctime("testfile")</tt></td>
<td>»</td>
<td><tt>Sun<nbsp/>Mar<nbsp/>04<nbsp/>23:28:25<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="delete" ref="delete">
<callseq>
File.delete( <optn><obj>fileName</obj></optn> )
<returns><obj>aFixnum</obj></returns>
</callseq>
<desc>
<p/>
Deletes the named file(s).
Returns the number of files processed.
See also <ccm><file>dir</file><front>Dir</front><back>rmdir</back><mref>rmdir</mref></ccm>.
<p/>
<codefragment>
<fullcode><![CDATA[ File.new("testrm", "w+").close
File.delete("testrm")
]]></fullcode><rubycode>
<tr>
<td><tt>File.new("testrm",<nbsp/>"w+").close</tt></td>
<td>»</td>
<td><tt>nil</tt></td>
</tr>
<tr>
<td><tt>File.delete("testrm")</tt></td>
<td>»</td>
<td><tt>1</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="dirname" ref="dirname">
<callseq>
File.dirname( <obj>fileName</obj> )
<returns><obj>fileName</obj></returns>
</callseq>
<desc>
<p/>
Returns all components of the filename given in
<obj>fileName</obj> except the last one. The filename must be
formed using forward slashes (``<tt>/</tt>'') regardless of the
separator used on the local file system.
<p/>
<codefragment>
<fullcode><![CDATA[ File.dirname("/home/gumby/work/ruby.rb")
]]></fullcode><rubycode>
<tr>
<td><tt>File.dirname("/home/gumby/work/ruby.rb")</tt></td>
<td>»</td>
<td><tt>"/home/gumby/work"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="expand_path" ref="expand_path">
<callseq>
File.expand_path( <obj>fileName</obj>
<opt>, <obj>aDirString</obj></opt> )
<returns><obj>fileName</obj></returns>
</callseq>
<desc>
<p/>
Converts a pathname to an absolute pathname.
Relative paths
are referenced from the current working directory of the process
unless <obj>aDirString</obj> is given, in which case it will be used
as the starting point. The given pathname may start with a
``<tt>~</tt>'', which expands to the process owner's home directory
(the environment variable <tt>HOME</tt>
must be set correctly).
``<tt>~</tt><obj>user</obj>'' expands to the named user's home
directory.
<p/>
<codefragment>
<fullcode><![CDATA[ File.expand_path("~oracle/bin")
File.expand_path("../../bin", "/tmp/x")
]]></fullcode><rubycode>
<tr>
<td><tt>File.expand_path("~oracle/bin")</tt></td>
<td>»</td>
<td><tt>"/home/oracle/bin"</tt></td>
</tr>
<tr>
<td><tt>File.expand_path("../../bin",<nbsp/>"/tmp/x")</tt></td>
<td>»</td>
<td><tt>"/bin"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="ftype" ref="ftype">
<callseq>
File.ftype( <obj>fileName</obj> )
<returns><obj>fileType</obj></returns>
</callseq>
<desc>
<p/>
Identifies the type of the named file;
the return string is one of
``<tt>file</tt>'',
``<tt>directory</tt>'',
``<tt>characterSpecial</tt>'',
``<tt>blockSpecial</tt>'',
``<tt>fifo</tt>'',
``<tt>link</tt>'', or
``<tt>socket</tt>''.
<p/>
<codefragment>
<fullcode><![CDATA[ File.ftype("testfile")
File.ftype("/dev/tty")
File.ftype("/tmp/.X11-unix/X0")
]]></fullcode><rubycode>
<tr>
<td><tt>File.ftype("testfile")</tt></td>
<td>»</td>
<td><tt>"file"</tt></td>
</tr>
<tr>
<td><tt>File.ftype("/dev/tty")</tt></td>
<td>»</td>
<td><tt>"characterSpecial"</tt></td>
</tr>
<tr>
<td><tt>File.ftype("/tmp/.X11-unix/X0")</tt></td>
<td>»</td>
<td><tt>"socket"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="join" ref="join">
<callseq>
File.join( <optn><obj>aString</obj></optn> )
<returns><obj>fileName</obj></returns>
</callseq>
<desc>
<p/>
Returns a new string formed by joining the strings
using <classconst><file>file</file><front>File</front><back>SEPARATOR</back><mref>SEPARATOR</mref></classconst> (see Table 22.2 on page 308).
<p/>
<codefragment>
<fullcode><![CDATA[ File.join("usr", "mail", "gumby")
]]></fullcode><rubycode>
<tr>
<td><tt>File.join("usr",<nbsp/>"mail",<nbsp/>"gumby")</tt></td>
<td>»</td>
<td><tt>"usr/mail/gumby"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<figure type="table">
<caption>Path separator constants (platform-specific)</caption>
<table>
<p/>
<toprule/><tr>
<td><tt>ALT_SEPARATOR</tt></td>
<td>Alternate path separator.</td>
</tr>
<tr>
<td><tt>PATH_SEPARATOR</tt></td>
<td>Character that separates filenames in
a search path (such as ``:'' or ``;'').</td>
</tr>
<tr>
<td><tt>SEPARATOR</tt></td>
<td>Character that separates directory
components in a filename (such as ``\'' or ``/'').</td>
</tr>
<tr>
<td><tt>Separator</tt></td>
<td>Alias for <const>SEPARATOR</const>.</td>
</tr>
<bottomrule/></table>
<p/>
</figure>
<p/>
<method name="link" ref="link">
<callseq>
File.link( <obj>anOldName</obj>, <obj>aNewName</obj> )
<returns>0</returns>
</callseq>
<desc>
<p/>
Creates a new name for an existing file using a hard link.
Will not overwrite <obj>aNewName</obj> if it already exists (raising
a subclass of <exception>SystemCallError</exception>).
Not available on all platforms.
<p/>
<codefragment>
<fullcode><![CDATA[ File.link("testfile", ".testfile")
IO.readlines(".testfile")[0]
!- File.delete(".testfile");
]]></fullcode><rubycode>
<tr>
<td><tt>File.link("testfile",<nbsp/>".testfile")</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
<tr>
<td><tt>IO.readlines(".testfile")[0]</tt></td>
<td>»</td>
<td><tt>"This<nbsp/>is<nbsp/>line<nbsp/>one\n"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="lstat" ref="lstat">
<callseq>
File.lstat( <obj>fileName</obj> )
<returns><obj>aStat</obj></returns>
</callseq>
<desc>
<p/>
Same as <cim><file>io</file><front>IO</front><back>stat</back><mref>stat</mref></cim>, but does not follow the last symbolic link.
Instead, reports on the link itself.
<p/>
<codefragment>
<fullcode><![CDATA[ File.symlink("testfile", "link2test")
File.stat("testfile").size
File.lstat("link2test").size
File.stat("link2test").size
!- File.delete("link2test");
]]></fullcode><rubycode>
<tr>
<td><tt>File.symlink("testfile",<nbsp/>"link2test")</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
<tr>
<td><tt>File.stat("testfile").size</tt></td>
<td>»</td>
<td><tt>66</tt></td>
</tr>
<tr>
<td><tt>File.lstat("link2test").size</tt></td>
<td>»</td>
<td><tt>8</tt></td>
</tr>
<tr>
<td><tt>File.stat("link2test").size</tt></td>
<td>»</td>
<td><tt>66</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="mtime" ref="mtime">
<callseq>
File.mtime( <obj>fileName</obj> )
<returns><obj>aTime</obj></returns>
</callseq>
<desc>
<p/>
Returns the modification time for the named file.
<p/>
<codefragment>
<fullcode><![CDATA[ File.mtime("testfile")
]]></fullcode><rubycode>
<tr>
<td><tt>File.mtime("testfile")</tt></td>
<td>»</td>
<td><tt>Tue<nbsp/>Feb<nbsp/>27<nbsp/>00:11:18<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="new" ref="new">
<callseq>
File.new( <obj>fileName</obj>, <obj>aModeString</obj>="r" )
<returns><obj>file</obj></returns><br/>File.new( <obj>fileName</obj> <opt>, <obj>aModeNum</obj> <opt><obj>aPermNum</obj></opt></opt> )
<returns><obj>file</obj></returns>
</callseq>
<desc>
Opens the file named by <obj>fileName</obj> according to
<obj>aModeString</obj> (default is ``r'') and returns a new <classname>File</classname>
object. See Table 22.5 on page 331 for a description
of <obj>aModeString</obj>. The file mode may optionally be specified
as a <classname>Fixnum</classname> by <em>or</em>-ing together the flags described in
Table 22.3 on page 309.
Optional permission bits may be given in
<obj>aPermNum</obj>. These mode and permission bits are platform
dependent; on Unix systems, see <tt>open(2)</tt> for details.
<p/>
<codefragment>
<alltt><fullcode><![CDATA[ f = File.new("testfile", "r")
f = File.new("newfile", "w+")
f = File.new("newfile", File::CREAT|File::TRUNC|File::RDWR, 0644)
]]></fullcode>
f<nbsp/>=<nbsp/>File.new("testfile",<nbsp/>"r")
f<nbsp/>=<nbsp/>File.new("newfile",<nbsp/><nbsp/>"w+")
f<nbsp/>=<nbsp/>File.new("newfile",<nbsp/>File::CREAT|File::TRUNC|File::RDWR,<nbsp/>0644)
</alltt>
</codefragment>
<p/>
</desc>
</method>
<p/>
<figure type="table">
<caption>Open-mode constants</caption>
<table>
<p/>
<toprule/><tr>
<td><tt>APPEND</tt></td>
<td>Open the file in append mode; all writes will occur at
end of file.</td>
</tr>
<tr>
<td><tt>CREAT</tt></td>
<td>Create the file on open if it does not exist.</td>
</tr>
<tr>
<td><tt>EXCL</tt></td>
<td>When used with CREAT, open will fail if the file exists.</td>
</tr>
<tr>
<td><tt>NOCTTY</tt></td>
<td>When opening a terminal device (see
<cim><file>io</file><front>IO</front><back>isatty</back><mref>isatty</mref></cim> on page 335), do not allow it to
become the controlling terminal.</td>
</tr>
<tr>
<td><tt>NONBLOCK</tt></td>
<td>Open the file in nonblocking mode.</td>
</tr>
<tr>
<td><tt>RDONLY</tt></td>
<td>Open for reading only.</td>
</tr>
<tr>
<td><tt>RDWR</tt></td>
<td>Open for reading and writing.</td>
</tr>
<tr>
<td><tt>TRUNC</tt></td>
<td>Open the file and truncate it to zero length
if the file exists.</td>
</tr>
<tr>
<td><tt>WRONLY</tt></td>
<td>Open for writing only.</td>
</tr>
<bottomrule/></table>
<p/>
</figure>
<p/>
<method name="open" ref="open">
<callseq>
File.open( <obj>fileName</obj>, <obj>aModeString</obj>="r" )
<returns><obj>file</obj></returns><br/>File.open( <obj>fileName</obj> <opt>, <obj>aModeNum</obj> <opt><obj>aPermNum</obj></opt></opt> )
<returns><obj>file</obj></returns><br/>File.open( <obj>fileName</obj>, <obj>aModeString</obj>="r" )
<block>{| <obj>file</obj> | <blockbody>block</blockbody> }</block>
<returns><tt>nil</tt></returns><br/>File.open( <obj>fileName</obj> <opt>, <obj>aModeNum</obj> <opt><obj>aPermNum</obj></opt></opt> )
<block>{| <obj>file</obj> | <blockbody>block</blockbody> }</block>
<returns><tt>nil</tt></returns><br/>
</callseq>
<desc>
<p/>
With no associated block, <meth>open</meth> is a synonym for <ccm><file>file</file><front>File</front><back>new</back><mref>new</mref></ccm>.
If the optional code block is given, it will be passed <obj>file</obj>
as an argument, and the file will automatically be closed when
the block terminates. In this instance, <ccm><file>file</file><front>File</front><back>open</back><mref>open</mref></ccm> returns <tt>nil</tt>.
<p/>
</desc>
</method>
<p/>
<method name="readlink" ref="readlink">
<callseq>
File.readlink( <obj>fileName</obj> )
<returns><obj>fileName</obj></returns>
</callseq>
<desc>
<p/>
Returns the given symbolic link as a string.
Not available on all platforms.
<p/>
<codefragment>
<fullcode><![CDATA[ File.symlink("testfile", "link2test")
File.readlink("link2test")
!- File.delete("link2test");
]]></fullcode><rubycode>
<tr>
<td><tt>File.symlink("testfile",<nbsp/>"link2test")</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
<tr>
<td><tt>File.readlink("link2test")</tt></td>
<td>»</td>
<td><tt>"testfile"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="rename" ref="rename">
<callseq>
File.rename( <obj>anOldName</obj>, <obj>aNewName</obj> )
<returns>0</returns>
</callseq>
<desc>
<p/>
Renames the given file to the new name.
Raises a <exception>SystemCallError</exception> if the file cannot be renamed.
<p/>
<codefragment>
<fullcode><![CDATA[!- File.link("testfile", "afile")
File.rename("afile", "afile.bak")
!- File.delete("afile.bak")
]]></fullcode><rubycode>
<tr>
<td><tt>File.rename("afile",<nbsp/>"afile.bak")</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="size" ref="size">
<callseq>
File.size( <obj>fileName</obj> )
<returns><obj>anInteger</obj></returns>
</callseq>
<desc>
<p/>
Returns the size of the file in bytes.
<p/>
<codefragment>
<fullcode><![CDATA[ File.size("testfile")
]]></fullcode><rubycode>
<tr>
<td><tt>File.size("testfile")</tt></td>
<td>»</td>
<td><tt>66</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="split" ref="split">
<callseq>
File.split( <obj>fileName</obj> )
<returns><obj>anArray</obj></returns>
</callseq>
<desc>
<p/>
Splits the given string into a directory and a file component and
returns them in a two-element array. See also <ccm><file>file</file><front>File</front><back>dirname</back><mref>dirname</mref></ccm> and
<ccm><file>file</file><front>File</front><back>basename</back><mref>basename</mref></ccm>.
<p/>
<codefragment>
<fullcode><![CDATA[ File.split("/home/gumby/.profile")
]]></fullcode><rubycode>
<tr>
<td><tt>File.split("/home/gumby/.profile")</tt></td>
<td>»</td>
<td><tt>["/home/gumby",<nbsp/>".profile"]</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="stat" ref="stat">
<callseq>
File.stat( <obj>fileName</obj> )
<returns><obj>aStat</obj></returns>
</callseq>
<desc>
<p/>
Returns a <classname>File::Stat</classname> object for the named file
(see <const>File::Stat</const>, page 313).
<p/>
<codefragment>
<fullcode><![CDATA[ File.stat("testfile").mtime
]]></fullcode><rubycode>
<tr>
<td><tt>File.stat("testfile").mtime</tt></td>
<td>»</td>
<td><tt>Tue<nbsp/>Feb<nbsp/>27<nbsp/>00:11:18<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="symlink" ref="symlink">
<callseq>
File.symlink( <obj>anOldName</obj>, <obj>aNewName</obj> )
<returns>0 or <tt>nil</tt></returns>
</callseq>
<desc>
<p/>
Creates a symbolic link called <obj>aNewName</obj> for the existing
file <obj>anOldName</obj>.
Returns <tt>nil</tt> on all platforms that do not support
symbolic links.
<p/>
<codefragment>
<fullcode><![CDATA[ File.symlink("testfile", "link2test")
!- File.delete("link2test");
]]></fullcode><rubycode>
<tr>
<td><tt>File.symlink("testfile",<nbsp/>"link2test")</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="truncate" ref="truncate">
<callseq>
File.truncate( <obj>fileName</obj>, <obj>anInteger</obj> )
<returns>0</returns>
</callseq>
<desc>
<p/>
Truncates the file <obj>fileName</obj> to be at most <obj>anInteger</obj>
bytes long. Not available on all platforms.
<p/>
<codefragment>
<fullcode><![CDATA[ f = File.new("out", "w")
f.write("1234567890")
f.close
File.truncate("out", 5)
File.size("out")
!- File.delete("out");
]]></fullcode><rubycode>
<tr>
<td colspan="3"><tt>f<nbsp/>=<nbsp/>File.new("out",<nbsp/>"w")</tt></td>
</tr>
<tr>
<td><tt>f.write("1234567890")</tt></td>
<td>»</td>
<td><tt>10</tt></td>
</tr>
<tr>
<td><tt>f.close</tt></td>
<td>»</td>
<td><tt>nil</tt></td>
</tr>
<tr>
<td><tt>File.truncate("out",<nbsp/>5)</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
<tr>
<td><tt>File.size("out")</tt></td>
<td>»</td>
<td><tt>5</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="umask" ref="umask">
<callseq>
File.umask( <opt><obj>anInteger</obj></opt> )
<returns><obj>anInteger</obj></returns>
</callseq>
<desc>
<p/>
Returns the current umask value for this process.
If the
optional argument is given, set the umask to that value and
return the previous value. Umask values are <em>subtracted</em>
from the default permissions; so a umask of <tt>0222</tt> would make
a file read-only for everyone.
See also the discussion of permissions on page 305.
<p/>
<codefragment>
<fullcode><![CDATA[!- File.umask(0022)
File.umask(0006)
File.umask
]]></fullcode><rubycode>
<tr>
<td><tt>File.umask(0006)</tt></td>
<td>»</td>
<td><tt>18</tt></td>
</tr>
<tr>
<td><tt>File.umask</tt></td>
<td>»</td>
<td><tt>6</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="unlink" ref="unlink">
<callseq>
File.unlink( <optn><obj>fileName</obj></optn> )
<returns><obj>anInteger</obj></returns>
</callseq>
<desc>
<p/>
Synonym for <ccm><file>file</file><front>File</front><back>delete</back><mref>delete</mref></ccm>.
See also <ccm><file>dir</file><front>Dir</front><back>rmdir</back><mref>rmdir</mref></ccm>.
<p/>
</desc>
</method>
<p/>
<method name="utime" ref="utime">
<callseq>
File.utime( <obj>anAccessTime</obj>,
<obj>aModTime</obj> <optn>, <obj>fileName</obj></optn> )
<returns><obj>aFixnum</obj></returns>
</callseq>
<desc>
<p/>
Changes the access and modification times on a number of files.
The times must be instances of class <classname>Time</classname> or integers
representing the number of seconds since epoch.
Returns the number of files processed.
Not available on all platforms.
<p/>
<codefragment>
<fullcode><![CDATA[ File.utime(0, 0, "testfile")
File.mtime("testfile")
File.utime(0, Time.now, "testfile")
File.mtime("testfile")
]]></fullcode><rubycode>
<tr>
<td><tt>File.utime(0,<nbsp/>0,<nbsp/>"testfile")</tt></td>
<td>»</td>
<td><tt>1</tt></td>
</tr>
<tr>
<td><tt>File.mtime("testfile")</tt></td>
<td>»</td>
<td><tt>Wed<nbsp/>Dec<nbsp/>31<nbsp/>18:00:00<nbsp/>CST<nbsp/>1969</tt></td>
</tr>
<tr>
<td><tt>File.utime(0,<nbsp/>Time.now,<nbsp/>"testfile")</tt></td>
<td>»</td>
<td><tt>1</tt></td>
</tr>
<tr>
<td><tt>File.mtime("testfile")</tt></td>
<td>»</td>
<td><tt>Sun<nbsp/>Mar<nbsp/>04<nbsp/>23:28:25<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
</methods>
<p/>
<methods type="instance">
<p/>
<method name="atime" ref="atime">
<callseq>
<obj>file</obj>.atime
<returns><obj>aTime</obj></returns>
</callseq>
<desc>
<p/>
Returns the last access time for <obj>file</obj>, or epoch if <obj>file</obj> has
not been accessed.
<p/>
<codefragment>
<fullcode><![CDATA[ File.new("testfile").atime
]]></fullcode><rubycode>
<tr>
<td><tt>File.new("testfile").atime</tt></td>
<td>»</td>
<td><tt>Wed<nbsp/>Dec<nbsp/>31<nbsp/>18:00:00<nbsp/>CST<nbsp/>1969</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="chmod" ref="chmod">
<callseq>
<obj>file</obj>.chmod( <obj>aModeInt</obj> )
<returns><tt>0</tt></returns>
</callseq>
<desc>
<p/>
Changes permission bits on <obj>file</obj> to the bit pattern
represented by <obj>aModeInt</obj>. Actual effects are platform
dependent; on Unix systems, see <tt>chmod(2)</tt> for details.
See the discussion of permissions on page 305.
<p/>
<codefragment>
<fullcode><![CDATA[ f = File.new("out", "w");
f.chmod(0644)
!- f.close
!- File.delete("out");
]]></fullcode><rubycode>
<tr>
<td colspan="3"><tt>f<nbsp/>=<nbsp/>File.new("out",<nbsp/>"w");</tt></td>
</tr>
<tr>
<td><tt>f.chmod(0644)</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="chown" ref="chown">
<callseq>
<obj>file</obj>.chown( <obj>anOwnerInt</obj>, <obj>aGroupInt</obj> )
<returns>0</returns>
</callseq>
<desc>
<p/>
Changes the owner and group of <obj>file</obj> to the given
numeric owner and group id's.
Only a process with superuser
privileges may change the owner of a file. The current owner of
a file may change the file's group to any group to which the
owner belongs. A <tt>nil</tt> or -1 owner or group id is
ignored.
<p/>
<codefragment>
<alltt><fullcode><![CDATA[ File.new("testfile").chown(502, 1000)
]]></fullcode>
File.new("testfile").chown(502,<nbsp/>1000)
</alltt>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="ctime" ref="ctime">
<callseq>
<obj>file</obj>.ctime
<returns><obj>aTime</obj></returns>
</callseq>
<desc>
<p/>
Returns the change time for <obj>file</obj> (that is, the time
directory information about the file was changed, not the file
itself).
<p/>
<codefragment>
<fullcode><![CDATA[ File.new("testfile").ctime
]]></fullcode><rubycode>
<tr>
<td><tt>File.new("testfile").ctime</tt></td>
<td>»</td>
<td><tt>Sun<nbsp/>Mar<nbsp/>04<nbsp/>23:28:25<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="flock" ref="flock">
<callseq>
<obj>file</obj>.flock ( <obj>aLockingConstant</obj> )
<returns>0 or <const>false</const></returns>
</callseq>
<desc>
<p/>
Locks or unlocks a file according to <obj>aLockingConstant</obj> (a
logical
<em>or</em> of the values in Table
22.4 on page 312). Returns <const>false</const> if
<const>File::LOCK_NB</const> is specified and the operation would
otherwise have blocked.
Not available on all platforms.
<p/>
<codefragment>
<fullcode><![CDATA[ File.new("testfile").flock(File::LOCK_UN)
]]></fullcode><rubycode>
<tr>
<td><tt>File.new("testfile").flock(File::LOCK_UN)</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<figure type="table">
<caption>Lock-mode constants</caption>
<table>
<p/>
<toprule/><tr>
<td><tt>LOCK_EX</tt></td>
<td>Exclusive lock. Only one process may hold an
exclusive lock for a given file at a time.</td>
</tr>
<tr>
<td><tt>LOCK_NB</tt></td>
<td>Don't block when locking. May be combined
with other lock options using logical or.</td>
</tr>
<tr>
<td><tt>LOCK_SH</tt></td>
<td>Shared lock. Multiple processes may each hold a
shared lock for a given file at the same time.</td>
</tr>
<tr>
<td><tt>LOCK_UN</tt></td>
<td>Unlock.</td>
</tr>
<bottomrule/></table>
<p/>
</figure>
<p/>
<method name="lstat" ref="lstat">
<callseq>
<obj>file</obj>.lstat
<returns><obj>aStat</obj></returns>
</callseq>
<desc>
<p/>
Same as <cim><file>io</file><front>IO</front><back>stat</back><mref>stat</mref></cim>, but does not follow the last symbolic link.
Instead, reports on the link itself.
<p/>
<codefragment>
<fullcode><![CDATA[ File.symlink("testfile", "link2test")
File.stat("testfile").size
f = File.new("link2test")
f.lstat.size
f.stat.size
!- f.close
!- File.delete("link2test");
]]></fullcode><rubycode>
<tr>
<td><tt>File.symlink("testfile",<nbsp/>"link2test")</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
<tr>
<td><tt>File.stat("testfile").size</tt></td>
<td>»</td>
<td><tt>66</tt></td>
</tr>
<tr>
<td colspan="3"><tt>f<nbsp/>=<nbsp/>File.new("link2test")</tt></td>
</tr>
<tr>
<td><tt>f.lstat.size</tt></td>
<td>»</td>
<td><tt>8</tt></td>
</tr>
<tr>
<td><tt>f.stat.size</tt></td>
<td>»</td>
<td><tt>66</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="mtime" ref="mtime">
<callseq>
<obj>file</obj>.mtime
<returns><obj>aTime</obj></returns>
</callseq>
<desc>
<p/>
Returns the modification time for <obj>file</obj>.
<p/>
<codefragment>
<fullcode><![CDATA[ File.new("testfile").mtime
]]></fullcode><rubycode>
<tr>
<td><tt>File.new("testfile").mtime</tt></td>
<td>»</td>
<td><tt>Sun<nbsp/>Mar<nbsp/>04<nbsp/>23:28:25<nbsp/>CST<nbsp/>2001</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="path" ref="path">
<callseq>
<obj>file</obj>.path
<returns><obj>fileName</obj></returns>
</callseq>
<desc>
<p/>
Returns the pathname used to create <obj>file</obj> as a string.
<p/>
<codefragment>
<fullcode><![CDATA[ File.new("testfile").path
]]></fullcode><rubycode>
<tr>
<td><tt>File.new("testfile").path</tt></td>
<td>»</td>
<td><tt>"testfile"</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
<method name="truncate" ref="truncate">
<callseq>
<obj>file</obj>.truncate( <obj>anInteger</obj> )
<returns>0</returns>
</callseq>
<desc>
<p/>
Truncates <obj>file</obj> to at most <obj>anInteger</obj> bytes. The file
must be opened for writing.
Not available on all platforms.
<p/>
<codefragment>
<fullcode><![CDATA[ f = File.new("out", "w")
f.syswrite("1234567890")
f.truncate(5)
f.close()
File.size("out")
!- File.delete("out");
]]></fullcode><rubycode>
<tr>
<td colspan="3"><tt>f<nbsp/>=<nbsp/>File.new("out",<nbsp/>"w")</tt></td>
</tr>
<tr>
<td><tt>f.syswrite("1234567890")</tt></td>
<td>»</td>
<td><tt>10</tt></td>
</tr>
<tr>
<td><tt>f.truncate(5)</tt></td>
<td>»</td>
<td><tt>0</tt></td>
</tr>
<tr>
<td><tt>f.close()</tt></td>
<td>»</td>
<td><tt>nil</tt></td>
</tr>
<tr>
<td><tt>File.size("out")</tt></td>
<td>»</td>
<td><tt>5</tt></td>
</tr>
</rubycode>
<p/>
</codefragment>
<p/>
</desc>
</method>
<p/>
</methods>
<p/>
</class>
</ppdoc>
|