打开文件对话框
命令说明
弹出打开文件对话框
命令原型
sRet = Dialog.OpenFile(sDefaultPath,sFilter,sTitle)
命令参数
参数 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
sDefaultPath | True | path | '''C:\Users''' | 对话框显示时定位到的默认目录,传递为 null 则定位到上次操作的目录 |
sFilter | True | string | "文本文档 (txt、log) | .txt;.log |
sTitle | True | string | "Laiye RPA" | 对话框标题 |
### 返回结果 | ||||
sRet,将命令运行后的结果赋值给此变量。 | ||||
### 运行实例 |
/*********************************打开文件对话框***************************************
命令原型:
Dialog.OpenFile('''C:\Users''',"文本文档 (txt、log)|*.txt;*.log|任意文件|*","Laiye RPA")
入参:
sDefaultPath -- 对话框显示时定位到的默认目录,传递为 null 则定位到上次操作的目录
sFilter -- *.txt;*.log
sTitle -- 对话框标题
出参:
sRet -- 将命令运行后的结果赋值给此变量
注意事项:
输出结果为用户选择打开的文件路径,参数sDefaultPath填写时,如果使用双引号则路径要加上转义符,如果使用三引号则路径就不需要加上转义符。例如"C:\\Users"、'''C:\Users'''.
**********************************************************************************/
Dim sRet
sRet = Dialog.OpenFile('''C:\Users''',"文本文档 (txt、log)|*.txt;*.log|任意文件|*","这个是对话框标题")
TracePrint(sRet)