Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Side by Side Diff: utils/pub/io.dart

Issue 10803042: Reverting 9767. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/pub/git_source.dart ('k') | utils/pub/lock_file.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 return new File(_getPath(file)).delete(); 132 file = _getFile(file);
133 return file.delete();
133 } 134 }
134 135
135 /** 136 /**
136 * Creates a directory [dir]. Returns a [Future] that completes when the 137 * Creates a directory [dir]. Returns a [Future] that completes when the
137 * directory is created. 138 * directory is created.
138 */ 139 */
139 Future<Directory> createDir(dir) { 140 Future<Directory> createDir(dir) {
140 dir = _getDirectory(dir); 141 dir = _getDirectory(dir);
141 return dir.create(); 142 return dir.create();
142 } 143 }
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 return new Directory(entry); 471 return new Directory(entry);
471 } 472 }
472 473
473 /** 474 /**
474 * Gets a [Uri] for [uri], which can either already be one, or be a [String]. 475 * Gets a [Uri] for [uri], which can either already be one, or be a [String].
475 */ 476 */
476 Uri _getUri(uri) { 477 Uri _getUri(uri) {
477 if (uri is Uri) return uri; 478 if (uri is Uri) return uri;
478 return new Uri.fromString(uri); 479 return new Uri.fromString(uri);
479 } 480 }
OLDNEW
« no previous file with comments | « utils/pub/git_source.dart ('k') | utils/pub/lock_file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698