Jump to content
Macro Express Forums

Run Macro When A Certain Filesize Is Reached?


Dean

Recommended Posts

There is not a macro activation based on the file size. However, you could create a scheduled macro to periodically check the file size. You will have to decide how often to check, every 10 seconds, every minute, once an hour, etc.

 

Then, the top of your macro may look something like this:

Wait for File Ready: "test.txt"
Variable Set Integer %N1% from the size of file "test.txt"
If Variable %N1% < 1234567
 Macro Return
End If

// Do your macro stuff here

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...