minute read

Files

You are reading our Automation1 API documentation for the Python™ programming language.

The Basics

In the Python API, Files lets you read and write controller files on the Automation1 controller. Each Automation1 controller has its own file system in which you can store the controller files.

How to Use

Similar to other file systems, Files lets you do all the options that follow:

  • Read and write the controller files. You can read or write the controller files as string text or as byte arrays.
  • Upload an MDK file directly to the controller file system.
  • Download a controller file directly to the MDK file system.
  • Get a list of all the controller files.
  • Delete controller files.

IMPORTANT: When you upload or download a file with the same name as an existing file, the application overwrites the existing file with the new file.

When you read or write a controller file, you read or write all of its contents. You cannot open or change only part of a controller file.

To access one or more of the controller files, use the Controller.files property. Refer to the example that follows.

Copy
contents = controller.files.read_bytes(controller_file_name)
controller.files.write_bytes(controller_file_name, file_bytes_content)

contents = controller.files.read_text(controller_file_name)
controller.files.write_text(controller_file_name, file_text_content)

controller.files.upload(source_mdk_file_path, destination_controller_file_name)
controller.files.download(source_controller_file_name, destination_mdk_file_path)

controller.files.delete(controller_file_name)

all_files = controller.files.get_files()

Example Code

Copy
import automation1 as a1

controller = a1.Controller.connect()

controller.files.write_text("MyExampleFile.txt", "Hello world!")

file_contents = controller.files.read_text("MyExampleFile.txt")
print(file_contents)

controller.files.delete("MyExampleFile.txt")

# Upload an MDK file directly to your controller.
controller.files.upload("my_config.ini", "config/config1.ini")
# Download a controller file directly from your controller.
controller.files.download("programs/program1.ascript", "my_program.ascript")

Thread Safety

The threading library is the only multithreading library that is officially supported by the Automation1 Python API.

All the methods and properties that operate under the Controller.files property are thread safe. You can call them from two or more threads without interference.

Full Reference

For more information about all the methods that are available for Files, refer to the list that follows.

Controller.files Methods