[Gambas-user] file copy

Benoit Minisini gambas at ...2...
Tue Aug 12 14:43:03 CEST 2003


Le Mardi 12 Août 2003 14:15, Ahmad Kamal a écrit :
> hi
>
>     how can I copy a file to /tmp from within gambas?
>
>

Hi, Ahmad

COPY src TO dst

If you need a temporary file, use the Temp$() function.

sTemp = Temp$()
COPY src to sTemp
...
KILL sTemp

Temporary files are automatically removed at the end of the program.

Regards,

-- 
Benoit Minisini
mailto:gambas at ...1...




More information about the User mailing list