文章目录一、读取文件二、写入文件一、读取文件use std::fs::File;fn main() { let f = File::open("hello.txt").unwrap();}1、按字节读取use ...
確定! 回上一頁