From 507fb9aa76b09905a92f1f013b1935891e60fb2b Mon Sep 17 00:00:00 2001 From: "dumi@chromium.org" Date: Thu, 23 Sep 2010 23:28:22 +0000 Subject: Add a TouchFile() function that takes a FilePath argument. BUG=none TEST=none Review URL: http://codereview.chromium.org/3496005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60381 0039d316-1c4b-4281-b951-d872f2087c98 --- base/file_util.cc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'base/file_util.cc') diff --git a/base/file_util.cc b/base/file_util.cc index e618903..747232b 100644 --- a/base/file_util.cc +++ b/base/file_util.cc @@ -200,6 +200,28 @@ bool IsDotDot(const FilePath& path) { return FILE_PATH_LITERAL("..") == path.BaseName().value(); } +bool TouchFile(const FilePath& path, + const base::Time& last_accessed, + const base::Time& last_modified) { + base::PlatformFile file = + base::CreatePlatformFile(path, + base::PLATFORM_FILE_OPEN | + base::PLATFORM_FILE_WRITE_ATTRIBUTES, + NULL, NULL); + if (file != base::kInvalidPlatformFileValue) { + bool result = base::TouchPlatformFile(file, last_accessed, last_modified); + base::ClosePlatformFile(file); + return result; + } + + return false; +} + +bool SetLastModifiedTime(const FilePath& path, + const base::Time& last_modified) { + return TouchFile(path, last_modified, last_modified); +} + bool CloseFile(FILE* file) { if (file == NULL) return true; -- cgit v1.1