I have a table open and have to copy it to a csv:

COPY TO (lcStatusFile) TYPE DELI

lcStatusFile = "D:\temp\DAWN\load_status_prob_20050208\200501
DAWN_Status_Submittal.csv"

The file itself exists, so there should be no problem with the path. When
the COPY TO executes I get error:

Invalid path or file name (Error 202)

I tried this:

COPY TO ( JUSTFNAME(lcStatusFile) ) TYPE DELI

and it worked.

I tried this:

?DIRECTORY( JUSTPATH(lcStatusFile) )

and it was .T.

What else can I try?

Thanks,
Woody