@@ -2370,7 +2370,7 @@ impl AsInner<fs_imp::DirEntry> for DirEntry {
2370
2370
#[ doc( alias = "rm" , alias = "unlink" , alias = "DeleteFile" ) ]
2371
2371
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2372
2372
pub fn remove_file < P : AsRef < Path > > ( path : P ) -> io:: Result < ( ) > {
2373
- fs_imp:: unlink ( path. as_ref ( ) )
2373
+ fs_imp:: remove_file ( path. as_ref ( ) )
2374
2374
}
2375
2375
2376
2376
/// Given a path, queries the file system to get information about a file,
@@ -2409,7 +2409,7 @@ pub fn remove_file<P: AsRef<Path>>(path: P) -> io::Result<()> {
2409
2409
#[ doc( alias = "stat" ) ]
2410
2410
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2411
2411
pub fn metadata < P : AsRef < Path > > ( path : P ) -> io:: Result < Metadata > {
2412
- fs_imp:: stat ( path. as_ref ( ) ) . map ( Metadata )
2412
+ fs_imp:: metadata ( path. as_ref ( ) ) . map ( Metadata )
2413
2413
}
2414
2414
2415
2415
/// Queries the metadata about a file without following symlinks.
@@ -2444,7 +2444,7 @@ pub fn metadata<P: AsRef<Path>>(path: P) -> io::Result<Metadata> {
2444
2444
#[ doc( alias = "lstat" ) ]
2445
2445
#[ stable( feature = "symlink_metadata" , since = "1.1.0" ) ]
2446
2446
pub fn symlink_metadata < P : AsRef < Path > > ( path : P ) -> io:: Result < Metadata > {
2447
- fs_imp:: lstat ( path. as_ref ( ) ) . map ( Metadata )
2447
+ fs_imp:: symlink_metadata ( path. as_ref ( ) ) . map ( Metadata )
2448
2448
}
2449
2449
2450
2450
/// Renames a file or directory to a new name, replacing the original file if
@@ -2598,7 +2598,7 @@ pub fn copy<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<u64> {
2598
2598
#[ doc( alias = "CreateHardLink" , alias = "linkat" ) ]
2599
2599
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2600
2600
pub fn hard_link < P : AsRef < Path > , Q : AsRef < Path > > ( original : P , link : Q ) -> io:: Result < ( ) > {
2601
- fs_imp:: link ( original. as_ref ( ) , link. as_ref ( ) )
2601
+ fs_imp:: hard_link ( original. as_ref ( ) , link. as_ref ( ) )
2602
2602
}
2603
2603
2604
2604
/// Creates a new symbolic link on the filesystem.
@@ -2664,7 +2664,7 @@ pub fn soft_link<P: AsRef<Path>, Q: AsRef<Path>>(original: P, link: Q) -> io::Re
2664
2664
/// ```
2665
2665
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2666
2666
pub fn read_link < P : AsRef < Path > > ( path : P ) -> io:: Result < PathBuf > {
2667
- fs_imp:: readlink ( path. as_ref ( ) )
2667
+ fs_imp:: read_link ( path. as_ref ( ) )
2668
2668
}
2669
2669
2670
2670
/// Returns the canonical, absolute form of a path with all intermediate
@@ -2840,7 +2840,7 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
2840
2840
#[ doc( alias = "rmdir" , alias = "RemoveDirectory" ) ]
2841
2841
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2842
2842
pub fn remove_dir < P : AsRef < Path > > ( path : P ) -> io:: Result < ( ) > {
2843
- fs_imp:: rmdir ( path. as_ref ( ) )
2843
+ fs_imp:: remove_dir ( path. as_ref ( ) )
2844
2844
}
2845
2845
2846
2846
/// Removes a directory at this path, after removing all its contents. Use
@@ -2967,7 +2967,7 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
2967
2967
#[ doc( alias = "ls" , alias = "opendir" , alias = "FindFirstFile" , alias = "FindNextFile" ) ]
2968
2968
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2969
2969
pub fn read_dir < P : AsRef < Path > > ( path : P ) -> io:: Result < ReadDir > {
2970
- fs_imp:: readdir ( path. as_ref ( ) ) . map ( ReadDir )
2970
+ fs_imp:: read_dir ( path. as_ref ( ) ) . map ( ReadDir )
2971
2971
}
2972
2972
2973
2973
/// Changes the permissions found on a file or a directory.
@@ -3003,7 +3003,7 @@ pub fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> {
3003
3003
#[ doc( alias = "chmod" , alias = "SetFileAttributes" ) ]
3004
3004
#[ stable( feature = "set_permissions" , since = "1.1.0" ) ]
3005
3005
pub fn set_permissions < P : AsRef < Path > > ( path : P , perm : Permissions ) -> io:: Result < ( ) > {
3006
- fs_imp:: set_perm ( path. as_ref ( ) , perm. 0 )
3006
+ fs_imp:: set_permissions ( path. as_ref ( ) , perm. 0 )
3007
3007
}
3008
3008
3009
3009
impl DirBuilder {
0 commit comments