From e2ac7000e32f351ec6026060c489514f397dcb9d Mon Sep 17 00:00:00 2001 From: "avi@google.com" Date: Tue, 9 Dec 2008 14:58:13 +0000 Subject: Cleanup of the path service. (With some extra utilities to be used later.) Review URL: http://codereview.chromium.org/13260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6584 0039d316-1c4b-4281-b951-d872f2087c98 --- base/mac_util.mm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 base/mac_util.mm (limited to 'base/mac_util.mm') diff --git a/base/mac_util.mm b/base/mac_util.mm new file mode 100644 index 0000000..1f92e62 --- /dev/null +++ b/base/mac_util.mm @@ -0,0 +1,26 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "base/mac_util.h" + +#import + +#include "base/scoped_cftyperef.h" + +namespace mac_util { + +std::string PathFromFSRef(const FSRef& ref) { + scoped_cftyperef url( + CFURLCreateFromFSRef(kCFAllocatorDefault, &ref)); + NSString *path_string = [(NSURL *)url.get() path]; + return [path_string fileSystemRepresentation]; +} + +bool FSRefFromPath(const std::string& path, FSRef* ref) { + OSStatus status = FSPathMakeRef((const UInt8*)path.c_str(), + ref, nil); + return status == noErr; +} + +} // namespace mac_util -- cgit v1.1