本文简要介绍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 FileExt.seek_read用法及代码示例
- Rust FileExt.read_exact_at用法及代码示例
- Rust FileExt.write_at用法及代码示例
- Rust FileExt.read_at用法及代码示例
- Rust FileExt.write_all_at用法及代码示例
- Rust File用法及代码示例
- Rust FileTypeExt.is_char_device用法及代码示例
- Rust File.open用法及代码示例
- Rust File.sync_data用法及代码示例
- Rust FileType.is_symlink用法及代码示例
- Rust File.options用法及代码示例
- Rust File.create用法及代码示例
- Rust File.sync_all用法及代码示例
- Rust FileType.is_file用法及代码示例
- Rust File.set_len用法及代码示例
- Rust FileType.is_dir用法及代码示例
- Rust File.metadata用法及代码示例
- Rust FileTypeExt.is_fifo用法及代码示例
- Rust File.set_permissions用法及代码示例
- Rust File.try_clone用法及代码示例
- Rust FileTypeExt.is_socket用法及代码示例
- Rust FileTypeExt.is_block_device用法及代码示例
- Rust Formatter.precision用法及代码示例
- Rust Formatter.debug_list用法及代码示例
- Rust Formatter.sign_minus用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::os::windows::fs::FileExt.seek_write。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。