How do i make this script will can delete? Have any example script?
windows os isn't easy to use when you dealing with automation. you need create own application.
knowledge of language programming is required which means you also have to install other applications needed.
but in linux os, you don't need create or installing application to implement what you want.
all the necessary components have been provided since you finish installing the os.
create a bash script:
tailing (using tail) and maybe selecting pattern (using grep) the last log file of zoom file uploader to see what the files/directory which are already uploaded. then using tailing and grep output, search for files or directory then delete it.
find /path-to-files/$filename -type f -delete
or
find /path-to-directory/$directoryname -type f -delete
for automatic search and delete already uploaded file/directory you can set cronjob
NB: zoom file uploader also works well on linux through wine.