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

Unified Diff: chrome/browser/download/download_util.cc

Issue 1276003: Append a number to make app shortcut name unique. (Closed)
Patch Set: Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/download/download_util.h ('k') | chrome/browser/web_applications/web_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_util.cc
diff --git a/chrome/browser/download/download_util.cc b/chrome/browser/download/download_util.cc
index 5d0c49c8da04ec5294c92e561d90eebb80155ccf..720d2032b6a358c8ee293fa153986e82c365ea40 100644
--- a/chrome/browser/download/download_util.cc
+++ b/chrome/browser/download/download_util.cc
@@ -495,4 +495,32 @@ void UpdateAppIconDownloadProgress(int download_count,
}
#endif
+// Appends the passed the number between parenthesis the path before the
+// extension.
+void AppendNumberToPath(FilePath* path, int number) {
+ file_util::InsertBeforeExtension(path,
+ StringPrintf(FILE_PATH_LITERAL(" (%d)"), number));
+}
+
+// Attempts to find a number that can be appended to that path to make it
+// unique. If |path| does not exist, 0 is returned. If it fails to find such
+// a number, -1 is returned.
+int GetUniquePathNumber(const FilePath& path) {
+ const int kMaxAttempts = 100;
+
+ if (!file_util::PathExists(path))
+ return 0;
+
+ FilePath new_path;
+ for (int count = 1; count <= kMaxAttempts; ++count) {
+ new_path = FilePath(path);
+ AppendNumberToPath(&new_path, count);
+
+ if (!file_util::PathExists(new_path))
+ return count;
+ }
+
+ return -1;
+}
+
} // namespace download_util
« no previous file with comments | « chrome/browser/download/download_util.h ('k') | chrome/browser/web_applications/web_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698