R:Base? Wow! Another old-timer, like myself. It has been... lemmee think... since something like 1987 since I last touched R:Base!
But I digress... sorry.
I'm not sure I understand your question because I don't know what you mean by "direct it to" in this context; but let me see if I can clarify...
You're trying to specify in R:Base where you want the file "madcust" to either be placed, or read from... something like that? And you're simply wondering how to specify that you want it in the...
C:\CSV
...folder... is that it?
If you're specifying a pathname, you can't have any spaces in it.
If you're trying to tell R:Base to either place a file into the C:\CSV folder, or read a file from it, then you must put a backslash between the "CSV" and the filename, to wit:
C:\CSV\madcust
If you're trying to copy "madcust" to the "C:\CSV" folder, from the command prompt, then, assuming you're in the folder where the source copy of "madcust" is sitting (and assuming that that's not the CSV folder), then the COPY command would be:
copy madcust c:\csv
- OR -
assuming you're already on C:, but just down in the folder where the source copy of "madcust" is sitting, then this version of that command would also work:
copy madcust \csv
- OR -
if you're down in a folder one level below CSV (because that's where the source copy of "madcust" is sitting, then this version of that command would also work:
copy madcust ..\csv
The latter two COPY commands contain relative pathing which relies on your being in the right place at the time of command execution in order for it to work. The very first one will always work, no matter where you actually are.
Did that help? Or did I misunderstand (most likely because I didn't really understand what you meant by "direct it to") and so answered unhelpfully?
___________________________
Gregg L. DesElms
gregg@greggdeselms.com
Napa, California