Is it possible to read a local file in a Flash? My application uploads files to server using the flash.net.FileReference
class, and I would like to peek inside before I upload them. There are two indications as to why it could be possible:
I'm going to see the content of the files on the server anyway.
Silverlight can do that. The
System.IO.FileInfo
class provides a stream.
But so far, everything indicates otherwise. There seems to be nothing in the documentation, and a Google search has not revealed anything useful. I just want to make sure that it's not really possible before I move on. I'm aware that one can do it in AIR.