You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -21,91 +20,91 @@ public interface IFileSystemHandler
21
20
/// </summary>
22
21
/// <param name="path">The path.</param>
23
22
/// <returns>true if path refers to an existing directory; false if the directory does not exist or an error occurs when trying to determine if the specified directory exists.</returns>
24
-
boolFolderExists([NotNull]stringpath);
23
+
boolFolderExists(stringpath);
25
24
26
25
/// <summary>
27
26
/// Creates all directories and subdirectories in the specified path unless they already exist.
28
27
/// </summary>
29
28
/// <param name="path">The path.</param>
30
-
voidCreateFolder([NotNull]stringpath);
29
+
voidCreateFolder(stringpath);
31
30
32
31
/// <summary>
33
32
/// Returns an enumerable collection of file names in a specified path.
34
33
/// </summary>
35
34
/// <param name="path">The path.</param>
36
-
/// <param name="includeSubdirectories">A value indicating whether subdirectories should also included when enumerating files.</param>
35
+
/// <param name="includeSubdirectories">A value indicating whether subdirectories should also be included when enumerating files.</param>
37
36
/// <returns>An enumerable collection of the full names (including paths) for the files in the directory (and optionally subdirectories) specified by path.</returns>
// Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq
3
+
// Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq which is copied from https://github.com/StefH/JsonConverter
0 commit comments