I am creating a Flex application for intranet use.
I need the application to execute files, with different file types (txt, emails, etc.) at specific known locations on the clients computer.
Is it possible to give permissions to the Flex application to execute local files? (I have开发者_StackOverflow administrative rights on the clients computer)
Thank you.
You cannot execute or access if your Flex application is running in the browser. However in your case I suggest to use the AIR platform and in this case you can run a native file (take a look on NativeProcess api) - of course is the one using the Flex app has operating system rights to access/execute the files.
精彩评论