summary refs log tree commit diff
path: root/src/libstd/io/fs.rs
AgeCommit message (Expand)AuthorLines
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-4/+4
2014-10-06Rename the file permission statics in std::io to be uppercaseP1start-33/+33
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-4/+4
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-4/+4
2014-10-01Remove iotest macroAaron Turon-79/+115
2014-09-21Fix fallout from Vec stabilizationAlex Crichton-2/+2
2014-09-16Fallout from renamingAaron Turon-4/+4
2014-09-13librustc: Forbid inherent implementations that aren't adjacent to thePatrick Walton-14/+25
2014-09-04Print file permissions with 4 digits.Jonas Hietala-1/+1
2014-09-03Print file permissions in octal form.Jonas Hietala-1/+1
2014-08-18Explain EOF behavior in File.eof().Steve Klabnik-1/+6
2014-08-13std: Rename various slice traits for consistencyBrian Anderson-1/+1
2014-08-08auto merge of #16336 : retep998/rust/master, r=brsonbors-4/+5
2014-08-07windows: Fix several tests on 64-bit.Peter Atashian-4/+5
2014-08-06Use byte literals in libstdnham-2/+2
2014-08-02native: Fix utime() for windowsAlex Crichton-6/+4
2014-07-30auto merge of #15915 : erickt/rust/master, r=alexcrichtonbors-1/+1
2014-07-29remove seek from std::io::MemWriter, add SeekableMemWriter to librustcErick Tryzelaar-1/+1
2014-07-29doc: add missing wordTshepang Lekhonkhobe-1/+1
2014-07-28Fix some of the documentation std::io::fs.nham-22/+20
2014-07-23collections: Move push/pop to MutableSeqBrian Anderson-1/+1
2014-07-22auto merge of #15867 : cmr/rust/rewrite-lexer4, r=alexcrichtonbors-0/+2
2014-07-21Add a ton of ignore-lexer-testCorey Richardson-0/+2
2014-07-15Deprecate `str::from_utf8_owned`Adolfo OchagavĂ­a-2/+2
2014-07-14std: Make unlink() more consistentAlex Crichton-5/+43
2014-07-13auto merge of #15591 : aturon/rust/box-cell-stability, r=alexcrichtonbors-1/+1
2014-07-13Stabilization for `owned` (now `boxed`) and `cell`Aaron Turon-1/+1
2014-07-11libc: Switch open to use a mode_t on unixAlex Crichton-1/+6
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-2/+2
2014-07-01rustc: Remove `&str` indexing from the language.Brian Anderson-2/+2
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick Walton-1/+1
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-1/+1
2014-06-18Deprecate the bytes!() macro.Simon Sapin-15/+15
2014-06-15Register new snapshotsAlex Crichton-1/+1
2014-06-13Rolling up PRs in the queueAlex Crichton-2/+6
2014-06-13std: Rebase better errors on masterAlex Crichton-7/+11
2014-06-13Improve error messages for io::fsYehuda Katz-56/+201
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-9/+8
2014-06-08core: Rename `container` mod to `collections`. Closes #12543Brian Anderson-1/+1
2014-06-06std: Deal with fallout of rtio changesAlex Crichton-33/+112
2014-06-06rtio: Remove usage of `Path`Alex Crichton-2/+6
2014-05-28std: Remove format_strbuf!()Alex Crichton-5/+4
2014-05-25libstd: Remove unnecessary re-exports under std::stdKevin Ballard-2/+2
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-5/+4
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-5/+7
2014-05-12Add `stat` method to `std::io::fs::File` to stat without a Path.Yuri Kunde Schlesner-6/+14
2014-05-07core: Add unwrap()/unwrap_err() methods to ResultAlex Crichton-1/+1
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-3/+4
2014-05-05Change std::io::FilePermission to a typesafe representationAaron Turon-3/+3
2014-04-30native: Always open a file with Open/Write modesAlex Crichton-0/+20