$50 GRAYBYTE WORDPRESS FILE MANAGER $55

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.157
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/ruby18/share/ri/1.8/system/IO/

HOME
Current File : /opt/alt/ruby18/share/ri/1.8/system/IO//cdesc-IO.yaml
--- !ruby/object:RI::ClassDescription 
attributes: []

class_methods: 
- !ruby/object:RI::MethodSummary 
  name: for_fd
- !ruby/object:RI::MethodSummary 
  name: foreach
- !ruby/object:RI::MethodSummary 
  name: new
- !ruby/object:RI::MethodSummary 
  name: new
- !ruby/object:RI::MethodSummary 
  name: open
- !ruby/object:RI::MethodSummary 
  name: pipe
- !ruby/object:RI::MethodSummary 
  name: popen
- !ruby/object:RI::MethodSummary 
  name: read
- !ruby/object:RI::MethodSummary 
  name: readlines
- !ruby/object:RI::MethodSummary 
  name: select
- !ruby/object:RI::MethodSummary 
  name: sysopen
comment: 
- !ruby/struct:SM::Flow::P 
  body: Class <tt>IO</tt> is the basis for all input and output in Ruby. An I/O stream may be <em>duplexed</em> (that is, bidirectional), and so may use more than one native operating system stream.
- !ruby/struct:SM::Flow::P 
  body: Many of the examples in this section use class <tt>File</tt>, the only standard subclass of <tt>IO</tt>. The two classes are closely associated.
- !ruby/struct:SM::Flow::P 
  body: As used in this section, <em>portname</em> may take any of the following forms.
- !ruby/object:SM::Flow::LIST 
  contents: 
  - !ruby/struct:SM::Flow::LI 
    label: "*"
    body: A plain string represents a filename suitable for the underlying operating system.
  - !ruby/struct:SM::Flow::LI 
    label: "*"
    body: A string starting with ``<tt>|</tt>'' indicates a subprocess. The remainder of the string following the ``<tt>|</tt>'' is invoked as a process with appropriate input/output channels connected to it.
  - !ruby/struct:SM::Flow::LI 
    label: "*"
    body: A string equal to ``<tt>|-</tt>'' will create another Ruby instance as a subprocess.
  type: :BULLET
- !ruby/struct:SM::Flow::P 
  body: "Ruby will convert pathnames between different operating system conventions if possible. For instance, on a Windows system the filename ``<tt>/gumby/ruby/test.rb</tt>'' will be opened as ``<tt>\\gumby\\ruby\\test.rb</tt>''. When specifying a Windows-style filename in a Ruby string, remember to escape the backslashes:"
- !ruby/struct:SM::Flow::VERB 
  body: "   &quot;c:\\gumby\\ruby\\test.rb&quot;\n"
- !ruby/struct:SM::Flow::P 
  body: Our examples here will use the Unix-style forward slashes; <tt>File::SEPARATOR</tt> can be used to get the platform-specific separator character.
- !ruby/struct:SM::Flow::P 
  body: I/O ports may be opened in any one of several different modes, which are shown in this section as <em>mode</em>. The mode may either be a Fixnum or a String. If numeric, it should be one of the operating system specific constants (O_RDONLY, O_WRONLY, O_RDWR, O_APPEND and so on). See man open(2) for more information.
- !ruby/struct:SM::Flow::P 
  body: If the mode is given as a String, it must be one of the values listed in the following table.
- !ruby/struct:SM::Flow::VERB 
  body: "  Mode |  Meaning\n  -----+--------------------------------------------------------\n  &quot;r&quot;  |  Read-only, starts at beginning of file  (default mode).\n  -----+--------------------------------------------------------\n  &quot;r+&quot; |  Read-write, starts at beginning of file.\n  -----+--------------------------------------------------------\n  &quot;w&quot;  |  Write-only, truncates existing file\n       |  to zero length or creates a new file for writing.\n  -----+--------------------------------------------------------\n  &quot;w+&quot; |  Read-write, truncates existing file to zero length\n       |  or creates a new file for reading and writing.\n  -----+--------------------------------------------------------\n  &quot;a&quot;  |  Write-only, starts at end of file if file exists,\n       |  otherwise creates a new file for writing.\n  -----+--------------------------------------------------------\n  &quot;a+&quot; |  Read-write, starts at end of file if file exists,\n       |  otherwise creates a new file for reading and\n       |  writing.\n  -----+--------------------------------------------------------\n   &quot;b&quot; |  (DOS/Windows only) Binary file mode (may appear with\n       |  any of the key letters listed above).\n"
- !ruby/struct:SM::Flow::P 
  body: The global constant ARGF (also accessible as $&lt;) provides an IO-like stream which allows access to all files mentioned on the command line (or STDIN if no files are mentioned). ARGF provides the methods <tt>#path</tt> and <tt>#filename</tt> to access the name of the file currently being read.
constants: 
- !ruby/object:RI::Constant 
  comment: 
  name: SEEK_SET
  value: INT2FIX(SEEK_SET)
- !ruby/object:RI::Constant 
  comment: 
  name: SEEK_CUR
  value: INT2FIX(SEEK_CUR)
- !ruby/object:RI::Constant 
  comment: 
  name: SEEK_END
  value: INT2FIX(SEEK_END)
full_name: IO
includes: 
- !ruby/object:RI::IncludedModule 
  name: File::Constants
- !ruby/object:RI::IncludedModule 
  name: Enumerable
instance_methods: 
- !ruby/object:RI::MethodSummary 
  name: "<<"
- !ruby/object:RI::MethodSummary 
  name: binmode
- !ruby/object:RI::MethodSummary 
  name: block_scanf
- !ruby/object:RI::MethodSummary 
  name: bytes
- !ruby/object:RI::MethodSummary 
  name: chars
- !ruby/object:RI::MethodSummary 
  name: close
- !ruby/object:RI::MethodSummary 
  name: close_read
- !ruby/object:RI::MethodSummary 
  name: close_write
- !ruby/object:RI::MethodSummary 
  name: closed?
- !ruby/object:RI::MethodSummary 
  name: each
- !ruby/object:RI::MethodSummary 
  name: each_byte
- !ruby/object:RI::MethodSummary 
  name: each_char
- !ruby/object:RI::MethodSummary 
  name: each_line
- !ruby/object:RI::MethodSummary 
  name: eof
- !ruby/object:RI::MethodSummary 
  name: eof?
- !ruby/object:RI::MethodSummary 
  name: fcntl
- !ruby/object:RI::MethodSummary 
  name: fileno
- !ruby/object:RI::MethodSummary 
  name: flush
- !ruby/object:RI::MethodSummary 
  name: fsync
- !ruby/object:RI::MethodSummary 
  name: getbyte
- !ruby/object:RI::MethodSummary 
  name: getc
- !ruby/object:RI::MethodSummary 
  name: gets
- !ruby/object:RI::MethodSummary 
  name: inspect
- !ruby/object:RI::MethodSummary 
  name: ioctl
- !ruby/object:RI::MethodSummary 
  name: isatty
- !ruby/object:RI::MethodSummary 
  name: lineno
- !ruby/object:RI::MethodSummary 
  name: lineno=
- !ruby/object:RI::MethodSummary 
  name: lines
- !ruby/object:RI::MethodSummary 
  name: pid
- !ruby/object:RI::MethodSummary 
  name: pos
- !ruby/object:RI::MethodSummary 
  name: pos=
- !ruby/object:RI::MethodSummary 
  name: print
- !ruby/object:RI::MethodSummary 
  name: printf
- !ruby/object:RI::MethodSummary 
  name: putc
- !ruby/object:RI::MethodSummary 
  name: puts
- !ruby/object:RI::MethodSummary 
  name: read
- !ruby/object:RI::MethodSummary 
  name: read_nonblock
- !ruby/object:RI::MethodSummary 
  name: readbyte
- !ruby/object:RI::MethodSummary 
  name: readbytes
- !ruby/object:RI::MethodSummary 
  name: readchar
- !ruby/object:RI::MethodSummary 
  name: readline
- !ruby/object:RI::MethodSummary 
  name: readlines
- !ruby/object:RI::MethodSummary 
  name: readpartial
- !ruby/object:RI::MethodSummary 
  name: reopen
- !ruby/object:RI::MethodSummary 
  name: rewind
- !ruby/object:RI::MethodSummary 
  name: scanf
- !ruby/object:RI::MethodSummary 
  name: seek
- !ruby/object:RI::MethodSummary 
  name: soak_up_spaces
- !ruby/object:RI::MethodSummary 
  name: stat
- !ruby/object:RI::MethodSummary 
  name: sync
- !ruby/object:RI::MethodSummary 
  name: sync=
- !ruby/object:RI::MethodSummary 
  name: sysread
- !ruby/object:RI::MethodSummary 
  name: sysseek
- !ruby/object:RI::MethodSummary 
  name: syswrite
- !ruby/object:RI::MethodSummary 
  name: tell
- !ruby/object:RI::MethodSummary 
  name: to_i
- !ruby/object:RI::MethodSummary 
  name: to_io
- !ruby/object:RI::MethodSummary 
  name: tty?
- !ruby/object:RI::MethodSummary 
  name: ungetc
- !ruby/object:RI::MethodSummary 
  name: write
- !ruby/object:RI::MethodSummary 
  name: write_nonblock
name: IO
superclass: 


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2024 10.50 PM
root / linksafe
0755
%3c%3c-i.yaml
0.547 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
binmode-i.yaml
0.374 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
block_scanf-i.yaml
0.196 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
bytes-i.yaml
0.555 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
cdesc-IO.yaml
7.742 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
chars-i.yaml
0.603 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
close-i.yaml
0.598 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
close_read-i.yaml
0.703 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
close_write-i.yaml
0.749 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
closed%3f-i.yaml
0.673 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
each-i.yaml
0.796 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
each_byte-i.yaml
0.622 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
each_char-i.yaml
0.61 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
each_line-i.yaml
0.806 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
eof%3f-i.yaml
1.152 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
eof-i.yaml
1.15 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
fcntl-i.yaml
0.649 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
fileno-i.yaml
0.459 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
flush-i.yaml
0.584 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
for_fd-c.yaml
0.253 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
foreach-c.yaml
0.657 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
fsync-i.yaml
0.577 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
getbyte-i.yaml
0.447 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
getc-i.yaml
0.441 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
gets-i.yaml
0.874 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
inspect-i.yaml
0.263 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
ioctl-i.yaml
0.572 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
isatty-i.yaml
0.513 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
lineno%3d-i.yaml
0.73 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
lineno-i.yaml
0.797 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
lines-i.yaml
0.663 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
new-c.yaml
0.64 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
open-c.yaml
0.585 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
pid-i.yaml
0.695 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
pipe-c.yaml
1.273 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
popen-c.yaml
2.028 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
pos%3d-i.yaml
0.422 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
pos-i.yaml
0.464 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
print-i.yaml
0.881 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
printf-i.yaml
0.375 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
putc-i.yaml
0.586 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
puts-i.yaml
0.769 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
read-c.yaml
0.764 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
read-i.yaml
0.951 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
read_nonblock-i.yaml
0.976 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readbyte-i.yaml
0.313 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readbytes-i.yaml
0.462 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readchar-i.yaml
0.313 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readline-i.yaml
0.323 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readlines-c.yaml
0.524 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readlines-i.yaml
0.679 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
readpartial-i.yaml
3.722 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
reopen-i.yaml
0.731 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
rewind-i.yaml
0.536 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
scanf-i.yaml
1.244 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
seek-i.yaml
1.013 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
select-c.yaml
0.315 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
soak_up_spaces-i.yaml
0.175 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
stat-i.yaml
0.529 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
sync%3d-i.yaml
0.615 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
sync-i.yaml
0.531 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
sysopen-c.yaml
0.411 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
sysread-i.yaml
0.634 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
sysseek-i.yaml
0.609 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
syswrite-i.yaml
0.6 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
tell-i.yaml
0.466 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
to_i-i.yaml
0.209 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
to_io-i.yaml
0.231 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
tty%3f-i.yaml
0.509 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
ungetc-i.yaml
0.809 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
write-i.yaml
0.717 KB
26 Jul 2023 1.47 PM
root / linksafe
0644
write_nonblock-i.yaml
0.621 KB
26 Jul 2023 1.47 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF