When using the file type or ftp() proc, can we specify the file extension we want to use?
For example we would normally do this to select a file:
mob
verb
ImportFile(var/ImportedFile as file)
But instead we could do something like this:
dmfile
parent_type = /file
extension = ".dm"
mob
verb
ImportFile(var/ImportedFile as dmfile)
I have no idea how it would actually work but the above is just an example to get the point through.
Also for the ftp proc we could have another argument:
mob
verb
ExportFile()
src << ftp(file, name, extension)
Thanks