summaryrefslogtreecommitdiff
path: root/src/lib/cross_osx.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-17 23:21:54 +0200
committerCarl Hetherington <cth@carlh.net>2021-09-21 09:46:32 +0200
commita5f481aae19a6ef5b0cad48edaea5b58fc00ee05 (patch)
tree50ab7bc8fe9a308b8dd1bea778884ac18d55d956 /src/lib/cross_osx.cc
parentff6c51d3aae0195f6612b01b7609342d3f53df26 (diff)
Move 'show in file manager' code to cross_*
Diffstat (limited to 'src/lib/cross_osx.cc')
-rw-r--r--src/lib/cross_osx.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc
index b9b7796a2..d0cb9f216 100644
--- a/src/lib/cross_osx.cc
+++ b/src/lib/cross_osx.cc
@@ -638,3 +638,12 @@ fix_long_path (boost::filesystem::path path)
{
return path;
}
+
+
+bool
+show_in_file_manager (boost::filesystem::path, boost::filesystem::path select)
+{
+ int r = system (String::compose("open -R \"%1\"", select.string()).c_str());
+ return static_cast<bool>(WEXITSTATUS(r));
+}
+