rpa_file_getSize
获取文件大小
1. 函数
rpa_file_getSize(srcFile)
- srcFile:字符串类型,文件的绝对路径;
2. 返回值
整数类型,返回文件字节数:大于0表示成功,0表示失败或文件为空,通过rpa_getLastErrorCode()获取错误码,rpa_getLastErrorMsg()获取错误信息。
3. 示例
# 弹出文件选择框,如果选中文件并确定,返回被选择的文件绝对路径
path = rpa_file_openDialog()
# 输出结果
print(path)
# 获取选中文件的大小
size = rpa_file_getSize(path)
# 输出大小
print("file size: " + str(size))
# 读取选中文件的所有内容
contents = rpa_file_read(path)
# 输出总行数
print("total lines: " + str(len(contents)))
# 遍历每一行内容
for line in contents:
print(line)
运行结果: