Author: wayland
Date: 2009-08-06 05:51:19 +0200 (Thu, 06 Aug 2009)
New Revision: 27880
Modified:
docs/Perl6/Spec/S32-setting-library/IO.pod
Log:
[S32/IO] Separated IO::Filesystem and IO::Filesystems
Modified: docs/Perl6/Spec/S32-setting-library/IO.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/IO.pod 2009-08-05 20:48:24 UTC (rev
27879)
+++ docs/Perl6/Spec/S32-setting-library/IO.pod 2009-08-06 03:51:19 UTC (rev
27880)
@@ -621,14 +621,14 @@
=back
-=head2 IO::FileSystem
+=head2 IO::FileSystems
-This represents the filesystem.
+This represents the file systems available on the current machine.
class IO::FileSystem does IO::Streamable {
- has Str $.fstype; # ext3, ntfs, vfat, reiserfs, etc
has Str $.illegal-chars; # ie. /\x0
has Int $.max-path;
+ has Int $.max-path-element;
...
}
@@ -646,6 +646,16 @@
=back
+=head2 IO::FileSystem
+
+This represents a specific filesystem, such as those listed in /etc/fstab on
Unix, or the
+specific drives on Windows.
+
+ class IO::FileSystem does IO::Streamable {
+ has Str $.fstype; # ext3, ntfs, vfat, reiserfs, etc
+ ...
+ }
+
=head2 IO::FSNode
class IO::FSNode {