UE · 2023年7月17日 0

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

This plugin can use the blueprint file in the illusion …


1. Node Description

Get Stat Data

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Return the stat data for the given file or directory. Check the “IsValid” member before using the returned data.


Directory Exists

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Return true if the directory exists.


Directory Create

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Create a directory, including any parent directories and return true if the directory was created or already existed.


Directory Delete

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Delete all files and subdirectories in a directory, then delete the directory itself.


File Exists

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Return true if the file exists.


File Size

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Return the size of the file, or -1 if it doesn’t exist.


File Delete

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Delete a file and return true if the file exists. Will not delete read only files.


File Is Read Only

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Return true if the file is read only.


File Move

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Attempt to move a file. Return true if successful. Will not overwrite existing files.


File Copy

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Copy a file. This will fail if the destination file already exists.


File Save By String

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Write the string to a file.


File Save By Array String

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Write the array of strings to a file.


File Save By Array Binary

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Save a binary array to a file.


File Append By String

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Write the string from the file to the file at the end.


File Append By Array String

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Write the array of strings from the file to the file at the end.


File Save By Array Binary

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Write the a binary array from the file to the file at the end.


File Load By String

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Load a text file to an string.


File Load By Array String

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Load a text file to an array of strings.


File Load By Array Binary

[Unreal Engine Plugin Description] DTOperateFile uses a blueprint to operate file

Load a binary file to a dynamic array with two uninitialized bytes at end as padding.


2. Download Plugin

DownloadLink