Upload only files that are new and contain data
This will cause the file to upload only if created in the last hour:
This will cause the file to upload only if it contains data:
This seems to upload the file if it was modified in the last hour OR if it contains data:
What do I need to do differently so the file will only upload if it satisfies both conditions instead of either?
Edit: Looks like this is what I needed to use:
put Test.csv -filemask=">0HS"
put Test.csv -filemask=">0K"
put Test.csv -filemask=">0HS, >0K"
Edit: Looks like this is what I needed to use:
put test.csv -filemask=">0HS>0K"