OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/platform_file.h" | 5 #include "base/platform_file.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/threading/thread_restrictions.h" | 9 #include "base/threading/thread_restrictions.h" |
10 | 10 |
11 namespace base { | 11 namespace base { |
12 | 12 PlatformFile CreatePlatformFileAllowTraversal(const FilePath& name, |
13 PlatformFile CreatePlatformFile(const FilePath& name, | 13 int flags, |
14 int flags, | 14 bool* created, |
15 bool* created, | 15 PlatformFileError* error_code) { |
16 PlatformFileError* error_code) { | |
17 base::ThreadRestrictions::AssertIOAllowed(); | 16 base::ThreadRestrictions::AssertIOAllowed(); |
18 | 17 |
19 DWORD disposition = 0; | 18 DWORD disposition = 0; |
20 if (created) | 19 if (created) |
21 *created = false; | 20 *created = false; |
22 | 21 |
23 if (flags & PLATFORM_FILE_OPEN) | 22 if (flags & PLATFORM_FILE_OPEN) |
24 disposition = OPEN_EXISTING; | 23 disposition = OPEN_EXISTING; |
25 | 24 |
26 if (flags & PLATFORM_FILE_CREATE) { | 25 if (flags & PLATFORM_FILE_CREATE) { |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 info->is_directory = | 253 info->is_directory = |
255 (file_info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0; | 254 (file_info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0; |
256 info->is_symbolic_link = false; // Windows doesn't have symbolic links. | 255 info->is_symbolic_link = false; // Windows doesn't have symbolic links. |
257 info->last_modified = base::Time::FromFileTime(file_info.ftLastWriteTime); | 256 info->last_modified = base::Time::FromFileTime(file_info.ftLastWriteTime); |
258 info->last_accessed = base::Time::FromFileTime(file_info.ftLastAccessTime); | 257 info->last_accessed = base::Time::FromFileTime(file_info.ftLastAccessTime); |
259 info->creation_time = base::Time::FromFileTime(file_info.ftCreationTime); | 258 info->creation_time = base::Time::FromFileTime(file_info.ftCreationTime); |
260 return true; | 259 return true; |
261 } | 260 } |
262 | 261 |
263 } // namespace base | 262 } // namespace base |
OLD | NEW |