From 6bfbad937bdf578e35777d079f8dcfab49758041 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 2 Feb 2015 21:39:14 -0800 Subject: std: Add a new `fs` module This commit is an implementation of [RFC 739][rfc] which adds a new `std::fs` module to the standard library. This module provides much of the same functionality as `std::old_io::fs` but it has many tweaked APIs as well as uses the new `std::path` module. [rfc]: https://github.com/rust-lang/rfcs/pull/739 --- src/libstd/io/prelude.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/libstd/io') diff --git a/src/libstd/io/prelude.rs b/src/libstd/io/prelude.rs index 475ada2ff84..637b1950985 100644 --- a/src/libstd/io/prelude.rs +++ b/src/libstd/io/prelude.rs @@ -22,6 +22,7 @@ //! contained in this module. pub use super::{Read, ReadExt, Write, WriteExt, BufRead, BufReadExt}; +pub use fs::PathExt; // FIXME: pub use as `Seek` when the name isn't in the actual prelude any more pub use super::Seek as NewSeek; -- cgit 1.4.1-3-g733a5