5
5
using Microsoft . DataTransfer . Interfaces ;
6
6
using Microsoft . DataTransfer . JsonExtension . Settings ;
7
7
using Microsoft . Extensions . Configuration ;
8
+ using System ;
8
9
9
10
namespace Microsoft . DataTransfer . JsonExtension
10
11
{
@@ -21,6 +22,7 @@ public async IAsyncEnumerable<IDataItem> ReadAsync(IConfiguration config, [Enume
21
22
{
22
23
if ( File . Exists ( settings . FilePath ) )
23
24
{
25
+ Console . WriteLine ( $ "Reading file '{ settings . FilePath } '") ;
24
26
var list = await ReadFileAsync ( cancellationToken , settings . FilePath ) ;
25
27
26
28
if ( list != null )
@@ -33,8 +35,11 @@ public async IAsyncEnumerable<IDataItem> ReadAsync(IConfiguration config, [Enume
33
35
}
34
36
else if ( Directory . Exists ( settings . FilePath ) )
35
37
{
36
- foreach ( string filePath in Directory . GetFiles ( settings . FilePath , "*.json" , SearchOption . AllDirectories ) . OrderBy ( f => f ) )
38
+ string [ ] files = Directory . GetFiles ( settings . FilePath , "*.json" , SearchOption . AllDirectories ) ;
39
+ Console . WriteLine ( $ "Reading { files . Length } files from '{ settings . FilePath } '") ;
40
+ foreach ( string filePath in files . OrderBy ( f => f ) )
37
41
{
42
+ Console . WriteLine ( $ "Reading file '{ filePath } '") ;
38
43
var list = await ReadFileAsync ( cancellationToken , filePath ) ;
39
44
40
45
if ( list != null )
@@ -46,6 +51,7 @@ public async IAsyncEnumerable<IDataItem> ReadAsync(IConfiguration config, [Enume
46
51
}
47
52
}
48
53
}
54
+ Console . WriteLine ( $ "Completed reading '{ settings . FilePath } '") ;
49
55
}
50
56
}
51
57
@@ -76,6 +82,12 @@ public async IAsyncEnumerable<IDataItem> ReadAsync(IConfiguration config, [Enume
76
82
{
77
83
// single item failed
78
84
}
85
+
86
+ if ( ! list . Any ( ) )
87
+ {
88
+ Console . WriteLine ( $ "No records read from '{ filePath } '") ;
89
+ }
90
+
79
91
return list ;
80
92
}
81
93
}
0 commit comments