in reply to Re^2: file basics
in thread file basics
The problem you probably ran into was that you used double quotes for your file name. (File extensions probably had nothing to do with it.) Since Windows's path separators are backslashes, and backslashes are a special character inside double quotes, this is many a beginner's stumbling-block. There are two easy fixes: use forward slashes (they work even on Windows), or use single quotes.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: file basics
by harry1705 (Initiate) on Mar 13, 2012 at 04:02 UTC |