listen for file download then process that file?

  • Thread starter Thread starter ian.johns
  • Start date Start date
I

ian.johns

How would I have a vb.net app running on a client listen for a
particular file download (via it's extension) then execute an old DOS
..exe that processes that type of file?
 
Ian,

You found the file watcher this is a code sample how to start an executable.

\\\Notepad
Dim p As New Process
Dim pi As New ProcessStartInfo
pi.arguments = "c:\windows\win.ini"
pi.FileName = "notepad.exe"
p.startinfo = pi
p.Start()
\\\

I hope this helps,

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top