-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_filepath.pl
46 lines (38 loc) · 1.08 KB
/
process_filepath.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/perl
use strict;
use warnings;
use File::Basename;
#Perl code to process filepath/directory path
my $bldName = "";
my $fpath = "/export/home/workspace/nightly.fusion.main/fusion/components/services/configMgr/csm/cmNetCfg.cc";
#======================
# The following code strips a file-path/location into a filename &
# dierctory path to the file.
#======================
print "\nFilePath => " . $fpath . "\n";
my($filename, $directories) = fileparse($fpath);
print "Filename : " . $filename . "\n";
print "Directory : " . $directories . "\n";
#======================
# The following code splits the directory-path between "/" and
# assigns into an array. We search through the array to find a
# keyword that matches a specific directory
#======================
my @filecomp = split(/\//,$fpath);
#my $size = @filecomp;
#print "$size\n \n";
for (my $i = 0; $i < @filecomp; $i++)
{
=put
if($i)
{
print "#". $i.":".$filecomp[$i] . "\n";
}
=cut
if ($filecomp[$i] eq "workspace")
{
$bldName = $filecomp[$i+1];
last;
}
}
print "\nString value = ". $bldName . "\n";