當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust DirEntry.file_type用法及代碼示例


本文簡要介紹rust語言中 std::fs::DirEntry.file_type 的用法。

用法

pub fn file_type(&self) -> Result<FileType>

返回此條目指向的文件的文件類型。

如果此入口指向符號鏈接,則此函數將不會遍曆符號鏈接。

特定於平台的行為

在 Windows 和大多數 Unix 平台上,此函數是免費的(不需要額外的係統調用),但某些 Unix 平台可能需要等效調用 symlink_metadata 來了解目標文件類型。

例子

use std::fs;

if let Ok(entries) = fs::read_dir(".") {
    for entry in entries {
        if let Ok(entry) = entry {
            // Here, `entry` is a `DirEntry`.
            if let Ok(file_type) = entry.file_type() {
                // Now let's show our entry's file type!
                println!("{:?}: {:?}", entry.path(), file_type);
            } else {
                println!("Couldn't get file type for {:?}", entry.path());
            }
        }
    }
}

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::fs::DirEntry.file_type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。