summary refs log tree commit diff
path: root/src/libstd/fs.rs
AgeCommit message (Expand)AuthorLines
2018-02-05Rollup merge of #47999 - jaystrictor:master, r=Mark-Simulacrumkennytm-1/+1
2018-02-04Remove 'the this' in doc comments.Jay Strict-1/+1
2018-02-03Clarify shared file handler behavior of File::try_clone.Corey Farwell-7/+29
2018-01-17Rollup merge of #47520 - mbrubeck:fstat, r=Mark-SimulacrumGuillaume Gomez-7/+9
2018-01-17Use File::metadata instead of fs::metadata to choose buffer sizeMatt Brubeck-7/+9
2018-01-14Auto merge of #47268 - EdSchouten:cloudabi-libstd, r=alexcrichtonbors-1/+1
2018-01-11Make tests build on CloudABI.Ed Schouten-1/+1
2018-01-10Pre-allocate in fs::read and fs::read_stringMatt Brubeck-2/+10
2017-12-08fs::{read, read_string, write}: add tracking issue numberSimon Sapin-3/+3
2017-12-06Rename fs::read_utf8 to read_stringSimon Sapin-4/+4
2017-11-29Generalize fs::write from &[u8] to AsRef<[u8]>Simon Sapin-3/+3
2017-11-07Add `std::fs::read_utf8`, based on `File::open` and `read_to_string`Simon Sapin-1/+53
2017-11-07Move `File::{read,write}_contents` to `fs::{read,write}` free functions.Simon Sapin-70/+71
2017-11-07Add File::read_contents and File::write_contents convenience functions.Simon Sapin-0/+79
2017-09-27Made `fs::copy` return the length of the main streamStephane Raux-3/+18
2017-09-23Rollup merge of #44759 - durka:patch-43, r=steveklabnikCorey Farwell-3/+3
2017-09-21improve english in create_dir_all docsAlex Burka-3/+3
2017-09-17Add test case for unix permissionsTrevor Merrifield-0/+21
2017-09-13Add note for append method in OpenOptions docsGuillaume Gomez-0/+6
2017-09-13Add missing urls for OpenOptions docsGuillaume Gomez-5/+17
2017-08-15Clarify 'writable'-changing behavior of `set_readonly`.Corey Farwell-1/+5
2017-08-15Clarify `readonly` method is also about being 'unwritable'.Corey Farwell-1/+1
2017-08-12Fix some typosBastien Orivel-1/+1
2017-08-10Add missing links in ReadDir docsGuillaume Gomez-5/+5
2017-08-10Add missing links on File struct docsGuillaume Gomez-2/+4
2017-07-18libstd: remove redundant & from &Path::new(...)NODA, Kai-3/+3
2017-06-28Add links to the `ErrorKind` variants in errors of `open`Tobias Bucher-11/+16
2017-06-27Document possible `io::ErrorKind`s of `fs::open`Tobias Bucher-9/+25
2017-06-20Add `Read::initializer`.Steven Fackler-5/+9
2017-05-26doc rewordingking6cong-1/+1
2017-05-08Remove need for &format!(...) or &&"" dances in `span_label` callsOliver Schneider-1/+1
2017-04-06Fix Markdown issues in the docsOliver Middleton-0/+14
2017-04-02Improve documentation for `std::fs::DirBuilder`Peter Gerber-3/+6
2017-03-18Fix problems left in `concurrent_recursive_mkdir`Dawid Ciężarkiewicz-3/+4
2017-03-17Fix `create_dir_all("")`Dawid Ciężarkiewicz-0/+14
2017-03-17Reorder match checks in `create_dir_all`Dawid Ciężarkiewicz-1/+1
2017-03-17Fix problems found on Windows in `dir_create_all`Dawid Ciężarkiewicz-4/+3
2017-03-17Break line longer than 100 charactersDawid Ciężarkiewicz-1/+2
2017-03-17Add `concurrent_recursive_mkdir` testDawid Ciężarkiewicz-1/+22
2017-03-17Fix new version of `create_dir_all`Dawid Ciężarkiewicz-2/+2
2017-03-17Fix race condition in fs::create_dir_allDavid Roundy-4/+20
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-4/+4
2017-01-29Fix a few impl stability attributesOliver Middleton-1/+1
2017-01-25std: Stabilize APIs for the 1.16.0 releaseAlex Crichton-2/+1
2017-01-22libstd: replace all `try!` with `?` in documentation examplesUtkarsh Kukreti-55/+55
2017-01-22Auto merge of #39176 - CartesianDaemon:master, r=frewsxcvbors-1/+12
2017-01-21Revert "Add link to symlink_metadata in fs::Metadata doc"Jack Vickeridge-4/+3
2017-01-20Document that `Metadata` can be obtained from `symlink_metadata`Andrea Canciani-3/+5
2017-01-20Add link to symlink_metadata in fs::Metadata docJack Vickeridge-3/+4
2017-01-20Fix formatting and links in previous doc change.Jack Vickeridge-4/+10