Class Sys::Filesystem::Mount
In: lib/windows/sys/filesystem.rb
lib/unix/sys/filesystem.rb
Parent: Object

Mount objects are returned by the Sys::Filesystem.mounts method.

Methods

new  

External Aliases

name -> fsname
mount_point -> dir
options -> opts
pass_number -> passno
frequency -> freq
name -> fsname
mount_point -> dir
options -> opts
pass_number -> passno
dump_frequency -> freq

Attributes

dump_frequency  [RW]  The dump frequency in days. May be nil.
frequency  [R]  Always nil on MS Windows. Provided for interface compatibility only.
mount_point  [R]  The volume mount point, e.g. ‘C:\’
mount_point  [RW]  The mount point/directory.
mount_time  [R]  The last time the volume was mounted. For MS Windows this equates to your system‘s boot time.
mount_time  [RW]  The time the filesystem was mounted. May be nil.
mount_type  [R]  The type of mount, e.g. NTFS, UDF, etc.
mount_type  [RW]  The type of filesystem mount, e.g. ufs, nfs, etc.
name  [R]  The name of the volume. This is the device mapping.
name  [RW]  The name of the mounted resource.
options  [RW]  A list of comma separated options for the mount, e.g. nosuid, etc.
options  [R]  Various comma separated options that reflect the volume‘s features
pass_number  [R]  Always nil on MS Windows. Provided for interface compatibility only.
pass_number  [RW]  The pass number of the filessytem check. May be nil.

Public Class methods

Creates a Sys::Filesystem::Mount object. This is meant for internal use only. Do no instantiate directly.

[Validate]