Subject: | '\n' in DOS-paths treated as newline |
This is perl, v5.8.4 built for MSWin32-x86-multi-thread
Binary build 810 provided by ActiveState Corp.
MSWindows2000 SP4
If I have a value 'C:\temp\new.txt' the \n is treated as a newline character. This seems to be a problem of newline only.
Test script:
use strict;
use warnings;
use Config::Simple '-strict';
my $cfg = new Config::Simple(syntax=>'ini');
$cfg->param('test.one','C:\temp\new.txt');
$cfg->write('cs.ini');
$cfg = new Config::Simple('cs.ini');
print $cfg->param('test.one')."\n";
cs.ini:
; Config::Simple 4.57
; Tue Oct 19 17:58:30 2004
[test]
one="C:\\temp\\new.txt"
output:
C:\temp
ew.txt
TIA, Markus