-
I tried to
And use
But, sometimes (not always) it returns:
Is it because the file is not ready yet? I thought I've waited for the If this is the case, how should I tell the program to wait until the file is ready, besides a loop check until it finds something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @TaihouKai - Thanks for the question! You're correct, this is most likely occurring because the file transfer has not yet completed. You're also on the correct path to address this. Similar to how you check for command execution with
|
Beta Was this translation helpful? Give feedback.
Hi @TaihouKai -
Thanks for the question!
You're correct, this is most likely occurring because the file transfer has not yet completed. You're also on the correct path to address this. Similar to how you check for command execution with
cloud_request_id
using theRTR_CheckCommandStatus
operation above, we can implement a loop check. (You could add a sleep timer for a few seconds, or minutes, depending on your scenario.)