Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I have an exe which creates excel reports based on the data it recieves from a sequential input file. Is there a way to trigger the exe once a new input file is recieved in the folder named InputFile using VB.net code?

Input file and the exe are placed in the same folder named "Report".
Posted

1 solution

Is there a way to trigger the exe once a new input file is recieved in the folder named InputFile using VB.net code?
Based on what you say, you need to keep track of files in the folder at regular interval (probably via a windows service). Once a new file is found, you can run the corresponding exe using Process.Start.

Please try out, and post specific issue if you face any.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900