in reply to Re: Re: Cannot copy from netowrk drive
in thread Cannot copy from network drive
You are already doing this but you probably want something more like,
@var1 = split/\|/;
When you seperate the line with pipes "|" you put the values of the entire line in an array. All you have to do is point the path variable to the last element of the array. Something like,
Hope this helps, I'm not sure I understood you question properly.. -----$path = $var1[$#var1];
|
|---|