OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // Download utility implementation | 5 // Download utility implementation |
6 | 6 |
7 #include "chrome/browser/download/download_util.h" | 7 #include "chrome/browser/download/download_util.h" |
8 | 8 |
9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
10 #include <shobjidl.h> | 10 #include <shobjidl.h> |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 taskbar->SetProgressState(frame, TBPF_NOPROGRESS); | 488 taskbar->SetProgressState(frame, TBPF_NOPROGRESS); |
489 else if (!progress_known) | 489 else if (!progress_known) |
490 taskbar->SetProgressState(frame, TBPF_INDETERMINATE); | 490 taskbar->SetProgressState(frame, TBPF_INDETERMINATE); |
491 else | 491 else |
492 taskbar->SetProgressValue(frame, (int)(progress * 100), 100); | 492 taskbar->SetProgressValue(frame, (int)(progress * 100), 100); |
493 } | 493 } |
494 #endif | 494 #endif |
495 } | 495 } |
496 #endif | 496 #endif |
497 | 497 |
| 498 // Appends the passed the number between parenthesis the path before the |
| 499 // extension. |
| 500 void AppendNumberToPath(FilePath* path, int number) { |
| 501 file_util::InsertBeforeExtension(path, |
| 502 StringPrintf(FILE_PATH_LITERAL(" (%d)"), number)); |
| 503 } |
| 504 |
| 505 // Attempts to find a number that can be appended to that path to make it |
| 506 // unique. If |path| does not exist, 0 is returned. If it fails to find such |
| 507 // a number, -1 is returned. |
| 508 int GetUniquePathNumber(const FilePath& path) { |
| 509 const int kMaxAttempts = 100; |
| 510 |
| 511 if (!file_util::PathExists(path)) |
| 512 return 0; |
| 513 |
| 514 FilePath new_path; |
| 515 for (int count = 1; count <= kMaxAttempts; ++count) { |
| 516 new_path = FilePath(path); |
| 517 AppendNumberToPath(&new_path, count); |
| 518 |
| 519 if (!file_util::PathExists(new_path)) |
| 520 return count; |
| 521 } |
| 522 |
| 523 return -1; |
| 524 } |
| 525 |
498 } // namespace download_util | 526 } // namespace download_util |
OLD | NEW |