rpa_file_write

写入文件

1. 函数

rpa_file_write(srcFile, content, overwrite=False)

  • srcFile:字符串类型,文件的绝对路径;
  • content:字符串类型,写入的内容;
  • overwrite:bool类型,True表示覆盖文件现有内容,False表示追加到文件尾;

2. 返回值

bool类型,写入文件的结果:True表示成功,False表示失败,通过rpa_getLastErrorCode()获取错误码,rpa_getLastErrorMsg()获取错误信息。

3. 示例

# 在D盘根目录的hello.txt文件中写入hello,覆盖文件中原有内容
result = rpa_file_write('D:/hello.txt', 'hello', True)
# 输出结果
print(result)

写入前:

写入文件1

写入后:

写入文件2

# 在D盘根目录的hello.txt文件中写入world,追加到文件最后
result = rpa_file_write('D:/hello.txt', 'world', False)
# 输出结果
print(result)

追加写入后:

写入文件3

powered by Gitbook修订时间: 2021-04-15 15:56:54

找到相关内容

    未找到""相关内容

    找到相关内容

      未找到""相关内容