Skip to content

Commit

Permalink
修复 writeBytes 方法的异常
Browse files Browse the repository at this point in the history
  • Loading branch information
limao996 committed Sep 4, 2023
1 parent ae534f9 commit 24fb1dc
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
[![Telegram Group](https://img.shields.io/badge/Telegram_Group-limao__lua-0099FF?logo=telegram)](https://t.me/limao_lua)

## 更新内容
<<<<<<< HEAD
- **`2.0.2`**(2023-09-04)
=======
- **`2.0.2`**(2023-08-31)
>>>>>>> cbeb46cc5e30ddea514de8b26a63ad525a6ba527
+ 修复 `writeBytes` 方法的异常
- **`2.0.1`**(2023-08-31)
+ 修复若干Bug
Expand Down Expand Up @@ -72,6 +68,7 @@ local node = dir:open('path/file.ext')

### 2. 创建子节点
```lua
-- 返回新的节点对象(安卓12可能返回nil)
-- 创建文件夹节点
local test = dir:create('test/')

Expand All @@ -81,7 +78,7 @@ local log = test:create('log.txt')

### 3. 重命名子节点
```lua
-- 返回新的节点对象
-- 返回新的节点对象(安卓12可能返回nil)
dir:rename('old', 'new')
```

Expand Down Expand Up @@ -133,7 +130,6 @@ dir:lastModified('demo.avi')
### 10. 文件IO服务
> 提示:文件操作会自动调用该方法

```lua
--- 可读
node:IO(afs.READ)
Expand Down

0 comments on commit 24fb1dc

Please sign in to comment.