http://www.perlmonks.org?node_id=962156


in reply to writing the finding result into a file.txt

use File::Find; use strict; use warnings; my $dir = "c:/temp"; sub edit { print FILE "$File::Find::name"."\n"; } open(FILE, ">file.txt"); find(\&edit,$dir); close(FILE);
added my to $dir = "c:/temp";

Replies are listed 'Best First'.
Re^2: writing the finding result into a file.txt
by The Mass (Initiate) on Mar 28, 2012 at 17:16 UTC
    I tried to use strict but it failed , and I tried to use the code above for(clueless newbie)
    but it didn't work :(
    what is the wrong , please help me :)
      I'm assuming you're on Windows. Perhaps you don't have a "C:\temp"? (Be careful to either use "C:/temp" note the use of double quotes and the forward slash or to use 'C:\temp' single quote and backslash. If you double quote and backslash you'll have to escape the backslash i.e. "c:\\temp". Also: add a my to the $dir as in
      my $dir='c:\temp';
        thanks bro , it is work done
        but I have a small question :
        why when we add a my to $dir , it is work done ??
        and without it , it doesn't work?
        please answer my small question .
        thanks again for your helping :)