mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-28 00:00:11 +02:00
tokio-fs: Add async versions of most of std::fs (#494)
* create_dir * create_dir_all * hard_link * read_dir * read_link * remove_dir * remove_file * rename * set_permissions that works with path * symlink_metadata * symlink on unix * symlink_dir on windows * symlink_file on windows
This commit is contained in:
@@ -7,4 +7,6 @@
|
||||
//! the context of the Tokio runtime as they require Tokio specific features to
|
||||
//! function.
|
||||
|
||||
pub use tokio_fs::{file, metadata, File, OpenOptions};
|
||||
pub use tokio_fs::{create_dir, create_dir_all, file, hard_link, metadata, os, read_dir, read_link};
|
||||
pub use tokio_fs::{remove_dir, remove_file, rename, set_permissions, symlink_metadata, File};
|
||||
pub use tokio_fs::OpenOptions;
|
||||
|
||||
Reference in New Issue
Block a user