activities
latest
false
UiPath logo, featuring letters U and I in white

Workflow activities

Last updated Mar 13, 2026

WriteStorageText

Uploads a string into a specified Storage Bucket in Orchestrator.

Definition

Namespace: UiPath.Activities.System.API

Assembly: UiPath.System.Activities.Api (in UiPath.System.Activities.Api.dll)

Overloads

WriteStorageText(String, String, String)Uploads a string into a specified Storage Bucket in Orchestrator.
WriteStorageText(String, String, String, String)Uploads a string into a specified Storage Bucket in Orchestrator, at a specified folder path.
WriteStorageText(String, String, String, String, String, Int32)Uploads a string into a specified Storage Bucket in Orchestrator, at a specified folder path, while decoding the file content.

WriteStorageText(String, String, String)

Uploads a string into a specified Storage Bucket in Orchestrator.

void WriteStorageText(
    string path,
    string text,
    string storageBucketName
)
void WriteStorageText(
    string path,
    string text,
    string storageBucketName
)

path String : The full path of the file from Storage Bucket you want to download.

text String : The text you want to write to the specified Storage Bucket in Orchestrator.

storageBucketName String : The name of the Storage Bucket where you want to upload the string.

WriteStorageText(String, String, String, String)

Uploads a string into a specified Storage Bucket in Orchestrator, at a specified folder path.

void WriteStorageText(
    string path,
    string text,
    string storageBucketName,
    string folderPath
)
void WriteStorageText(
    string path,
    string text,
    string storageBucketName,
    string folderPath
)

path String : The full path of the file from Storage Bucket you want to download.

text String : The text you want to write to the specified Storage Bucket in Orchestrator.

storageBucketName String : The name of the Storage Bucket where you want to upload the string.

folderPathString : The path to the Orchestrator folder you want to use with this activity. If left empty, the current Orchestrator folder is used.

WriteStorageText(String, String, String, String, String, Int32)

Uploads a string into a specified Storage Bucket in Orchestrator, at a specified folder path, while decoding the file content.

void WriteStorageText(
    string path,
    string text,
    string storageBucketName,
    string folderPath,
    string encoding,
    int timeoutMS
)
void WriteStorageText(
    string path,
    string text,
    string storageBucketName,
    string folderPath,
    string encoding,
    int timeoutMS
)

path String : The full path of the file from Storage Bucket you want to download.

text String : The text you want to write to the specified Storage Bucket in Orchestrator.

storageBucketName String : The name of the Storage Bucket where you want to upload the string.

folderPathString : The path to the Orchestrator folder you want to use with this activity. If left empty, the current Orchestrator folder is used.

encoding String : The encoding name for decoding the file content. You can find the complete list of codes for each character encoding on the Supported Character Encoding page. To specify the encoding type to be used, use the value from the Name field. If no encoding type is specified, the activity will search for the file's Byte Order Marks to detect the encoding. If no Byte Order Marks are detected, the system ANSI code page is selected by default.

timeoutMS Int32 : Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated