- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I'm trying to read in text files but there's a space in the directory name. The examples I can find are too complicated - I'm not building a repeatable process, just trying to bring in my data (I don't think I need a pipe, for example). Any suggestions?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
CTRL+SHIFT+Right click on file-> Copy as Path
You can do that to get a full file path for a file in Windows, including double quotes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
How are you trying to read it in? Usually that's not an issue at all for SAS procedures.
It would help if you post the code.
@gaylebrekke wrote:
I'm trying to read in text files but there's a space in the directory name. The examples I can find are too complicated - I'm not building a repeatable process, just trying to bring in my data (I don't think I need a pipe, for example). Any suggestions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you are using Proc import then typing the name with the spaces should suffice:
proc import datafile="c:\some folder\another dir\my datafile.text" <rest of proc>
or similar for an INFILE statement in a data step or even associating a FILENAME.
If you are using Windows Explorer (or possibly similar in other programs" to examine you files then:
1) navigate to the folder where the file exists
2) click in the address bar at the top with the folder path after the last entry,
3) the address bar text should now look a bit different and you can copy the text of the path and
4) paste the path into the quotes you use for the filename, infile or datafile.
Then add the file name with extension after a \.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
CTRL+SHIFT+Right click on file-> Copy as Path
You can do that to get a full file path for a file in Windows, including double quotes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content