OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 /** | 5 /** |
6 * Helper functionality to make working with IO easier. | 6 * Helper functionality to make working with IO easier. |
7 */ | 7 */ |
8 #library('io'); | 8 #library('io'); |
9 | 9 |
10 #import('dart:io'); | 10 #import('dart:io'); |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 return opened.close().transform((ignore) => file); | 122 return opened.close().transform((ignore) => file); |
123 }); | 123 }); |
124 }); | 124 }); |
125 } | 125 } |
126 | 126 |
127 /** | 127 /** |
128 * Asynchronously deletes [file], which can be a [String] or a [File]. Returns a | 128 * Asynchronously deletes [file], which can be a [String] or a [File]. Returns a |
129 * [Future] that completes when the deletion is done. | 129 * [Future] that completes when the deletion is done. |
130 */ | 130 */ |
131 Future<Directory> deleteFile(file) { | 131 Future<Directory> deleteFile(file) { |
132 file = _getFile(file); | 132 return new File(_getPath(file)).delete(); |
133 return file.delete(); | |
134 } | 133 } |
135 | 134 |
136 /** | 135 /** |
137 * Creates a directory [dir]. Returns a [Future] that completes when the | 136 * Creates a directory [dir]. Returns a [Future] that completes when the |
138 * directory is created. | 137 * directory is created. |
139 */ | 138 */ |
140 Future<Directory> createDir(dir) { | 139 Future<Directory> createDir(dir) { |
141 dir = _getDirectory(dir); | 140 dir = _getDirectory(dir); |
142 return dir.create(); | 141 return dir.create(); |
143 } | 142 } |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 return new Directory(entry); | 470 return new Directory(entry); |
472 } | 471 } |
473 | 472 |
474 /** | 473 /** |
475 * Gets a [Uri] for [uri], which can either already be one, or be a [String]. | 474 * Gets a [Uri] for [uri], which can either already be one, or be a [String]. |
476 */ | 475 */ |
477 Uri _getUri(uri) { | 476 Uri _getUri(uri) { |
478 if (uri is Uri) return uri; | 477 if (uri is Uri) return uri; |
479 return new Uri.fromString(uri); | 478 return new Uri.fromString(uri); |
480 } | 479 } |
OLD | NEW |