Chromium Code Reviews| Index: base/file_util_win.cc |
| diff --git a/base/file_util_win.cc b/base/file_util_win.cc |
| index 368961459b3efdf46cbba4422a6ae21d3a82ea35..dccdf5124b101087aaffad9647d8376555ae63b5 100644 |
| --- a/base/file_util_win.cc |
| +++ b/base/file_util_win.cc |
| @@ -702,6 +702,11 @@ bool CreateDirectory(const FilePath& full_path) { |
| } |
| } |
| +// No symlinks on windows |
|
Evan Martin
2011/05/31 21:22:32
This isn't quite true -- NTFS supports junctions:
rkc
2011/05/31 21:49:56
Done.
On 2011/05/31 21:22:32, Evan Martin wrote:
|
| +bool IsLink(const FilePath& file_path) { |
| + return false; |
| +} |
| + |
| bool GetFileInfo(const FilePath& file_path, base::PlatformFileInfo* results) { |
| base::ThreadRestrictions::AssertIOAllowed(); |