Skip to content

Commit 81ba34e

Browse files
authored
Rollup merge of rust-lang#63356 - ali-raheem:issue#63183, r=KodrAus
Issue#63183: Add fs::read_dir() and ReadDir warning about iterator order + example As per rust-lang#63183 Add warning about iterator order to read_dir and ReadDir, add example of explicitly ordering direntrys.
2 parents 66bf391 + 1161aeb commit 81ba34e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/libstd/fs.rs

+25
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ pub struct Metadata(fs_imp::FileAttr);
114114
/// information like the entry's path and possibly other metadata can be
115115
/// learned.
116116
///
117+
/// The order in which this iterator returns entries is platform and filesystem
118+
/// dependent.
119+
///
117120
/// # Errors
118121
///
119122
/// This [`io::Result`] will be an [`Err`] if there's some sort of intermittent
@@ -1962,6 +1965,9 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
19621965
///
19631966
/// [changes]: ../io/index.html#platform-specific-behavior
19641967
///
1968+
/// The order in which this iterator returns entries is platform and filesystem
1969+
/// dependent.
1970+
///
19651971
/// # Errors
19661972
///
19671973
/// This function will return an error in the following situations, but is not
@@ -1994,6 +2000,25 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
19942000
/// Ok(())
19952001
/// }
19962002
/// ```
2003+
///
2004+
/// ```rust,no_run
2005+
/// use std::{fs, io};
2006+
///
2007+
/// fn main() -> io::Result<()> {
2008+
/// let mut entries = fs::read_dir(".")?
2009+
/// .map(|res| res.map(|e| e.path()))
2010+
/// .collect::<Result<Vec<_>, io::Error>>()?;
2011+
///
2012+
/// // The order in which `read_dir` returns entries is not guaranteed. If reproducible
2013+
/// // ordering is required the entries should be explicitly sorted.
2014+
///
2015+
/// entries.sort();
2016+
///
2017+
/// // The entries have now been sorted by their path.
2018+
///
2019+
/// Ok(())
2020+
/// }
2021+
/// ```
19972022
#[stable(feature = "rust1", since = "1.0.0")]
19982023
pub fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> {
19992024
fs_imp::readdir(path.as_ref()).map(ReadDir)

0 commit comments

Comments
 (0)