summaryrefslogtreecommitdiff
path: root/src/fs.rs
AgeCommit message (Collapse)Author
2019-03-19Rename //src/ to //cli/ (#1962)Ryan Dahl
To better distinguish the deno_core crate from the executable deno, which will now be called "the cli" internally.
2019-02-02Clarify writeFile options and avoid unexpected perm modification (#1643)Kevin (Kun) "Kassimo" Qian
2019-01-17mkdir should not be recursive by default (#1530)Ryan Dahl
It should return an error if a file with the given path exists and recursive isn't specified. Because mode is not used on windows and rarely used in unix, it is made to the last parameter. In collaboration with Stefan Dombrowski <sdo451@gmail.com>
2019-01-02Happy new year!Ryan Dahl
2018-12-11Replace blocking! macro by generic function (#1305)F001
2018-10-19Add missing copyrights (#1024)ztplz
2018-09-17Make mode always u32 and switch to has_mode for StatRes fbs (#761)Kevin (Kun) "Kassimo" Qian
2018-09-14[fs] Enable mode for `mkdir` on unix (#746)Kevin (Kun) "Kassimo" Qian
2018-09-11Move writeFileSync to write_file.ts, add writeFile and tests (#728)Kevin (Kun) "Kassimo" Qian
2018-08-30Downgrading tokio to registry version.Ryan Dahl
Prep for rustls.
2018-08-29Implement makeTempDirSync()Bert Belder
2018-08-26Replaced read_file_sync{_string} with std::fs::read{_to_string}Aaron Power
2018-08-23Normalize windows paths.Ryan Dahl
Add resolve_module test
2018-08-22Implement writeFileSyncRyan Dahl
In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
2018-08-09Add fs::read_file_sync_stringRyan Dahl
2018-07-29Implement CodeCacheRyan Dahl