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


Rust FileExt.seek_write用法及代碼示例


本文簡要介紹rust語言中 std::os::windows::fs::FileExt.seek_write 的用法。

用法

fn seek_write(&self, buf: &[u8], offset: u64) -> Result<usize>

尋找給定位置並寫入多個字節。

返回寫入的字節數。

偏移量相對於文件的開頭,因此獨立於當前光標。當前遊標受此函數影響,設置為寫入結束。

當寫入超出文件末尾時,文件被適當擴展,中間字節未初始化。

請注意,類似於 File::write ,返回短寫入不是錯誤。從如此短的寫入返回時,文件指針仍會更新。

例子

use std::fs::File;
use std::os::windows::prelude::*;

fn main() -> std::io::Result<()> {
    let mut buffer = File::create("foo.txt")?;

    // Write a byte string starting 72 bytes from
    // the start of the file.
    buffer.seek_write(b"some bytes", 72)?;
    Ok(())
}

相關用法


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