05-30-2014 05:56 AM
How would such a program look that the user specifies the length of time that the file should be moved or deleted after or if a file size goes over a certain limit?
LabVIEW 2013
05-30-2014 06:40 AM
While loop that periodically checks the file size and modified date (File/Directory Info function should do it). If it goes higher in size and elapsed time, delete or move and quit. I would use a wait of something like 500ms. Also allow a way for the user to stop the loop.
05-30-2014 06:50 AM
Thanks for your reply,
Would it be possible to see a simple VI example of this?
05-30-2014 06:58 AM - edited 05-30-2014 06:58 AM
Something like this
05-30-2014 09:00 AM
How would the user choose between moving or deleting the file after that time period ?
05-30-2014 09:23 AM
@PauldePaor wrote:
How would the user choose between moving or deleting the file after that time period ?
Boolean switch. Enum. The enum would probably be the better way since it is more self documenting and easier for the user to see what is happening.
05-30-2014 09:25 AM
How would the enum work if the greater than function is already wired to the case selector?
05-30-2014 09:28 AM
You have another case structure inside of the current case structure.