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

Unified Diff: sdk/lib/_internal/pub/lib/src/io.dart

Issue 101863006: Remove some pointless log spewing. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/source/hosted.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/io.dart
diff --git a/sdk/lib/_internal/pub/lib/src/io.dart b/sdk/lib/_internal/pub/lib/src/io.dart
index 0131d0a87770ef8ea5c5a072c556a33c9a69053a..6eb1e592472e91db04ad8a60058aa4ee50a14a8d 100644
--- a/sdk/lib/_internal/pub/lib/src/io.dart
+++ b/sdk/lib/_internal/pub/lib/src/io.dart
@@ -218,27 +218,11 @@ String createDir(String dir) {
return dir;
}
-/// Ensures that [dirPath] and all its parent directories exist. If they don't
+/// Ensures that [dir] and all its parent directories exist. If they don't
/// exist, creates them.
-String ensureDir(String dirPath) {
- log.fine("Ensuring directory $dirPath exists.");
- var dir = new Directory(dirPath);
- if (dirPath == '.' || dirExists(dirPath)) return dirPath;
-
- ensureDir(path.dirname(dirPath));
-
- try {
- createDir(dirPath);
- } on FileSystemException catch (ex) {
- // Error 17 means the directory already exists (or 183 on Windows).
- if (ex.osError.errorCode == 17 || ex.osError.errorCode == 183) {
- log.fine("Got 'already exists' error when creating directory.");
- } else {
- throw ex;
- }
- }
-
- return dirPath;
+String ensureDir(String dir) {
+ new Directory(dir).createSync(recursive: true);
+ return dir;
}
/// Creates a temp directory in [dir], whose name will be [prefix] with
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/source/hosted.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698