-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
174 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 标准路径 | ||
此操作包含在本地文件系统上查询标准路径位置的功能,例如特定于用户目录或系统范围的配置目录等常见任务。 | ||
|
||
## 子流程 | ||
> 不支持 | ||
|
||
## 运行参数 | ||
|
||
* 类型 | ||
|
||
> 参考:[KnownFolder](../enums/KnownFolder.md) | ||
## 输出 | ||
|
||
> 路径,参考:[Path](../types/Path.md)。 | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple; | ||
|
||
``` | ||
|
||
## 资源 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# 字符串提取 | ||
根据特定的方法,可以获取部分字符串。 | ||
|
||
## 子流程 | ||
> 不支持 | ||
|
||
## 运行参数 | ||
|
||
* 数据 | ||
|
||
> 字符串 | ||
* 位置 | ||
> 起始位置,如果是 *正值* 从左边开始,如果是 *负值*,从右边开始。 | ||
* 长度 | ||
> 提取的长度。 | ||
## 输出 | ||
|
||
> 部分字符串,参考:[String](../types/String.md)。 | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple; | ||
|
||
``` | ||
|
||
## 资源 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 下载 | ||
# 文件下载 | ||
通过 *http/https* 协议下载网络文件。 | ||
|
||
![HttpDownload](./images/01.png ':size=90%') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 字典 | ||
定义一个 `Dict`(字典) 类型。 | ||
|
||
## 子流程 | ||
> 支持 | ||
## 运行参数 | ||
|
||
|
||
## 输出 | ||
|
||
> [`Dict`](./types/Dict.md) | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple; | ||
|
||
``` | ||
|
||
## 示例 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 字典 | ||
定义一个 `Tuple`(元组) 类型。 | ||
|
||
## 子流程 | ||
> 支持 | ||
## 运行参数 | ||
|
||
* 名称 | ||
> 元组的第 1 个元素。 | ||
* 数据 | ||
> 元组的第 2 个元素。 | ||
## 输出 | ||
|
||
> [`Tuple`](./types/Tuple.md) | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple; | ||
|
||
``` | ||
|
||
## 示例 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# KnownFolder | ||
|
||
* Downloads | ||
> 下载 | ||
* Documents | ||
> 我的文档 | ||
* LocalAppData | ||
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Dict |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Tuple |