in reply to Re^2: Problem Modifying Files
in thread Problem Modifying Files
You are using \\ in interpolation context, and then again:
$new = "c:\\temp\\mytest"; # c:\temp\mytest -- ok so far open NEW, ">$new"; # c:<tab>emp<return>ytest -- oops
Try it using non-interpolating, single quotes. For example:
$new = 'c:\\temp\\mytest';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Problem Modifying Files
by mikeatrcn (Acolyte) on Sep 22, 2004 at 19:40 UTC |