| Age | Commit message (Expand) | Author | Lines |
| 2018-01-10 | Pre-allocate in fs::read and fs::read_string | Matt Brubeck | -2/+10 |
| 2017-12-08 | fs::{read, read_string, write}: add tracking issue number | Simon Sapin | -3/+3 |
| 2017-12-06 | Rename fs::read_utf8 to read_string | Simon Sapin | -4/+4 |
| 2017-11-29 | Generalize fs::write from &[u8] to AsRef<[u8]> | Simon Sapin | -3/+3 |
| 2017-11-07 | Add `std::fs::read_utf8`, based on `File::open` and `read_to_string` | Simon Sapin | -1/+53 |
| 2017-11-07 | Move `File::{read,write}_contents` to `fs::{read,write}` free functions. | Simon Sapin | -70/+71 |
| 2017-11-07 | Add File::read_contents and File::write_contents convenience functions. | Simon Sapin | -0/+79 |
| 2017-09-27 | Made `fs::copy` return the length of the main stream | Stephane Raux | -3/+18 |
| 2017-09-23 | Rollup merge of #44759 - durka:patch-43, r=steveklabnik | Corey Farwell | -3/+3 |
| 2017-09-21 | improve english in create_dir_all docs | Alex Burka | -3/+3 |
| 2017-09-17 | Add test case for unix permissions | Trevor Merrifield | -0/+21 |
| 2017-09-13 | Add note for append method in OpenOptions docs | Guillaume Gomez | -0/+6 |
| 2017-09-13 | Add missing urls for OpenOptions docs | Guillaume Gomez | -5/+17 |
| 2017-08-15 | Clarify 'writable'-changing behavior of `set_readonly`. | Corey Farwell | -1/+5 |
| 2017-08-15 | Clarify `readonly` method is also about being 'unwritable'. | Corey Farwell | -1/+1 |
| 2017-08-12 | Fix some typos | Bastien Orivel | -1/+1 |
| 2017-08-10 | Add missing links in ReadDir docs | Guillaume Gomez | -5/+5 |
| 2017-08-10 | Add missing links on File struct docs | Guillaume Gomez | -2/+4 |
| 2017-07-18 | libstd: remove redundant & from &Path::new(...) | NODA, Kai | -3/+3 |
| 2017-06-28 | Add links to the `ErrorKind` variants in errors of `open` | Tobias Bucher | -11/+16 |
| 2017-06-27 | Document possible `io::ErrorKind`s of `fs::open` | Tobias Bucher | -9/+25 |
| 2017-06-20 | Add `Read::initializer`. | Steven Fackler | -5/+9 |
| 2017-05-26 | doc rewording | king6cong | -1/+1 |
| 2017-05-08 | Remove need for &format!(...) or &&"" dances in `span_label` calls | Oliver Schneider | -1/+1 |
| 2017-04-06 | Fix Markdown issues in the docs | Oliver Middleton | -0/+14 |
| 2017-04-02 | Improve documentation for `std::fs::DirBuilder` | Peter Gerber | -3/+6 |
| 2017-03-18 | Fix problems left in `concurrent_recursive_mkdir` | Dawid Ciężarkiewicz | -3/+4 |
| 2017-03-17 | Fix `create_dir_all("")` | Dawid Ciężarkiewicz | -0/+14 |
| 2017-03-17 | Reorder match checks in `create_dir_all` | Dawid Ciężarkiewicz | -1/+1 |
| 2017-03-17 | Fix problems found on Windows in `dir_create_all` | Dawid Ciężarkiewicz | -4/+3 |
| 2017-03-17 | Break line longer than 100 characters | Dawid Ciężarkiewicz | -1/+2 |
| 2017-03-17 | Add `concurrent_recursive_mkdir` test | Dawid Ciężarkiewicz | -1/+22 |
| 2017-03-17 | Fix new version of `create_dir_all` | Dawid Ciężarkiewicz | -2/+2 |
| 2017-03-17 | Fix race condition in fs::create_dir_all | David Roundy | -4/+20 |
| 2017-03-13 | Remove function invokation parens from documentation links. | Corey Farwell | -4/+4 |
| 2017-01-29 | Fix a few impl stability attributes | Oliver Middleton | -1/+1 |
| 2017-01-25 | std: Stabilize APIs for the 1.16.0 release | Alex Crichton | -2/+1 |
| 2017-01-22 | libstd: replace all `try!` with `?` in documentation examples | Utkarsh Kukreti | -55/+55 |
| 2017-01-22 | Auto merge of #39176 - CartesianDaemon:master, r=frewsxcv | bors | -1/+12 |
| 2017-01-21 | Revert "Add link to symlink_metadata in fs::Metadata doc" | Jack Vickeridge | -4/+3 |
| 2017-01-20 | Document that `Metadata` can be obtained from `symlink_metadata` | Andrea Canciani | -3/+5 |
| 2017-01-20 | Add link to symlink_metadata in fs::Metadata doc | Jack Vickeridge | -3/+4 |
| 2017-01-20 | Fix formatting and links in previous doc change. | Jack Vickeridge | -4/+10 |
| 2017-01-19 | Use fs::symlink_metadata in doc for is_symlink | Jack Vickeridge | -1/+6 |
| 2017-01-09 | Fix a couple of bad Markdown links | Chris Morgan | -1/+2 |
| 2016-12-26 | Auto merge of #38536 - retep998:flauschige-kaninchen, r=petrochenkov | bors | -20/+25 |
| 2016-12-24 | Auto merge of #38443 - frewsxcv:file-docs, r=brson | bors | -6/+38 |
| 2016-12-22 | Fix fs tests on Windows systems with non-english locales. | Peter Atashian | -20/+25 |
| 2016-12-18 | Implement `fmt::Debug` for all structures in libstd. | Corey Farwell | -1/+17 |
| 2016-12-18 | Improve the API examples for `std::fs::File`. | Corey Farwell | -6/+38 |