| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.io; | 5 part of dart.io; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * FileMode describes the modes in which a file can be opened. | 8 * FileMode describes the modes in which a file can be opened. |
| 9 */ | 9 */ |
| 10 class FileMode { | 10 class FileMode { |
| 11 static const READ = const FileMode._internal(0); | 11 static const READ = const FileMode._internal(0); |
| 12 static const WRITE = const FileMode._internal(1); | 12 static const WRITE = const FileMode._internal(1); |
| 13 static const APPEND = const FileMode._internal(2); | 13 static const APPEND = const FileMode._internal(2); |
| 14 const FileMode._internal(int this._mode); | 14 const FileMode._internal(int this._mode); |
| 15 final int _mode; | 15 final int _mode; |
| 16 } | 16 } |
| 17 | 17 |
| 18 const READ = FileMode.READ; | 18 const READ = FileMode.READ; |
| 19 const WRITE = FileMode.WRITE; | 19 const WRITE = FileMode.WRITE; |
| 20 const APPEND = FileMode.APPEND; | 20 const APPEND = FileMode.APPEND; |
| 21 | 21 |
| 22 /** | 22 /** |
| 23 * [File] objects are references to files. | 23 * A reference to a file on the file system. |
| 24 * | 24 * |
| 25 * If [path] is a symbolic link, rather than a file, then | 25 * If [path] is a symbolic link, rather than a file, then |
| 26 * the methods of [File] operate on the ultimate target of the | 26 * the methods of [File] operate on the ultimate target of the |
| 27 * link, except for File.delete and File.deleteSync, which operate on | 27 * link, except for File.delete and File.deleteSync, which operate on |
| 28 * the link. | 28 * the link. |
| 29 * | 29 * |
| 30 * To operate on the underlying file data there are two options: | 30 * To operate on the underlying file data there are two options: |
| 31 * | 31 * |
| 32 * * Use streaming: read the contents of the file from the [Stream] | 32 * * Use streaming: read the contents of the file from the [Stream] |
| 33 * this.[openRead]() and write to the file by writing to the [IOSink] | 33 * this.[openRead]() and write to the file by writing to the [IOSink] |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 } | 534 } |
| 535 } else if (osError != null) { | 535 } else if (osError != null) { |
| 536 sb.write(": osError"); | 536 sb.write(": osError"); |
| 537 if (path != null) { | 537 if (path != null) { |
| 538 sb.write(", path = $path"); | 538 sb.write(", path = $path"); |
| 539 } | 539 } |
| 540 } | 540 } |
| 541 return sb.toString(); | 541 return sb.toString(); |
| 542 } | 542 } |
| 543 } | 543 } |
| OLD | NEW |