I've had a search around, and from my perspective using backticks is the only way I can solve this problem. I'm trying to call the mdls
command from Perl for each file in a directory to find it's last accessed time. The issue I'm having is that in the file names I have from find
I have unescaped spaces which bash obviously doesn't like. Is there an easy way to escape all of the white space in my file names before passing them to mdls
. Please forgive me if this is an obvious question. I'm quite new to Perl.
my $top_dir = '/Volumes/hydrogen/FLAC';
sub wanted { # Learn about sub routines
if ($File::Find::name) {
my $curr_file_path = $File::Find::name. "\n";
`mdls $curr_file_path`;
print $_;
}
}
find(\&wanted, $top_dir);
If you're sure the filenames don't contain newlines (either CR or LF), then pretty much all Unix shells accept backslash quoting, and Perl has the
quotemeta
function to apply it.Unfortunately, that doesn't work for filenames with newlines, because the shell handles a backslash followed by a newline by deleting both characters instead of just the backslash. So to be really safe, use String::ShellQuote:
That should work on filenames containing anything except a NUL character, which you really shouldn't be using in filenames.
Both of these solutions are for Unix-style shells only. If you're on Windows, proper shell quoting is much trickier.
Quote the variable name inside the backticks:
If you just want to find the last access time, is there some weird Mac reason you aren't using stat? When would it be worse than
kMDItemLastUsedDate
?It seems
kMDItemLastUsedDate
isn't always updated to the last access time. If you work with a file through the terminal (e.g.cat
,more
),kMDItemLastUsedDate
doesn't change but the value that comes back fromstat
is right.touch
appears to do the right thing in both cases.It looks like you need
stat
for the real answer, butmdls
if you're looking for access through applications.You can bypass the shell by expressing the command as a list, combined with
capture()
from IPC::System::Simple:If you are JUST wanting "last access time" in terms of of the OS last access time,
mdls
is the wrong tool. Use perl'sstat
. If you want last access time in terms of the Mac registered application (ie, a song by Quicktime or iTunes) thenmdls
is potentially the right tool. (You could also use osascript to query the Mac app directly...)Backticks are for capturing the text return. Since you are using mdls, I assume capturing and parsing the text is still to come.
So there are several methods:
Use the list form of system and the quoting is not necessary (if you don't care about the return text);
Use String::ShellQuote to escape the file name before sending to sh;
Build the string and enclose in single quotes prior to sending to sending to the shell. This is harder than it sounds because files names with single quotes defeats your quotes! For example,
sam's song.mp4
is a legal file name, but if you surround with single quotes you get'sam's song.mp4'
which is not what you meant...Use
open
to open a pipe to the output of the child process like this:open my $fh, '-|', "mdls", "$curr_file" or die "$!";
Example of String::ShellQuote:
Example of pipe: