Browse Source

GMOのダウンロード一時ファイル名が独自だったので対応

master
sosuke.iwabuchi 2 years ago
parent
commit
3e04018ce3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      CSVDownloader/Web/WebController.cs

+ 1
- 1
CSVDownloader/Web/WebController.cs View File

@@ -171,7 +171,7 @@ namespace CSVDownloader.Web {
var file = files[0]; var file = files[0];




if (file.Name.Contains(".crdownload")) {
if (file.Name.Contains(".crdownload") || file.Name.Contains(".tmp")) {
// ダウンロード継続 // ダウンロード継続
last_size = file.Length; last_size = file.Length;
logger_.Info($"ダウンロード監視中:{file.Name} size:{file.Length}"); logger_.Info($"ダウンロード監視中:{file.Name} size:{file.Length}");


Loading…
Cancel
Save