in reply to Re: program for getting the name of the software from the software folder
in thread program for getting the name of the software from the software folder

I got the code as

my $directory = 'C:/directory/dir/'; opendir(DIR,$directory); my @files = readdir(DIR); closedir(DIR); foreach(@files){ print $_,"\n";

but what i need is the code for getting the file which has version and its software name .

readme.txt,version,install.php is just an example where we can get easily the requirement. i want the code to find that.

  • Comment on Re^2: program for getting the name of the software from the software folder
  • Download Code