IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Flutter开发之——文件及文件夹操作 -> 正文阅读

[移动开发]Flutter开发之——文件及文件夹操作

作者:recommend-item-box type_blog clearfix

}

}

说明:

  • Platform.pathSeparator表示路径分隔符,对于Android和iOS来说表示‘/’

  • create 中有一个可选参数 recursive ,默认值为 false,false 表示只能创建最后一级文件夹

  • 如果创建 “dir1/dir2” 这种嵌套文件夹,recursive为 false 时将抛出异常,设置为 true 可以创建嵌套文件夹

3.2 遍历文件夹下文件

_dirList() async {

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dirName’;

Stream fileList = Directory(path).list();

await for(FileSystemEntity fileSystemEntity in fileList){

print(’$fileSystemEntity’);

}

}

说明:

  • Directory(path).list()中有一个可选参数recursive,默认值为false,表示只遍历当前目录;

  • 设置为true时表示遍历当前目录及子目录。

判断文件的类型:

await for(FileSystemEntity fileSystemEntity in fileList){

print(’$fileSystemEntity’);

FileSystemEntityType type = FileSystemEntity.typeSync(fileSystemEntity.path);

}

文件的类型:

  • file:文件

  • directory:文件夹

  • link:链接文件

  • notFound:未知

3.3 重命名文件夹名称

_dirRename() async{

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dirName’;

var dir = Directory(path);

var dir3= await dir.rename(’ d i r . p a r e n t . a b s o l u t e . p a t h {dir.parent.absolute.path} dir.parent.absolute.path{Platform.pathSeparator}dir3’);

}

3.4 删除文件夹

_deleteDir() async {

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dir3’;

var dir = await Directory(path).delete();

}

说明:

  • delete中有一个可选参数recursive,默认值为false,为false时如果删除的文件夹下还有内容将无法删除,抛出异常

  • 设置为true时,删除当前文件夹及文件夹下所有内容

四 文件的操作


4.1 创建一个 file.txt 文件

_createFile() async {

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dirName${Platform.pathSeparator}file.txt’;

var file = await File(path).create(recursive: true);

}

说明:

  • create 中有一个可选参数 recursive,默认值为 false,为 false 时只创建文件,文件夹路径不存在抛出异常

  • 设置为 true 时,创建文件及不存在的路径文件夹

4.2 写入数据

_write2File() async{

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dirName${Platform.pathSeparator}file.txt’;

var file=File(path);

if (file.existsSync()) {

file.writeAsString(‘写入数据文件’); //写入字符串

//file.writeAsBytes(Utf8Encoder().convert(“写入数据文件”));//写入 bytes 数据

//file.openWrite(mode: FileMode.append).write(‘追加到末尾’); //向末尾追加内容

}

}

4.3 读取数据

_readFile() async{

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dirName${Platform.pathSeparator}file.txt’;

var file=File(path);

if (file.existsSync()) {

List lines = await file.readAsLines();

lines.forEach((element) {

print(’$element’);

});

}

}

4.4 删除文件

_deleteFile() async{

Directory documentsDirectory = await getApplicationDocumentsDirectory();

String path = ‘ d o c u m e n t s D i r e c t o r y . p a t h {documentsDirectory.path} documentsDirectory.path{Platform.pathSeparator}dirName${Platform.pathSeparator}file.txt’;

var file=File(path);

if (file.existsSync()) {

file.delete();

}

}

五 json文件数据读取


5.1 添加json文件数据

读取项目中文件,比如 asset/json/data.json 文件,data.json 文件中为 json 格式数据

[

{

“desc”: “开发环境搭建。”,

“title”: “第一章”

},

{

“desc”: “语法知识学习”,

“title”: “第二章”

},

{

“desc”: “组件学习”,

“title”: “第三章”

}

]

5.2 项目的 pubspec.yaml 文件中添加配置

assets:

  • assets/json/

5.3 读取json文件数据

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-11-29 16:26:00  更:2021-11-29 16:26:03 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 5:18:23-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码