I have a PHP application which takes inputs from users and writes them to files using normal file operations like fopen, fwrite
etc. It works well on my server. If I migrate this whole code to Amazon's Cloud and use it's services, how do I map these file operations to corresponding operations on Beanstalk?
Will the file operations work as they are, without change?
If yes, where will these files be store?
If no, what's the alternative?
Thanks for your help!!