Viewing/loading files on server

Hi,
I just started a new project with Xojo web.
I need to operate with simple text files on app server (i’ll be using Xojo cloud when I’m ready) I need to create, save, load…rename, delete these files.
1)What is the closest thing to “folderitemDialog” that I can use for xojo web ? Something that shows a list of the files on my webapp
2) When saving, if I dont specify any folder and I just use “f =new FolderItem(“CreateExample.txt”)” where do these file end ?

Thanks

The answer to this depends on where the files are. If it’s on the user’s computer, you’ll use a WebFileUploader control. If it’s the server then you would build the dialog yourself.

[quote=402822:@Horacio Vilches]
2) When saving, if I dont specify any folder and I just use “f =new FolderItem(“CreateExample.txt”)” where do these file end ? [/quote]
Next to the app.

What else can I use as an alternative ? there must be some way to view the files on my webapp server