| Age | Commit message (Expand) | Author | Lines |
| 2021-09-14 | Add chown functions to std::os::unix::fs to change the owner and group of files | Josh Triplett | -0/+17 |
| 2021-08-31 | Use the return value of readdir_r() instead of errno | Tavian Barnes | -2/+3 |
| 2021-08-19 | I/O safety. | Dan Gohman | -21/+56 |
| 2021-08-10 | STD support for the ESP-IDF framework | ivmarkov | -8/+22 |
| 2021-07-29 | fs File get_path procfs usage for netbsd same as linux. | David Carlier | -2/+7 |
| 2021-07-10 | Change `weak!` and `linkat!` to macros 2.0 | Aris Merchant | -0/+9 |
| 2021-07-09 | Fix linker error | Aris Merchant | -11/+30 |
| 2021-07-06 | Rollup merge of #83581 - arennow:dir_entry_ext_unix_borrow_name, r=m-ou-se | Yuki Okushi | -0/+4 |
| 2021-06-15 | Rename ErrorKind::Unknown to Uncategorized. | Mara Bos | -1/+1 |
| 2021-06-15 | Redefine `ErrorKind::Other` and stop using it in std. | Mara Bos | -1/+1 |
| 2021-05-23 | Auto merge of #85490 - CDirkx:fix-vxworks, r=dtolnay | bors | -1/+1 |
| 2021-05-21 | Add std::os::unix::fs::DirEntryExt2::file_name_ref(&self) -> &OsStr | Aaron Rennow | -0/+4 |
| 2021-05-20 | Not implement `os::unix::fs::chroot` for `vxworks` | Christiaan Dirkx | -1/+1 |
| 2021-05-19 | Move the implementation of `Path::exists` to `sys_common::fs` so platforms ca... | Chris Denton | -1/+1 |
| 2021-05-02 | Change 'NULL' to 'null' | Brent Kerby | -2/+2 |
| 2021-04-30 | Add std::os::unix::fs::chroot to change the root directory of the current pro... | Josh Triplett | -0/+7 |
| 2021-04-18 | Rename `NotSupported` to `Unsupported` | Christiaan Dirkx | -1/+1 |
| 2021-04-18 | Use `NotSupported` in more places | Christiaan Dirkx | -1/+1 |
| 2021-03-27 | Improve fs error open_from unix | Ivan Tham | -5/+3 |
| 2021-03-21 | Use io::Error::new_const everywhere to avoid allocations. | Mara Bos | -6/+6 |
| 2020-12-03 | fix copy specialization not updating Take wrappers | The8472 | -1/+2 |
| 2020-11-14 | Disambiguate symlink argument names | David Tolnay | -9/+9 |
| 2020-11-14 | Auto merge of #75272 - the8472:spec-copy, r=KodrAus | bors | -77/+8 |
| 2020-11-13 | Always handle EOVERFLOW by falling back to the generic copy loop | The8472 | -6/+4 |
| 2020-11-13 | move sendfile/splice/copy_file_range into kernel_copy module | The8472 | -149/+2 |
| 2020-11-13 | limit visibility of copy offload helpers to sys::unix module | The8472 | -4/+4 |
| 2020-11-13 | move copy specialization into sys::unix module | The8472 | -15/+3 |
| 2020-11-13 | reduce syscalls by inferring FD types based on source struct instead of calli... | The8472 | -27/+56 |
| 2020-11-13 | hide unused exports on other platforms | The8472 | -2/+2 |
| 2020-11-13 | specialize io::copy to use copy_file_range, splice or sendfile | The8472 | -6/+69 |
| 2020-11-09 | Rollup merge of #78026 - sunfishcode:symlink-hard-link, r=dtolnay | Dylan DPC | -1/+14 |
| 2020-10-24 | Disable use of `linkat` on Android as well. | Dan Gohman | -5/+5 |
| 2020-10-18 | Use `link` on platforms which lack `linkat`. | Dan Gohman | -4/+14 |
| 2020-10-18 | Fix a typo in a comment. | Dan Gohman | -1/+1 |
| 2020-10-17 | Rollup merge of #77900 - Thomasdezeeuw:fdatasync, r=dtolnay | Yuki Okushi | -2/+16 |
| 2020-10-16 | Define `fs::hard_link` to not follow symlinks. | Dan Gohman | -1/+4 |
| 2020-10-16 | Take sys/vxworks/{fd,fs,io} from sys/unix instead. | Mara Bos | -7/+49 |
| 2020-10-13 | Use fdatasync for File::sync_data on more OSes | Thomas de Zeeuw | -2/+16 |
| 2020-10-09 | simplify the cfg in ReadDir construction | Josh Stone | -8/+6 |
| 2020-10-09 | remove ReadDir.end_of_stream on targets that don't use it | Josh Stone | -1/+18 |
| 2020-10-09 | unix/vxworks: make DirEntry slightly smaller | Josh Stone | -6/+5 |
| 2020-09-22 | Revert "Function to convert OpenOptions to c_int" | Joshua Nelson | -6/+0 |
| 2020-09-22 | Auto merge of #76110 - FedericoPonzi:convert-openoptions-cint, r=JoshTriplett | bors | -0/+6 |
| 2020-09-02 | Update docs of OpenOptions::as_flags | Federico Ponzi | -0/+1 |
| 2020-08-31 | Update OpenOptions::as_flags docs, and minor styling | Federico Ponzi | -0/+1 |
| 2020-08-31 | Merge branch 'convert-openoptions-cint' of github.com:FedericoPonzi/rust into... | Federico Ponzi | -1/+0 |
| 2020-08-31 | Add as_flag function to the OpenOptionsExt struct | Federico Ponzi | -7/+5 |
| 2020-08-30 | Fix typo get openoptions function name | Federico Ponzi | -1/+1 |
| 2020-08-30 | initial implementation of OpenOptions to c_int | Federico Ponzi | -0/+7 |
| 2020-08-14 | perform copy_file_range until EOF is reached instead of basing things on file... | The8472 | -3/+12 |