指定テキストファイルを閉じる方法

こんにちは。UiPath Studio EnterPrise版ユーザの初心者です。
繰り返し処理の中で、ReadTextFileアクティビティを配置して、指定テキストファイルを開いていますが、
1000回以上も大量に繰り返すと、ReadTextFileで開いたテキストファイルが増え続け、空きメモリを圧迫するのではないかと気になり始めました。
対処法としては2つあると考えました。
案1.ReadTextFileアクティビティで指定テキストファイルを開いたら、指定テキストファイルの処理が終了したら必ず閉じる。
案2.ReadTextFileアクティビティで、OpenIfNotOpenのような設定ができれば、それを使う。

案2.のような設定はReadTextFileアクティビティに無かったので、案1.で対処するしかないと考えました。
案1.を実行するためには、Alt+F4で閉じるしかありませんか?

こんにちは

ReadTextFielアクティビティは、対象のテキストファイルから内容を読み取り後、対象のファイルをリリースしますので、上記のご懸念は問題ないと思います。
(そもそも他のアプリケーションを開くわけではありませんので、アプリケーションを閉じるという概念はありません)

Hi @gorby

The ReadTextFile activity does not require a corresponding activity to close the file because it automatically closes the file after reading.

The ReadTextFile activity in UiPath reads the contents of a text file and automatically handles the file closing. You don’t need to explicitly close the file using another activity.

Therefore, you don’t need to worry about explicitly closing the file after using the ReadTextFile activity. The activity takes care of it for you, ensuring that system resources are properly released.

Hope it helps!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.