Reputation: 11
I'm new in windows azure but I already know how to deploy my service in azure. I need to have sth like a folder in azure to store some text files, two .exe files and one .bat file. then I want my deployed service to use these files and execute .bat file and create some new text files on that folder.
My question is if there is sth like the folder that I need?how to execute it? and how is it possible to connect to that folder through my wcf service?
I really appreciate your help.
Upvotes: 1
Views: 1331
Reputation: 1292
If you want that bat file to execute one time i.e. during role start up, you can use start up task. If you want to execute bat file during WCF call, you can use .NET process class. However for executing this task, you may require higher privileges.
Upvotes: 1