Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

compact filenames to < 64 characters

by RuyLopez (Novice)
on Jul 02, 2002 at 10:14 UTC ( [id://178812]=CUFP: print w/replies, xml ) Need Help??

Sometimes I'm asked to make cd's of files with hugely descriptive long long filenames , but I can't write filenames over 64 chars to cd.
This script compacts such filenames by firstly removing whitespace, then a wordlist, and if still too long it deletes the end of the name (not including the extension).
It works recursively from the directory specified at command line.
rl.
#!/usr/bin/perl -w use File::Find; find(\&crusher, $ARGV[0]); sub crusher{ $nlength = length($_); if ($nlength > 64){ ($fname, $extension) = split(/\./,$_, 2); $fname =~ s/\W//g; $fname =~ s/(the|this|that|at|on|in|of|to|by|with)//ig; if (length($fname) + length($extension) > 63){ $fkeep= (63 - length($extension)); $fname = substr($fname, 0, $fkeep); } $newname = join ".", ($fname,$extension); rename($_, $newname) or warn "couldn't rename : $! \n"; } }

Replies are listed 'Best First'.
Re: compact filenames to < 64 characters
by gav^ (Curate) on Jul 02, 2002 at 12:26 UTC
    You might want to consider the case where a filename contains a '.'

    gav^

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://178812]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-24 22:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found