ID:140431
 
Code:
verb/Save_As()
var/sound/S = 'sound.wav' // watever this is
var/destination = input("Choose Your File to Save As","Save As") as file
fcopy(S,destination)


Problem description:

The Input is what I am concentrating here.It can / cannot exist. If it does then the file is overwritten but if it doesn't then the programm should create it.But as per the BYOND input this is impossible(maybe).I want it in such a way that if the file does not exist then it would be created by the Programm.
Try ftp() instead.
In response to GhostAnime (#1)
Thank You

I was thinking if there was a way in getting the folder/file.file from the ftp();

I mean like you save as 'somewhere', but I want to get that 'somewhere'.