about summary refs log tree commit diff
path: root/src/libstd/fs.rs
AgeCommit message (Expand)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-15Fix doc of `std::fs::canonicalize`Tobias Bucher-1/+1
2018-12-14Fix docs path to PermissionsExtDanilo Bargen-1/+2
2018-12-11std: Depend directly on crates.io cratesAlex Crichton-1/+1
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-1/+1
2018-12-01remove some uses of try!Mark Mansi-1/+1
2018-11-20Incorporate `dyn` into more comments and docs.Corey Farwell-2/+2
2018-11-07Rollup merge of #55734 - teresy:shorthand-fields, r=davidtwcokennytm-1/+1
2018-11-06refactor: use shorthand fieldsteresy-1/+1
2018-11-04Add precision for create_dir functionGuillaume Gomez-0/+7
2018-10-10"(using ..." doesn't have the matching ")"Kazuyoshi Kato-1/+1
2018-09-07Rollup merge of #53376 - frewsxcv:frewsxcv-copy, r=GuillaumeGomezkennytm-0/+6
2018-09-04Breaking change upgradesMark Rousskov-3/+3
2018-08-14Cross reference io::copy and fs::copy in docs.Corey Farwell-0/+6
2018-07-08Edit code example for File::openFabian Drinck-3/+3
2018-06-01Remove feature flag from fs::read_to_string examplesteveklabnik-2/+0
2018-05-12fs::write: Add example writing a &strAaron DeVore-0/+1
2018-05-10fs::canonicalize has some important portability concerns.Tim Allen-0/+7
2018-05-10Mention that fs::canonicalize makes paths absolute.Tim Allen-2/+2
2018-04-02Add performance note to fs::read docsMatt Brubeck-2/+6
2018-04-01Auto merge of #49522 - mbrubeck:fs_read, r=SimonSapinbors-5/+5
2018-03-30Rename fs::read_string to read_to_string and stabilizeMatt Brubeck-5/+5
2018-03-30fs_read_write_bytes stabilized in 1.26.0Matt Brubeck-2/+2
2018-03-30Auto merge of #49422 - mbrubeck:fs_read, r=TimNNbors-6/+2
2018-03-28Auto merge of #49357 - frewsxcv:frewsxcv-termination-doc-examples, r=Guillaum...bors-263/+265
2018-03-28Stabilize fs::read and fs::writeMatt Brubeck-6/+2
2018-03-28Remove hidden `foo` functions from doc examples; use `Termination` trait.Corey Farwell-263/+265
2018-03-16Fix Issue #48345, is_file, is_dir, and is_symlink note mutual exclusionMaxwell Powlison-3/+32
2018-02-23Clarify interfaction between File::set_len and file cursorjethrogb-0/+4
2018-02-17Wording fixes from review for File.Alexis Hunt-5/+5
2018-02-16Add a warning to File about mutability.Alexis Hunt-0/+15
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