(I Saw this thread:
viewtopic.php?p=197784 )
I need to write a file on my app that will remain there on the next app runs.
From my understanding, I can write to 'tmp', but it will be deleted on the next run.
So my next, less wanted option is to write to a USB drive.
I put a USB, with FAT32, and with FAT format.
However, it failed to write to it. This is my code:
usbfile = "ext1:/usb.txt"
tempfile = "tmp:/temp4.txt"
success = WriteAsciiFile(tempfile,"writeusb2")
print success ' this is true
'copy from local to USB drive.
filesystem = CreateObject("roFileSystem")
success = filesystem.CopyFile(tempfile,usbfile) ' this is false !!!
print success
Why is the last 'success' value false ?
Thanks