I have a free table in VFP9 that I wish to export into text file. I used simply syntax for this move and more than 100 times it worked well, even in moment when file does exist I got warning "File does exist, do you want to overwrite? Yes/No" and suddenly this warning disappeared and I start to receive error "Invalid path or file name" each time if the file with same name already exist in folder; if I delete the file before Copy statement all worked fine. What is point? Same part of code, on same disk and partition but in different folder worked OK (and still is working) but in this one won't!? Why!? I tried to put:
There is no good nor evil, just decisions and consequences.
but nothing helped. I even closed few time VFP but still error remained. Probably destination file remained open or some app locked it? Can you please help me? Thank you.set safety off
sys(1104) &&empty cache by force
select 1
use table1
copy to extable.txt delimited with ';'
close data
There is no good nor evil, just decisions and consequences.