From 547e1a7a50e59294eb2deae9026e94e23417789a Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sun, 27 Jul 2025 23:06:54 +0100 Subject: [PATCH 1/9] A bunch of clean-up --- .editorconfig | 572 +++++++++--------- .../AStar.Dev.Infrastructure.FilesDb.csproj | 14 +- .../AStar.Dev.Infrastructure.FilesDb.xml | 205 ++++--- .../DirectoryNameConfiguration.cs | 8 +- .../Configurations/FileDetailConfiguration.cs | 5 +- .../Data/FileDetailDirectoryNameExtensions.cs | 2 - .../Data/FileDetailLastViewedExtensions.cs | 5 +- .../Data/FilesContext.cs | 9 +- .../Models/DirectoryName.cs | 1 - .../Models/FileHandle.cs | 5 +- .../Models/FileId.cs | 2 +- .../Models/FileName.cs | 2 - .../AStar.Dev.Infrastructure.xml | 7 +- ...mplexPropertyBuilderConfigurationShould.cs | 30 +- .../StringExtensionsShould.cs | 6 +- 15 files changed, 447 insertions(+), 426 deletions(-) diff --git a/.editorconfig b/.editorconfig index f8bcf98..fa757fa 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,375 +6,363 @@ root = true #### Core EditorConfig Options #### # Indentation and spacing -indent_size = 4 -indent_style = space -tab_width = 4 +indent_size = 4 +indent_style = space +tab_width = 4 # New line preferences -end_of_line = crlf -insert_final_newline = true +end_of_line = crlf +insert_final_newline = true #### .NET Coding Conventions #### # Organize usings -dotnet_separate_import_directive_groups = false -dotnet_sort_system_directives_first = true -file_header_template = unset +dotnet_separate_import_directive_groups = false +dotnet_sort_system_directives_first = true +file_header_template = unset # this. and Me. preferences -dotnet_style_qualification_for_event = false:error -dotnet_style_qualification_for_field = false -dotnet_style_qualification_for_method = false:error -dotnet_style_qualification_for_property = false:error +dotnet_style_qualification_for_event = false:error +dotnet_style_qualification_for_field = false +dotnet_style_qualification_for_method = false:error +dotnet_style_qualification_for_property = false:error # Language keywords vs BCL types preferences -dotnet_style_predefined_type_for_locals_parameters_members = true -dotnet_style_predefined_type_for_member_access = true +dotnet_style_predefined_type_for_locals_parameters_members = true +dotnet_style_predefined_type_for_member_access = true # Parentheses preferences -dotnet_style_parentheses_in_arithmetic_binary_operators = -always_for_clarity:warning -dotnet_style_parentheses_in_other_binary_operators = -always_for_clarity:warning -dotnet_style_parentheses_in_other_operators = never_if_unnecessary -dotnet_style_parentheses_in_relational_binary_operators = -always_for_clarity:warning +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:warning +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning +dotnet_style_parentheses_in_other_operators = never_if_unnecessary +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:warning # Modifier preferences -dotnet_style_require_accessibility_modifiers = for_non_interface_members +dotnet_style_require_accessibility_modifiers = for_non_interface_members # Expression-level preferences -dotnet_style_coalesce_expression = true:warning -dotnet_style_collection_initializer = true:error -dotnet_style_explicit_tuple_names = true:error -dotnet_style_namespace_match_folder = true -dotnet_style_null_propagation = true:warning -dotnet_style_object_initializer = true:error -dotnet_style_operator_placement_when_wrapping = beginning_of_line -dotnet_style_prefer_auto_properties = true:warning -dotnet_style_prefer_collection_expression = when_types_loosely_match -dotnet_style_prefer_compound_assignment = true:error -dotnet_style_prefer_conditional_expression_over_assignment = true:error -dotnet_style_prefer_conditional_expression_over_return = true:error -dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed -dotnet_style_prefer_inferred_anonymous_type_member_names = true:error -dotnet_style_prefer_inferred_tuple_names = true:error -dotnet_style_prefer_is_null_check_over_reference_equality_method = -true:warning -dotnet_style_prefer_simplified_boolean_expressions = true:error -dotnet_style_prefer_simplified_interpolation = true +dotnet_style_coalesce_expression = true:warning +dotnet_style_collection_initializer = true:error +dotnet_style_explicit_tuple_names = true:error +dotnet_style_namespace_match_folder = true +dotnet_style_null_propagation = true:warning +dotnet_style_object_initializer = true:error +dotnet_style_operator_placement_when_wrapping = beginning_of_line +dotnet_style_prefer_auto_properties = true:warning +dotnet_style_prefer_collection_expression = when_types_loosely_match +dotnet_style_prefer_compound_assignment = true:error +dotnet_style_prefer_conditional_expression_over_assignment = true:error +dotnet_style_prefer_conditional_expression_over_return = true:error +dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed +dotnet_style_prefer_inferred_anonymous_type_member_names = true:error +dotnet_style_prefer_inferred_tuple_names = true:error +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning +dotnet_style_prefer_simplified_boolean_expressions = true:error +dotnet_style_prefer_simplified_interpolation = true # Field preferences -dotnet_style_readonly_field = true:error +dotnet_style_readonly_field = true:error # Parameter preferences -dotnet_code_quality_unused_parameters = all:error +dotnet_code_quality_unused_parameters = all:error # Suppression preferences -dotnet_remove_unnecessary_suppression_exclusions = none +dotnet_remove_unnecessary_suppression_exclusions = none # New line preferences -dotnet_style_allow_multiple_blank_lines_experimental = false:error -dotnet_style_allow_statement_immediately_after_block_experimental = -false:warning +dotnet_style_allow_multiple_blank_lines_experimental = false:error +dotnet_style_allow_statement_immediately_after_block_experimental = false:warning #### C# Coding Conventions #### # var preferences -csharp_style_var_elsewhere = true:silent -csharp_style_var_for_built_in_types = true:silent -csharp_style_var_when_type_is_apparent = true:silent +csharp_style_var_elsewhere = true:silent +csharp_style_var_for_built_in_types = true:silent +csharp_style_var_when_type_is_apparent = true:silent # Expression-bodied members -csharp_style_expression_bodied_accessors = true:warning -csharp_style_expression_bodied_constructors = true:warning -csharp_style_expression_bodied_indexers = true:warning -csharp_style_expression_bodied_lambdas = true:warning -csharp_style_expression_bodied_local_functions = false:silent -csharp_style_expression_bodied_methods = true:warning -csharp_style_expression_bodied_operators = true:warning -csharp_style_expression_bodied_properties = true:warning +csharp_style_expression_bodied_accessors = true:warning +csharp_style_expression_bodied_constructors = true:warning +csharp_style_expression_bodied_indexers = true:warning +csharp_style_expression_bodied_lambdas = true:warning +csharp_style_expression_bodied_local_functions = false:silent +csharp_style_expression_bodied_methods = true:warning +csharp_style_expression_bodied_operators = true:warning +csharp_style_expression_bodied_properties = true:warning # Pattern matching preferences -csharp_style_pattern_matching_over_as_with_null_check = true:error -csharp_style_pattern_matching_over_is_with_cast_check = true:error -csharp_style_prefer_extended_property_pattern = true:warning -csharp_style_prefer_not_pattern = true:error -csharp_style_prefer_pattern_matching = true:error -csharp_style_prefer_switch_expression = true:error +csharp_style_pattern_matching_over_as_with_null_check = true:error +csharp_style_pattern_matching_over_is_with_cast_check = true:error +csharp_style_prefer_extended_property_pattern = true:warning +csharp_style_prefer_not_pattern = true:error +csharp_style_prefer_pattern_matching = true:error +csharp_style_prefer_switch_expression = true:error # Null-checking preferences -csharp_style_conditional_delegate_call = true:warning +csharp_style_conditional_delegate_call = true:warning # Modifier preferences -csharp_prefer_static_local_function = true:warning -csharp_preferred_modifier_order = public, private, protected, internal, -static, extern, new, virtual, abstract, sealed, override, readonly, -unsafe, volatile, async -csharp_style_prefer_readonly_struct = true:warning -csharp_style_prefer_readonly_struct_member = true:suggestion +csharp_prefer_static_local_function = true:warning +csharp_preferred_modifier_order = public, private, protected, internal, static, extern, new, virtual, abstract, sealed, override, readonly, unsafe, volatile, async +csharp_style_prefer_readonly_struct = true:warning +csharp_style_prefer_readonly_struct_member = true:suggestion # Code-block preferences -csharp_prefer_braces = true:error -csharp_prefer_simple_using_statement = true:warning -csharp_style_namespace_declarations = file_scoped:warning -csharp_style_prefer_method_group_conversion = true:warning -csharp_style_prefer_primary_constructors = true:suggestion -csharp_style_prefer_top_level_statements = false:silent +csharp_prefer_braces = true:error +csharp_prefer_simple_using_statement = true:warning +csharp_style_namespace_declarations = file_scoped:warning +csharp_style_prefer_method_group_conversion = true:warning +csharp_style_prefer_primary_constructors = true:suggestion +csharp_style_prefer_top_level_statements = false:silent # Expression-level preferences -csharp_prefer_simple_default_expression = true:error -csharp_style_deconstructed_variable_declaration = true:warning -csharp_style_implicit_object_creation_when_type_is_apparent = true:error -csharp_style_inlined_variable_declaration = true:warning -csharp_style_prefer_index_operator = true:error -csharp_style_prefer_local_over_anonymous_function = true:error -csharp_style_prefer_null_check_over_type_check = true:warning -csharp_style_prefer_range_operator = true:error -csharp_style_prefer_tuple_swap = true:error -csharp_style_prefer_utf8_string_literals = true:suggestion -csharp_style_throw_expression = true:warning -csharp_style_unused_value_assignment_preference = discard_variable:warning -csharp_style_unused_value_expression_statement_preference = -discard_variable:warning +csharp_prefer_simple_default_expression = true:error +csharp_style_deconstructed_variable_declaration = true:warning +csharp_style_implicit_object_creation_when_type_is_apparent = true:error +csharp_style_inlined_variable_declaration = true:warning +csharp_style_prefer_index_operator = true:error +csharp_style_prefer_local_over_anonymous_function = true:error +csharp_style_prefer_null_check_over_type_check = true:warning +csharp_style_prefer_range_operator = true:error +csharp_style_prefer_tuple_swap = true:error +csharp_style_prefer_utf8_string_literals = true:suggestion +csharp_style_throw_expression = true:warning +csharp_style_unused_value_assignment_preference = discard_variable:warning +csharp_style_unused_value_expression_statement_preference = discard_variable:warning # 'using' directive preferences -csharp_using_directive_placement = outside_namespace:warning +csharp_using_directive_placement = outside_namespace:warning # New line preferences -csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental -= false:warning -csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental -= false:warning -csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental -= false:warning -csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false:error -false:error -csharp_style_allow_embedded_statements_on_same_line_experimental = true:warning -true:warning +csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = false:warning +csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = false:warning +csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = false:warning +csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false:error +false: +error +csharp_style_allow_embedded_statements_on_same_line_experimental = true:warning +true: +warning #### C# Formatting Rules #### # New line preferences -csharp_new_line_before_catch = true -csharp_new_line_before_else = true -csharp_new_line_before_finally = true -csharp_new_line_before_members_in_anonymous_types = true -csharp_new_line_before_members_in_object_initializers = true -csharp_new_line_before_open_brace = all -csharp_new_line_between_query_expression_clauses = true +csharp_new_line_before_catch = true +csharp_new_line_before_else = true +csharp_new_line_before_finally = true +csharp_new_line_before_members_in_anonymous_types = true +csharp_new_line_before_members_in_object_initializers = true +csharp_new_line_before_open_brace = all +csharp_new_line_between_query_expression_clauses = true # Indentation preferences -csharp_indent_block_contents = true -csharp_indent_braces = false -csharp_indent_case_contents = true -csharp_indent_case_contents_when_block = false -csharp_indent_labels = one_less_than_current -csharp_indent_switch_labels = true +csharp_indent_block_contents = true +csharp_indent_braces = false +csharp_indent_case_contents = true +csharp_indent_case_contents_when_block = false +csharp_indent_labels = one_less_than_current +csharp_indent_switch_labels = true # Space preferences -csharp_space_after_cast = false -csharp_space_after_colon_in_inheritance_clause = true -csharp_space_after_comma = true -csharp_space_after_dot = false -csharp_space_after_keywords_in_control_flow_statements = false -csharp_space_after_semicolon_in_for_statement = true -csharp_space_around_binary_operators = before_and_after -csharp_space_around_declaration_statements = ignore -csharp_space_before_colon_in_inheritance_clause = true -csharp_space_before_comma = false -csharp_space_before_dot = false -csharp_space_before_open_square_brackets = false -csharp_space_before_semicolon_in_for_statement = false -csharp_space_between_empty_square_brackets = false -csharp_space_between_method_call_empty_parameter_list_parentheses = false -csharp_space_between_method_call_name_and_opening_parenthesis = false -csharp_space_between_method_call_parameter_list_parentheses = false -csharp_space_between_method_declaration_empty_parameter_list_parentheses -= false -csharp_space_between_method_declaration_name_and_open_parenthesis = false -csharp_space_between_method_declaration_parameter_list_parentheses = false -csharp_space_between_parentheses = false -csharp_space_between_square_brackets = false +csharp_space_after_cast = false +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_after_comma = true +csharp_space_after_dot = false +csharp_space_after_keywords_in_control_flow_statements = false +csharp_space_after_semicolon_in_for_statement = true +csharp_space_around_binary_operators = before_and_after +csharp_space_around_declaration_statements = ignore +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_before_comma = false +csharp_space_before_dot = false +csharp_space_before_open_square_brackets = false +csharp_space_before_semicolon_in_for_statement = false +csharp_space_between_empty_square_brackets = false +csharp_space_between_method_call_empty_parameter_list_parentheses = false +csharp_space_between_method_call_name_and_opening_parenthesis = false +csharp_space_between_method_call_parameter_list_parentheses = false +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false +csharp_space_between_method_declaration_name_and_open_parenthesis = false +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_parentheses = false +csharp_space_between_square_brackets = false # Wrapping preferences -csharp_preserve_single_line_blocks = true -csharp_preserve_single_line_statements = false +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = false #### Naming styles #### # Naming rules -dotnet_naming_rule.interface_should_be_begins_with_i.severity = error -dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface -dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i +dotnet_naming_rule.interface_should_be_begins_with_i.severity = error +dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface +dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i -dotnet_naming_rule.types_should_be_pascal_case.severity = error -dotnet_naming_rule.types_should_be_pascal_case.symbols = types -dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.types_should_be_pascal_case.severity = error +dotnet_naming_rule.types_should_be_pascal_case.symbols = types +dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case -dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = -warning -dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = -non_field_members -dotnet_naming_rule.non_field_members_should_be_pascal_case.style = -pascal_case +dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning +dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members +dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case -dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning -dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field -dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning +dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field +dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case # Symbol specifications -dotnet_naming_symbols.interface.applicable_kinds = interface -dotnet_naming_symbols.interface.applicable_accessibilities = public, -internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.interface.required_modifiers = +dotnet_naming_symbols.interface.applicable_kinds = interface +dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.interface.required_modifiers = -dotnet_naming_symbols.static_field.applicable_kinds = field -dotnet_naming_symbols.static_field.applicable_accessibilities = public, -internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.static_field.required_modifiers = static +dotnet_naming_symbols.static_field.applicable_kinds = field +dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.static_field.required_modifiers = static -dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, -enum -dotnet_naming_symbols.types.applicable_accessibilities = public, -internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.types.required_modifiers = +dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum +dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.types.required_modifiers = -dotnet_naming_symbols.non_field_members.applicable_kinds = property, -event, method -dotnet_naming_symbols.non_field_members.applicable_accessibilities = -public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.non_field_members.required_modifiers = +dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method +dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.non_field_members.required_modifiers = # Naming styles -dotnet_naming_style.pascal_case.required_prefix = -dotnet_naming_style.pascal_case.required_suffix = -dotnet_naming_style.pascal_case.word_separator = -dotnet_naming_style.pascal_case.capitalization = pascal_case +dotnet_naming_style.pascal_case.required_prefix = +dotnet_naming_style.pascal_case.required_suffix = +dotnet_naming_style.pascal_case.word_separator = +dotnet_naming_style.pascal_case.capitalization = pascal_case -dotnet_naming_style.begins_with_i.required_prefix = I -dotnet_naming_style.begins_with_i.required_suffix = -dotnet_naming_style.begins_with_i.word_separator = -dotnet_naming_style.begins_with_i.capitalization = pascal_case +dotnet_naming_style.begins_with_i.required_prefix = I +dotnet_naming_style.begins_with_i.required_suffix = +dotnet_naming_style.begins_with_i.word_separator = +dotnet_naming_style.begins_with_i.capitalization = pascal_case # Async methods should have "Async" suffix -dotnet_naming_rule.async_methods_end_in_async.symbols = any_async_methods -dotnet_naming_rule.async_methods_end_in_async.style = end_in_async -dotnet_naming_rule.async_methods_end_in_async.severity = error - -dotnet_naming_symbols.any_async_methods.applicable_kinds = method -dotnet_naming_symbols.any_async_methods.applicable_accessibilities = * -dotnet_naming_symbols.any_async_methods.required_modifiers = async - -dotnet_naming_style.end_in_async.required_suffix = Async -dotnet_naming_style.end_in_async.capitalization = pascal_case -csharp_prefer_system_threading_lock = true:suggestion -csharp_style_prefer_implicitly_typed_lambda_expression = true:suggestion -csharp_style_prefer_unbound_generic_type_in_nameof = true:suggestion -csharp_prefer_static_anonymous_function = true:suggestion +dotnet_naming_rule.async_methods_end_in_async.symbols = any_async_methods +dotnet_naming_rule.async_methods_end_in_async.style = end_in_async +dotnet_naming_rule.async_methods_end_in_async.severity = error + +dotnet_naming_symbols.any_async_methods.applicable_kinds = method +dotnet_naming_symbols.any_async_methods.applicable_accessibilities = * +dotnet_naming_symbols.any_async_methods.required_modifiers = async + +dotnet_naming_style.end_in_async.required_suffix = Async +dotnet_naming_style.end_in_async.capitalization = pascal_case +csharp_prefer_system_threading_lock = true:suggestion +csharp_style_prefer_implicitly_typed_lambda_expression = true:suggestion +csharp_style_prefer_unbound_generic_type_in_nameof = true:suggestion +csharp_prefer_static_anonymous_function = true:suggestion csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = false:error -csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent +csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent -dotnet_diagnostic.CA1507.severity = warning -dotnet_diagnostic.CA1805.severity = warning -dotnet_diagnostic.CA1841.severity = warning -dotnet_diagnostic.CA1865.severity = warning -dotnet_diagnostic.CA1866.severity = warning -dotnet_diagnostic.CA2016.severity = warning -dotnet_diagnostic.CA2263.severity = warning -dotnet_diagnostic.CA2244.severity = warning -dotnet_diagnostic.CA2246.severity = warning -dotnet_diagnostic.xUnit1050.severity = warning +dotnet_diagnostic.CA1507.severity = warning +dotnet_diagnostic.CA1805.severity = warning +dotnet_diagnostic.CA1841.severity = warning +dotnet_diagnostic.CA1865.severity = warning +dotnet_diagnostic.CA1866.severity = warning +dotnet_diagnostic.CA2016.severity = warning +dotnet_diagnostic.CA2263.severity = warning +dotnet_diagnostic.CA2244.severity = warning +dotnet_diagnostic.CA2246.severity = warning +dotnet_diagnostic.xUnit1050.severity = warning [*.{cs,vb}] -dotnet_style_operator_placement_when_wrapping = beginning_of_line -tab_width = 4 -indent_size = 4 -end_of_line = crlf -dotnet_style_coalesce_expression = true:warning -dotnet_style_null_propagation = true:warning +dotnet_style_operator_placement_when_wrapping = beginning_of_line +tab_width = 4 +indent_size = 4 +end_of_line = crlf +dotnet_style_coalesce_expression = true:warning +dotnet_style_null_propagation = true:warning dotnet_style_prefer_is_null_check_over_reference_equality_method = true:error -true:warning -dotnet_style_prefer_auto_properties = true:warning -dotnet_style_object_initializer = true:error -dotnet_style_collection_initializer = true:error -dotnet_style_prefer_simplified_boolean_expressions = true:error -dotnet_style_prefer_conditional_expression_over_assignment = true:error -dotnet_style_explicit_tuple_names = true:error -dotnet_style_prefer_conditional_expression_over_return = true:error -dotnet_style_prefer_inferred_tuple_names = true:error -dotnet_style_prefer_inferred_anonymous_type_member_names = true:error -dotnet_style_prefer_compound_assignment = true:error -dotnet_style_prefer_simplified_interpolation = true:suggestion -dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion -when_types_loosely_match:suggestion -dotnet_style_namespace_match_folder = true:error -dotnet_style_readonly_field = true:warning -dotnet_style_predefined_type_for_member_access = true:silent -dotnet_style_predefined_type_for_locals_parameters_members = true:silent -dotnet_style_require_accessibility_modifiers = always:error -for_non_interface_members:silent -dotnet_style_allow_multiple_blank_lines_experimental = false:error +true: +warning +dotnet_style_prefer_auto_properties = true:warning +dotnet_style_object_initializer = true:error +dotnet_style_collection_initializer = true:error +dotnet_style_prefer_simplified_boolean_expressions = true:error +dotnet_style_prefer_conditional_expression_over_assignment = true:error +dotnet_style_explicit_tuple_names = true:error +dotnet_style_prefer_conditional_expression_over_return = true:error +dotnet_style_prefer_inferred_tuple_names = true:error +dotnet_style_prefer_inferred_anonymous_type_member_names = true:error +dotnet_style_prefer_compound_assignment = true:error +dotnet_style_prefer_simplified_interpolation = true:suggestion +dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion +when_types_loosely_match: +suggestion +dotnet_style_namespace_match_folder = true:error +dotnet_style_readonly_field = true:warning +dotnet_style_predefined_type_for_member_access = true:silent +dotnet_style_predefined_type_for_locals_parameters_members = true:silent +dotnet_style_require_accessibility_modifiers = always:error +for_non_interface_members: +silent +dotnet_style_allow_multiple_blank_lines_experimental = false:error dotnet_style_allow_statement_immediately_after_block_experimental = false:error -false:warning -dotnet_code_quality_unused_parameters = all:error -dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent -always_for_clarity:warning -dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent -always_for_clarity:warning -dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent -always_for_clarity:warning -dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent -dotnet_style_qualification_for_field = false:silent -dotnet_style_qualification_for_property = false:error -dotnet_style_qualification_for_method = false:error -dotnet_style_qualification_for_event = false:error -dotnet_diagnostic.CA1040.severity = none -dotnet_diagnostic.CA1063.severity = error -dotnet_diagnostic.CA1069.severity = error -dotnet_diagnostic.CA1502.severity = error -dotnet_diagnostic.CA1506.severity = error -dotnet_diagnostic.CA1510.severity = warning -dotnet_diagnostic.CA1511.severity = warning -dotnet_diagnostic.CA1512.severity = warning -dotnet_diagnostic.CA1514.severity = warning -dotnet_diagnostic.CA1513.severity = warning -dotnet_diagnostic.CA1806.severity = warning -dotnet_diagnostic.CA1827.severity = warning -dotnet_diagnostic.CA1828.severity = warning -dotnet_diagnostic.CA1829.severity = warning -dotnet_diagnostic.CA1830.severity = warning -dotnet_diagnostic.CA1832.severity = warning -dotnet_diagnostic.CA1833.severity = warning -dotnet_diagnostic.CA1834.severity = warning -dotnet_diagnostic.CA1836.severity = warning -dotnet_diagnostic.CA1846.severity = warning -dotnet_diagnostic.CA1847.severity = warning -dotnet_diagnostic.CA1852.severity = warning -dotnet_diagnostic.CA1853.severity = warning -dotnet_diagnostic.CA1864.severity = warning -dotnet_diagnostic.CA1869.severity = warning -dotnet_diagnostic.CA2011.severity = warning -dotnet_diagnostic.CA2012.severity = warning -dotnet_diagnostic.CA5350.severity = warning -dotnet_diagnostic.CA5351.severity = warning -dotnet_diagnostic.CA5384.severity = warning -dotnet_diagnostic.CA5385.severity = warning -dotnet_diagnostic.CA5397.severity = warning -dotnet_diagnostic.CA1816.severity = warning -dotnet_diagnostic.CA2201.severity = warning -dotnet_diagnostic.CA2208.severity = warning -dotnet_diagnostic.CA2211.severity = warning -dotnet_diagnostic.CA2215.severity = warning -dotnet_diagnostic.CA2219.severity = warning -dotnet_diagnostic.CA2231.severity = warning -dotnet_diagnostic.CA2241.severity = warning -dotnet_diagnostic.CA2242.severity = warning -dotnet_diagnostic.CA2245.severity = warning -dotnet_diagnostic.CA2248.severity = warning -dotnet_diagnostic.CA2249.severity = warning -dotnet_diagnostic.CA2253.severity = warning -dotnet_diagnostic.CA2262.severity = warning \ No newline at end of file +false: +warning +dotnet_code_quality_unused_parameters = all:error +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent +always_for_clarity: +warning +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent +always_for_clarity: +warning +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent +always_for_clarity: +warning +dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent +dotnet_style_qualification_for_field = false:silent +dotnet_style_qualification_for_property = false:error +dotnet_style_qualification_for_method = false:error +dotnet_style_qualification_for_event = false:error +dotnet_diagnostic.CA1040.severity = none +dotnet_diagnostic.CA1063.severity = error +dotnet_diagnostic.CA1069.severity = error +dotnet_diagnostic.CA1502.severity = error +dotnet_diagnostic.CA1506.severity = error +dotnet_diagnostic.CA1510.severity = warning +dotnet_diagnostic.CA1511.severity = warning +dotnet_diagnostic.CA1512.severity = warning +dotnet_diagnostic.CA1514.severity = warning +dotnet_diagnostic.CA1513.severity = warning +dotnet_diagnostic.CA1806.severity = warning +dotnet_diagnostic.CA1827.severity = warning +dotnet_diagnostic.CA1828.severity = warning +dotnet_diagnostic.CA1829.severity = warning +dotnet_diagnostic.CA1830.severity = warning +dotnet_diagnostic.CA1832.severity = warning +dotnet_diagnostic.CA1833.severity = warning +dotnet_diagnostic.CA1834.severity = warning +dotnet_diagnostic.CA1836.severity = warning +dotnet_diagnostic.CA1846.severity = warning +dotnet_diagnostic.CA1847.severity = warning +dotnet_diagnostic.CA1852.severity = warning +dotnet_diagnostic.CA1853.severity = warning +dotnet_diagnostic.CA1864.severity = warning +dotnet_diagnostic.CA1869.severity = warning +dotnet_diagnostic.CA2011.severity = warning +dotnet_diagnostic.CA2012.severity = warning +dotnet_diagnostic.CA5350.severity = warning +dotnet_diagnostic.CA5351.severity = warning +dotnet_diagnostic.CA5384.severity = warning +dotnet_diagnostic.CA5385.severity = warning +dotnet_diagnostic.CA5397.severity = warning +dotnet_diagnostic.CA1816.severity = warning +dotnet_diagnostic.CA2201.severity = warning +dotnet_diagnostic.CA2208.severity = warning +dotnet_diagnostic.CA2211.severity = warning +dotnet_diagnostic.CA2215.severity = warning +dotnet_diagnostic.CA2219.severity = warning +dotnet_diagnostic.CA2231.severity = warning +dotnet_diagnostic.CA2241.severity = warning +dotnet_diagnostic.CA2242.severity = warning +dotnet_diagnostic.CA2245.severity = warning +dotnet_diagnostic.CA2248.severity = warning +dotnet_diagnostic.CA2249.severity = warning +dotnet_diagnostic.CA2253.severity = warning +dotnet_diagnostic.CA2262.severity = warning diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.csproj b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.csproj index 54a65db..5819eaa 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.csproj +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.csproj @@ -20,14 +20,14 @@ - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -35,14 +35,14 @@ - - + + - + diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index c26f8b8..0933294 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -17,52 +17,52 @@ - + - + - + - + - - - + + + - - - - - - - + + + + + + + - - - + + + - A lot of variations of this method have been tried, but none of them worked as expected. - This one does not work as we're using SQLite for testing, and it does not support DateTimeOffset. + A lot of variations of this method have been tried, but none of them worked as expected. + This one does not work as we're using SQLite for testing, and it does not support DateTimeOffset. @@ -71,7 +71,9 @@ - The class + The + + class The list of files in the dB @@ -118,28 +120,28 @@ - + - + - + - + - + - + - + - + @@ -162,23 +164,25 @@ - - - - + + + + - - - - + + + + - The class defines the fields that will be mapped from the vw_DuplicateDetails in the database + The + + class defines the fields that will be mapped from the vw_DuplicateDetails in the database @@ -350,7 +354,7 @@ - + @@ -359,26 +363,52 @@ The name of the event type. - + - + - Overloads the equality operator to compare two objects. + Overloads the equality operator to compare two + + objects. - The first to compare. - The second to compare. - true if the two objects are equal; otherwise, false. + The first + + to compare. + + The second + + to compare. + + + true + if the two + + objects are equal; otherwise, false. + - Overloads the inequality operator to compare two objects. + Overloads the inequality operator to compare two + + objects. - The first to compare. - The second to compare. - true if the two objects are not equal; otherwise, false. + The first + + to compare. + + The second + + to compare. + + + true + if the two + + objects are not equal; otherwise, false. + @@ -496,43 +526,43 @@ - - - - + + + + - - - - + + + + - - - - - + + + + + - - - - - + + + + + - Defines the FileId + Defines the FileId The value of the File Id - Defines the FileId + Defines the FileId The value of the File Id @@ -540,23 +570,23 @@ The value of the File Id - - - - + + + + - - - - + + + + - + @@ -597,7 +627,9 @@ - The Create method will return a populated instance of the class + The Create method will return a populated instance of the + + class The length of the file @@ -609,7 +641,7 @@ The width of the file if an image - A populated instance of . + A populated instance of. @@ -631,13 +663,18 @@ Height, Width and Length - making this more of an ImageComparer... - An instance of the class to compare + An instance of the + + class to compare - The other instance of the class to compare + The other instance of the + + class to compare - true if the files are deemed to be the same size, false otherwise + true + if the files are deemed to be the same size, false otherwise @@ -646,7 +683,9 @@ method - The to calculate the appropriate hash-code for + The + + to calculate the appropriate hash-code for The hash-code, combined from the relevant properties own hash-codes diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs index a78732d..cef4787 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs @@ -7,10 +7,8 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data.Configurations; internal sealed class DirectoryNameConfiguration : IComplexPropertyConfiguration { - public void Configure(ComplexPropertyBuilder builder) - { + public void Configure(ComplexPropertyBuilder builder) => builder.Property(directoryName => directoryName.Value) - .HasColumnName("DirectoryName") - .HasColumnType("nvarchar(256)"); - } + .HasColumnName("DirectoryName") + .HasColumnType("nvarchar(256)"); } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs index 9af26af..333d543 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs @@ -31,9 +31,10 @@ public void Configure(EntityTypeBuilder builder) .HasConversion(fileHandle => fileHandle.Value, fileHandle => new (fileHandle)); builder.ComplexProperty(fileDetail => fileDetail.ImageDetail) - .Configure(new ImageDetailConfiguration()); + .Configure(new ImageDetailConfiguration()); + builder.ComplexProperty(fileDetail => fileDetail.DirectoryName) - .Configure(new DirectoryNameConfiguration()); + .Configure(new DirectoryNameConfiguration()); builder.ComplexProperty(fileDetail => fileDetail.DeletionStatus) .Configure(new DeletionStatusConfiguration()); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs index 5f1562a..ae091c1 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs @@ -4,12 +4,10 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data; /// -/// /// public static class FileDetailDirectoryNameExtensions { /// - /// /// /// /// diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs index 1d9d744..a3f811b 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs @@ -3,13 +3,12 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data; /// -/// /// public static class FileDetailLastViewedExtensions { /// - /// A lot of variations of this method have been tried, but none of them worked as expected. - /// This one does not work as we're using SQLite for testing, and it does not support DateTimeOffset. + /// A lot of variations of this method have been tried, but none of them worked as expected. + /// This one does not work as we're using SQLite for testing, and it does not support DateTimeOffset. /// /// /// diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs index 8cb5796..44d6932 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs @@ -60,11 +60,12 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) _ = modelBuilder.UseCollation("SQL_Latin1_General_CP1_CI_AS"); _ = modelBuilder.HasDefaultSchema(Constants.SchemaName); _ = modelBuilder.ApplyConfigurationsFromAssembly(typeof(FilesContext).Assembly); + _ = modelBuilder .Entity(eb => - { - eb.HasNoKey(); - eb.ToView("vw_DuplicateDetails"); - }); + { + eb.HasNoKey(); + eb.ToView("vw_DuplicateDetails"); + }); } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs index d1dba48..29deaa5 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs @@ -1,7 +1,6 @@ namespace AStar.Dev.Infrastructure.FilesDb.Models; /// -/// /// /// public readonly record struct DirectoryName(string Value); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileHandle.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileHandle.cs index c38a1b9..0c1c46c 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileHandle.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileHandle.cs @@ -1,20 +1,17 @@ namespace AStar.Dev.Infrastructure.FilesDb.Models; /// -/// /// /// public readonly record struct FileHandle(string Value) { /// - /// /// /// /// - public static FileHandle Create(string value) => string.IsNullOrWhiteSpace(value) ? throw new ArgumentException($"Value cannot be null or whitespace.", nameof(value)) : new FileHandle(value); + public static FileHandle Create(string value) => string.IsNullOrWhiteSpace(value) ? throw new ArgumentException("Value cannot be null or whitespace.", nameof(value)) : new FileHandle(value); /// - /// /// /// /// diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileId.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileId.cs index 607f2de..b96e742 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileId.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileId.cs @@ -1,7 +1,7 @@ namespace AStar.Dev.Infrastructure.FilesDb.Models; /// -/// Defines the FileId +/// Defines the FileId /// /// The value of the File Id public readonly record struct FileId(int Value); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs index 8d94d3c..c3efb50 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs @@ -1,13 +1,11 @@ namespace AStar.Dev.Infrastructure.FilesDb.Models; /// -/// /// /// public readonly record struct FileName(string Value) { /// - /// /// /// public override string ToString() => Value; diff --git a/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml b/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml index ff74872..80a632b 100644 --- a/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml +++ b/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml @@ -6,7 +6,8 @@ - The class is used to aid configuring the + The class is used to aid configuring the + @@ -21,7 +22,9 @@ - The class defines the audit properties to be set on all relevant entities + The + + class defines the audit properties to be set on all relevant entities diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs index 5230163..b737cb0 100644 --- a/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs @@ -6,6 +6,21 @@ namespace AStar.Dev.Infrastructure.Tests.Unit; public class ComplexPropertyBuilderConfigurationShould { + [Fact] + public void Configure_ShouldInvokeConfigurationAndReturnSameBuilder() + { + var modelBuilder = new ModelBuilder(); + var entityBuilder = modelBuilder.Entity(); + var complexBuilder = entityBuilder.ComplexProperty(e => e.Address); + + var config = new TestConfiguration(); + + var result = complexBuilder.Configure(config); + + Assert.True(config.WasCalled); + Assert.Same(complexBuilder, result); + } + private sealed class DummyEntity { public Address Address { get; set; } = new(); @@ -22,19 +37,4 @@ private sealed class TestConfiguration : IComplexPropertyConfiguration
public void Configure(ComplexPropertyBuilder
builder) => WasCalled = true; } - - [Fact] - public void Configure_ShouldInvokeConfigurationAndReturnSameBuilder() - { - var modelBuilder = new ModelBuilder(); - var entityBuilder = modelBuilder.Entity(); - var complexBuilder = entityBuilder.ComplexProperty(e => e.Address); - - var config = new TestConfiguration(); - - var result = complexBuilder.Configure(config); - - Assert.True(config.WasCalled); - Assert.Same(complexBuilder, result); - } } diff --git a/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs index 689c576..e5a0feb 100644 --- a/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs +++ b/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs @@ -2,12 +2,12 @@ public sealed class StringExtensionsShould { - private const string AnyJson = "{\"AnyInt\":0,\"AnyString\":\"\"}"; - private const string NotNullString = "value does not matter"; + private const string AnyJson = "{\"AnyInt\":0,\"AnyString\":\"\"}"; + private const string NotNullString = "value does not matter"; + private const string WhitespaceString = " "; #pragma warning disable CA1805 private readonly string? nullString = null; #pragma warning restore CA1805 - private const string WhitespaceString = " "; [Fact] public void ContainTheIsNullMethodWhichReturnsTheResult() => From a173ab8782bc88c04a2e515e0861591a9d4325ad Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Tue, 29 Jul 2025 22:16:26 +0100 Subject: [PATCH 2/9] Update migrations and continue with FileDetail extensions --- .../AStar.Dev.Infrastructure.FilesDb.xml | 90 ++++- .../Configurations/FileDetailConfiguration.cs | 9 +- .../Configurations/FileNameConfiguration.cs | 14 + .../FileDetailDeletionStatusExtensions.cs | 7 + .../Data/FileDetailDirectoryNameExtensions.cs | 8 +- .../Data/FileDetailLastViewedExtensions.cs | 8 +- .../Data/FileDetailOrderingExtensions.cs | 7 + .../Data/FileDetailPagingExtensions.cs | 7 + .../Data/FileDetailSearchTypeExtensions.cs | 7 + .../Data/FileDetailTextContainsExtensions.cs | 18 + .../Data/FilesContext.cs | 6 + ...35_UpdateFileNameConfiguration.Designer.cs | 353 ++++++++++++++++++ ...50729201535_UpdateFileNameConfiguration.cs | 29 ++ ...729202510_AddFileDetailIndexes.Designer.cs | 353 ++++++++++++++++++ .../20250729202510_AddFileDetailIndexes.cs | 22 ++ .../Migrations/FilesContextModelSnapshot.cs | 14 +- .../Models/DirectoryName.cs | 7 +- .../Models/FileDetail.cs | 4 +- .../Models/FileName.cs | 7 +- .../MockFilesContextFactory.cs | 2 +- support/DbContextHelpers/TestData/files.json | 8 +- ...ileDetailDeletionStatusExtensionsShould.cs | 12 + .../FileDetailOrderingExtensionsShould.cs | 12 + .../FileDetailPagingExtensionsShould.cs | 12 + .../FileDetailSearchTypeExtensionsShould.cs | 12 + .../FileDetailTextContainsExtensionsShould.cs | 64 ++++ .../Models/DirectoryNameShould.cs | 2 +- .../Models/FileDetailShould.cs | 11 +- .../Models/FileNameShould.cs | 2 +- 29 files changed, 1059 insertions(+), 48 deletions(-) create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileNameConfiguration.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailTextContainsExtensions.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.Designer.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.Designer.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index 0933294..fdea472 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -40,23 +40,25 @@ - + + + + + - - + - @@ -64,11 +66,38 @@ A lot of variations of this method have been tried, but none of them worked as expected. This one does not work as we're using SQLite for testing, and it does not support DateTimeOffset. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + The @@ -112,6 +141,12 @@ Gets or sets the Duplicate Details + + + + + + The overridden OnModelCreating method @@ -143,6 +178,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Defines dates/times for soft and hard deletion @@ -165,13 +236,11 @@ - - @@ -527,13 +596,11 @@ - - @@ -542,14 +609,12 @@ - - @@ -571,13 +636,11 @@ - - @@ -586,7 +649,6 @@ - diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs index 333d543..c5aab70 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs @@ -19,10 +19,7 @@ public void Configure(EntityTypeBuilder builder) builder.Property(file => file.Id) .HasConversion(fileId => fileId.Value, fileId => new (fileId)); - builder.Property(file => file.FileName) - .HasColumnType("nvarchar(256)") - .HasConversion(fileName => fileName.Value, fileName => new (fileName)); - + builder.Ignore(fileDetail => fileDetail.FileName); builder.Ignore(fileDetail => fileDetail.DirectoryName); builder.Ignore(fileDetail => fileDetail.FullNameWithPath); @@ -36,12 +33,14 @@ public void Configure(EntityTypeBuilder builder) builder.ComplexProperty(fileDetail => fileDetail.DirectoryName) .Configure(new DirectoryNameConfiguration()); + builder.ComplexProperty(fileDetail => fileDetail.FileName) + .Configure(new FileNameConfiguration()); + builder.ComplexProperty(fileDetail => fileDetail.DeletionStatus) .Configure(new DeletionStatusConfiguration()); // Will want the handle to be unique, but not yet builder.HasIndex(fileDetail => fileDetail.FileHandle); - builder.HasIndex(fileDetail => fileDetail.FileName); builder.HasIndex(fileDetail => fileDetail.FileSize); } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileNameConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileNameConfiguration.cs new file mode 100644 index 0000000..d2e5a05 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileNameConfiguration.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.Data.Configurations; +using AStar.Dev.Infrastructure.FilesDb.Models; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; + +namespace AStar.Dev.Infrastructure.FilesDb.Data.Configurations; + +internal sealed class FileNameConfiguration : IComplexPropertyConfiguration +{ + public void Configure(ComplexPropertyBuilder builder) => + builder.Property(fileName => fileName.Value) + .HasColumnName("FileName") + .HasColumnType("nvarchar(256)"); +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs new file mode 100644 index 0000000..0fcdf5c --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs @@ -0,0 +1,7 @@ +namespace AStar.Dev.Infrastructure.FilesDb.Data; + +/// +/// +public class FileDetailDeletionStatusExtensions +{ +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs index ae091c1..82e08f7 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDirectoryNameExtensions.cs @@ -9,12 +9,12 @@ public static class FileDetailDirectoryNameExtensions { /// /// - /// + /// /// /// /// - public static IQueryable WhereDirectoryNameMatches(this IQueryable filesContext, string directoryName, bool includeSubDirectories) => + public static IQueryable WhereDirectoryNameMatches(this IQueryable files, string directoryName, bool includeSubDirectories) => includeSubDirectories - ? filesContext.Where(file => file.DirectoryName.Value.StartsWith(directoryName.RemoveTrailing(@"\"))) - : filesContext.Where(file => file.DirectoryName.Value == directoryName.RemoveTrailing(@"\")); + ? files.Where(file => file.DirectoryName.Value.Contains(directoryName.RemoveTrailing(@"\"))) + : files.Where(file => file.DirectoryName.Value == directoryName.RemoveTrailing(@"\")); } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs index a3f811b..5f8969d 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailLastViewedExtensions.cs @@ -10,12 +10,12 @@ public static class FileDetailLastViewedExtensions /// A lot of variations of this method have been tried, but none of them worked as expected. /// This one does not work as we're using SQLite for testing, and it does not support DateTimeOffset. /// - /// + /// /// /// /// - public static IQueryable WhereLastViewedIsOlderThan(this IQueryable filesContext, int days, TimeProvider time) + public static IQueryable WhereLastViewedIsOlderThan(this IQueryable files, int days, TimeProvider time) => days == 0 - ? filesContext - : filesContext.Where(file => !file.FileLastViewed.HasValue || file.FileLastViewed.Value <= time.GetUtcNow().AddDays(-days)); + ? files + : files.Where(file => !file.FileLastViewed.HasValue || file.FileLastViewed.Value <= time.GetUtcNow().AddDays(-days)); } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs new file mode 100644 index 0000000..d66f7f2 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs @@ -0,0 +1,7 @@ +namespace AStar.Dev.Infrastructure.FilesDb.Data; + +/// +/// +public class FileDetailOrderingExtensions +{ +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs new file mode 100644 index 0000000..a09733b --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs @@ -0,0 +1,7 @@ +namespace AStar.Dev.Infrastructure.FilesDb.Data; + +/// +/// +public class FileDetailPagingExtensions +{ +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs new file mode 100644 index 0000000..89a3a75 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs @@ -0,0 +1,7 @@ +namespace AStar.Dev.Infrastructure.FilesDb.Data; + +/// +/// +public class FileDetailSearchTypeExtensions +{ +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailTextContainsExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailTextContainsExtensions.cs new file mode 100644 index 0000000..69864ef --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailTextContainsExtensions.cs @@ -0,0 +1,18 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; + +namespace AStar.Dev.Infrastructure.FilesDb.Data; + +/// +/// +public static class FileDetailTextContainsExtensions +{ + /// + /// + /// + /// + /// + public static IQueryable SelectFilesMatching(this IQueryable files, string? searchText) + => string.IsNullOrEmpty(searchText) + ? files + : files.Where(file => file.DirectoryName.Value.Contains(searchText) || file.FileName.Value.Contains(searchText)); +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs index 44d6932..0e47023 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs @@ -50,6 +50,12 @@ public FilesContext() /// public DbSet DuplicateDetails { get; set; } + /// + /// + /// + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + => optionsBuilder.UseSqlServer("Server=localhost,33433;Database=filesDb;User Id=sa;Password=;TrustServerCertificate=true;"); + /// /// The overridden OnModelCreating method /// diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.Designer.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.Designer.cs new file mode 100644 index 0000000..38bb651 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.Designer.cs @@ -0,0 +1,353 @@ +// +using System; +using System.Collections.Generic; +using AStar.Dev.Infrastructure.FilesDb.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace AStar.Dev.Infrastructure.FilesDb.Migrations +{ + [DbContext(typeof(FilesContext))] + [Migration("20250729201535_UpdateFileNameConfiguration")] + partial class UpdateFileNameConfiguration + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasDefaultSchema("files") + .UseCollation("SQL_Latin1_General_CP1_CI_AS") + .HasAnnotation("ProductVersion", "9.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.DuplicateDetail", b => + { + b.Property("DirectoryName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileHandle") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileLastViewed") + .HasColumnType("datetimeoffset"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("HardDeletePending") + .HasColumnType("datetimeoffset"); + + b.Property("ImageHeight") + .HasColumnType("int"); + + b.Property("ImageWidth") + .HasColumnType("int"); + + b.Property("Instances") + .HasColumnType("int"); + + b.Property("IsImage") + .HasColumnType("bit"); + + b.Property("MoveRequired") + .HasColumnType("bit"); + + b.Property("SoftDeletePending") + .HasColumnType("datetimeoffset"); + + b.Property("SoftDeleted") + .HasColumnType("datetimeoffset"); + + b.Property("UpdatedOn") + .HasColumnType("datetimeoffset"); + + b.ToTable((string)null); + + b.ToView("vw_DuplicateDetails", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.Event", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("DirectoryName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("EventOccurredAt") + .HasColumnType("datetimeoffset"); + + b.Property("FileCreated") + .HasColumnType("datetimeoffset"); + + b.Property("FileLastModified") + .HasColumnType("datetimeoffset"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("Handle") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("Height") + .HasColumnType("int"); + + b.Property("UpdatedBy") + .IsRequired() + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("Width") + .HasColumnType("int"); + + b.ComplexProperty>("Type", "AStar.Dev.Infrastructure.FilesDb.Models.Event.Type#EventType", b1 => + { + b1.IsRequired(); + + b1.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("EventName"); + + b1.Property("Value") + .HasColumnType("int") + .HasColumnName("EventType"); + }); + + b.HasKey("Id"); + + b.ToTable("Event", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("Celebrity") + .HasColumnType("bit"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("nvarchar(150)"); + + b.HasKey("Id"); + + b.ToTable("FileClassification", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileDetail", b => + { + b.Property("Id") + .HasColumnType("int"); + + b.Property("FileCreated") + .HasColumnType("datetimeoffset"); + + b.Property("FileHandle") + .IsRequired() + .HasColumnType("nvarchar(256)"); + + b.Property("FileLastModified") + .HasColumnType("datetimeoffset"); + + b.Property("FileLastViewed") + .HasColumnType("datetimeoffset"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("IsImage") + .HasColumnType("bit"); + + b.Property("MoveRequired") + .HasColumnType("bit"); + + b.Property("UpdatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("UpdatedOn") + .HasColumnType("datetimeoffset"); + + b.ComplexProperty>("DeletionStatus", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.DeletionStatus#DeletionStatus", b1 => + { + b1.IsRequired(); + + b1.Property("HardDeletePending") + .HasColumnType("datetimeoffset") + .HasColumnName("HardDeletePending"); + + b1.Property("SoftDeletePending") + .HasColumnType("datetimeoffset") + .HasColumnName("SoftDeletePending"); + + b1.Property("SoftDeleted") + .HasColumnType("datetimeoffset") + .HasColumnName("SoftDeleted"); + }); + + b.ComplexProperty>("DirectoryName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.DirectoryName#DirectoryName", b1 => + { + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("DirectoryName"); + }); + + b.ComplexProperty>("FileName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.FileName#FileName", b1 => + { + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("FileName"); + }); + + b.ComplexProperty>("ImageDetail", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.ImageDetail#ImageDetail", b1 => + { + b1.IsRequired(); + + b1.Property("Height") + .HasColumnType("int") + .HasColumnName("ImageHeight"); + + b1.Property("Width") + .HasColumnType("int") + .HasColumnName("ImageWidth"); + }); + + b.HasKey("Id"); + + b.HasIndex("FileHandle"); + + b.HasIndex("FileSize"); + + b.ToTable("FileDetail", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("FileClassificationId") + .HasColumnType("int"); + + b.Property("Text") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("nvarchar(150)"); + + b.HasKey("Id"); + + b.HasIndex("FileClassificationId"); + + b.ToTable("FileNamePart", "files"); + }); + + modelBuilder.Entity("FileClassificationFileDetail", b => + { + b.Property("FileClassificationsId") + .HasColumnType("int"); + + b.Property("FileDetailsId") + .HasColumnType("int"); + + b.HasKey("FileClassificationsId", "FileDetailsId"); + + b.HasIndex("FileDetailsId"); + + b.ToTable("FileClassificationFileDetail", "files"); + }); + + modelBuilder.Entity("FileClassificationFileNamePart", b => + { + b.Property("FileClassificationsId") + .HasColumnType("int"); + + b.Property("FileNamePartsId") + .HasColumnType("int"); + + b.HasKey("FileClassificationsId", "FileNamePartsId"); + + b.HasIndex("FileNamePartsId"); + + b.ToTable("FileClassificationFileNamePart", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationId"); + }); + + modelBuilder.Entity("FileClassificationFileDetail", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileDetail", null) + .WithMany() + .HasForeignKey("FileDetailsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("FileClassificationFileNamePart", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", null) + .WithMany() + .HasForeignKey("FileNamePartsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.cs new file mode 100644 index 0000000..48bdfc7 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729201535_UpdateFileNameConfiguration.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace AStar.Dev.Infrastructure.FilesDb.Migrations +{ + /// + public partial class UpdateFileNameConfiguration : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropIndex( + name: "IX_FileDetail_FileName", + schema: "files", + table: "FileDetail"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateIndex( + name: "IX_FileDetail_FileName", + schema: "files", + table: "FileDetail", + column: "FileName"); + } + } +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.Designer.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.Designer.cs new file mode 100644 index 0000000..4b6b674 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.Designer.cs @@ -0,0 +1,353 @@ +// +using System; +using System.Collections.Generic; +using AStar.Dev.Infrastructure.FilesDb.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace AStar.Dev.Infrastructure.FilesDb.Migrations +{ + [DbContext(typeof(FilesContext))] + [Migration("20250729202510_AddFileDetailIndexes")] + partial class AddFileDetailIndexes + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasDefaultSchema("files") + .UseCollation("SQL_Latin1_General_CP1_CI_AS") + .HasAnnotation("ProductVersion", "9.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.DuplicateDetail", b => + { + b.Property("DirectoryName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileHandle") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileLastViewed") + .HasColumnType("datetimeoffset"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("HardDeletePending") + .HasColumnType("datetimeoffset"); + + b.Property("ImageHeight") + .HasColumnType("int"); + + b.Property("ImageWidth") + .HasColumnType("int"); + + b.Property("Instances") + .HasColumnType("int"); + + b.Property("IsImage") + .HasColumnType("bit"); + + b.Property("MoveRequired") + .HasColumnType("bit"); + + b.Property("SoftDeletePending") + .HasColumnType("datetimeoffset"); + + b.Property("SoftDeleted") + .HasColumnType("datetimeoffset"); + + b.Property("UpdatedOn") + .HasColumnType("datetimeoffset"); + + b.ToTable((string)null); + + b.ToView("vw_DuplicateDetails", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.Event", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("DirectoryName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("EventOccurredAt") + .HasColumnType("datetimeoffset"); + + b.Property("FileCreated") + .HasColumnType("datetimeoffset"); + + b.Property("FileLastModified") + .HasColumnType("datetimeoffset"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("Handle") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("Height") + .HasColumnType("int"); + + b.Property("UpdatedBy") + .IsRequired() + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("Width") + .HasColumnType("int"); + + b.ComplexProperty>("Type", "AStar.Dev.Infrastructure.FilesDb.Models.Event.Type#EventType", b1 => + { + b1.IsRequired(); + + b1.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("EventName"); + + b1.Property("Value") + .HasColumnType("int") + .HasColumnName("EventType"); + }); + + b.HasKey("Id"); + + b.ToTable("Event", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("Celebrity") + .HasColumnType("bit"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("nvarchar(150)"); + + b.HasKey("Id"); + + b.ToTable("FileClassification", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileDetail", b => + { + b.Property("Id") + .HasColumnType("int"); + + b.Property("FileCreated") + .HasColumnType("datetimeoffset"); + + b.Property("FileHandle") + .IsRequired() + .HasColumnType("nvarchar(256)"); + + b.Property("FileLastModified") + .HasColumnType("datetimeoffset"); + + b.Property("FileLastViewed") + .HasColumnType("datetimeoffset"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("IsImage") + .HasColumnType("bit"); + + b.Property("MoveRequired") + .HasColumnType("bit"); + + b.Property("UpdatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("UpdatedOn") + .HasColumnType("datetimeoffset"); + + b.ComplexProperty>("DeletionStatus", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.DeletionStatus#DeletionStatus", b1 => + { + b1.IsRequired(); + + b1.Property("HardDeletePending") + .HasColumnType("datetimeoffset") + .HasColumnName("HardDeletePending"); + + b1.Property("SoftDeletePending") + .HasColumnType("datetimeoffset") + .HasColumnName("SoftDeletePending"); + + b1.Property("SoftDeleted") + .HasColumnType("datetimeoffset") + .HasColumnName("SoftDeleted"); + }); + + b.ComplexProperty>("DirectoryName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.DirectoryName#DirectoryName", b1 => + { + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("DirectoryName"); + }); + + b.ComplexProperty>("FileName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.FileName#FileName", b1 => + { + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("FileName"); + }); + + b.ComplexProperty>("ImageDetail", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.ImageDetail#ImageDetail", b1 => + { + b1.IsRequired(); + + b1.Property("Height") + .HasColumnType("int") + .HasColumnName("ImageHeight"); + + b1.Property("Width") + .HasColumnType("int") + .HasColumnName("ImageWidth"); + }); + + b.HasKey("Id"); + + b.HasIndex("FileHandle"); + + b.HasIndex("FileSize"); + + b.ToTable("FileDetail", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("FileClassificationId") + .HasColumnType("int"); + + b.Property("Text") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("nvarchar(150)"); + + b.HasKey("Id"); + + b.HasIndex("FileClassificationId"); + + b.ToTable("FileNamePart", "files"); + }); + + modelBuilder.Entity("FileClassificationFileDetail", b => + { + b.Property("FileClassificationsId") + .HasColumnType("int"); + + b.Property("FileDetailsId") + .HasColumnType("int"); + + b.HasKey("FileClassificationsId", "FileDetailsId"); + + b.HasIndex("FileDetailsId"); + + b.ToTable("FileClassificationFileDetail", "files"); + }); + + modelBuilder.Entity("FileClassificationFileNamePart", b => + { + b.Property("FileClassificationsId") + .HasColumnType("int"); + + b.Property("FileNamePartsId") + .HasColumnType("int"); + + b.HasKey("FileClassificationsId", "FileNamePartsId"); + + b.HasIndex("FileNamePartsId"); + + b.ToTable("FileClassificationFileNamePart", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationId"); + }); + + modelBuilder.Entity("FileClassificationFileDetail", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileDetail", null) + .WithMany() + .HasForeignKey("FileDetailsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("FileClassificationFileNamePart", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", null) + .WithMany() + .HasForeignKey("FileNamePartsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.cs new file mode 100644 index 0000000..a054938 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250729202510_AddFileDetailIndexes.cs @@ -0,0 +1,22 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace AStar.Dev.Infrastructure.FilesDb.Migrations +{ + /// + public partial class AddFileDetailIndexes : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + + } + } +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs index 0304430..bd451cc 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs @@ -184,10 +184,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("FileLastViewed") .HasColumnType("datetimeoffset"); - b.Property("FileName") - .IsRequired() - .HasColumnType("nvarchar(256)"); - b.Property("FileSize") .HasColumnType("bigint"); @@ -229,6 +225,14 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnName("DirectoryName"); }); + b.ComplexProperty>("FileName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.FileName#FileName", b1 => + { + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("FileName"); + }); + b.ComplexProperty>("ImageDetail", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.ImageDetail#ImageDetail", b1 => { b1.IsRequired(); @@ -246,8 +250,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.HasIndex("FileHandle"); - b.HasIndex("FileName"); - b.HasIndex("FileSize"); b.ToTable("FileDetail", "files"); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs index 29deaa5..1a7cc70 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs @@ -1,6 +1,9 @@ -namespace AStar.Dev.Infrastructure.FilesDb.Models; +using Microsoft.EntityFrameworkCore; + +namespace AStar.Dev.Infrastructure.FilesDb.Models; /// /// /// -public readonly record struct DirectoryName(string Value); +[Index(nameof(Value))] +public record DirectoryName(string Value); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs index b453eb9..cc0c084 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs @@ -45,12 +45,12 @@ public FileDetail(IFileInfo fileInfo) /// /// Gets or sets the file name. I know, shocking... /// - public FileName FileName { get; set; } + public required FileName FileName { get; set; } /// /// Gets or sets the name of the directory containing the file detail. I know, shocking... /// - public DirectoryName DirectoryName { get; set; } + public required DirectoryName DirectoryName { get; set; } /// /// Gets the full name of the file with the path combined diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs index c3efb50..ee5d5ce 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileName.cs @@ -1,9 +1,12 @@ -namespace AStar.Dev.Infrastructure.FilesDb.Models; +using Microsoft.EntityFrameworkCore; + +namespace AStar.Dev.Infrastructure.FilesDb.Models; /// /// /// -public readonly record struct FileName(string Value) +[Index(nameof(Value))] +public record FileName(string Value) { /// /// diff --git a/support/DbContextHelpers/MockFilesContextFactory.cs b/support/DbContextHelpers/MockFilesContextFactory.cs index 91da4b7..a7165be 100644 --- a/support/DbContextHelpers/MockFilesContextFactory.cs +++ b/support/DbContextHelpers/MockFilesContextFactory.cs @@ -14,7 +14,7 @@ public static async Task CreateMockFilesContextAsync() var optionsBuilder = new DbContextOptionsBuilder(); var config = TestSetup.ServiceProvider.GetRequiredService(); var connectionString = config.GetConnectionString("SqlServer"); - optionsBuilder.UseSqlServer(connectionString); + optionsBuilder.UseSqlServer(connectionString, contextOptionsBuilder => contextOptionsBuilder.EnableRetryOnFailure(3, TimeSpan.FromSeconds(10), null)); var testFilesContext = new FilesContext(optionsBuilder.Options); try diff --git a/support/DbContextHelpers/TestData/files.json b/support/DbContextHelpers/TestData/files.json index 7410055..10c49a9 100644 --- a/support/DbContextHelpers/TestData/files.json +++ b/support/DbContextHelpers/TestData/files.json @@ -9,12 +9,12 @@ "height": 6601 }, "fileName": { - "value": "\\some\\file.txt" + "value": "file.txt" }, "directoryName": { - "value": "\\some\\directory" + "value": "directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\directory\\file.txt", "fileSize": 91801, "isImage": false, "fileHandle": { @@ -65999,4 +65999,4 @@ "updatedBy": "Jay Barden", "updatedOn": "2025-07-21T09:31:02.6370028+00:00" } -] \ No newline at end of file +] diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs new file mode 100644 index 0000000..fb40cc5 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs @@ -0,0 +1,12 @@ +using DbContextHelpers.Fixtures; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; + +/// +/// +public class FileDetailDeletionStatusExtensionsShould : IClassFixture +{ + private readonly FilesContextFixture filesContextFixture; + + public FileDetailDeletionStatusExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs new file mode 100644 index 0000000..d4975b9 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs @@ -0,0 +1,12 @@ +using DbContextHelpers.Fixtures; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; + +/// +/// +public class FileDetailOrderingExtensionsShould : IClassFixture +{ + private readonly FilesContextFixture filesContextFixture; + + public FileDetailOrderingExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs new file mode 100644 index 0000000..1782436 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs @@ -0,0 +1,12 @@ +using DbContextHelpers.Fixtures; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; + +/// +/// +public class FileDetailPagingExtensionsShould : IClassFixture +{ + private readonly FilesContextFixture filesContextFixture; + + public FileDetailPagingExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs new file mode 100644 index 0000000..666d417 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs @@ -0,0 +1,12 @@ +using DbContextHelpers.Fixtures; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; + +/// +/// +public class FileDetailSearchTypeExtensionsShould : IClassFixture +{ + private readonly FilesContextFixture filesContextFixture; + + public FileDetailSearchTypeExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs new file mode 100644 index 0000000..b281522 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs @@ -0,0 +1,64 @@ +using AStar.Dev.Infrastructure.FilesDb.Data; +using DbContextHelpers.Fixtures; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; + +/// +/// +public class FileDetailTextContainsExtensionsShould : IClassFixture +{ + private readonly FilesContextFixture filesContextFixture; + + public FileDetailTextContainsExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; + + [Fact] + public void ReturnTheExpectedFilesMatchingTheSuppliedTextWhenExistsInTheDirectoryNameOnly() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.SelectFilesMatching("with"); + + result.Count().ShouldBe(1084); + } + + [Fact] + public void ReturnTheExpectedFilesMatchingTheSuppliedTextWhenExistsInTheFileNameOnly() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.SelectFilesMatching("file.gif"); + + result.Count().ShouldBe(457); + } + + [Fact] + public void ReturnTheExpectedFilesMatchingTheSuppliedTextWhenExistsInTheDirectoryNameAndTheFileName() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.SelectFilesMatching("some"); + + result.Count().ShouldBe(1999); + } + + [Fact] + public void ReturnNoFilesWhenTheSuppliedTextDoesntExistsInTheDirectoryNameOrTheFileName() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.SelectFilesMatching("search-text that wont match"); + + result.Count().ShouldBe(0); + } + + [Fact] + public void ReturnAllFilesWhenTheSuppliedTextIsNull() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.SelectFilesMatching(null); + + result.Count().ShouldBe(2000); + } +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs index 9d949c5..7ca7500 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs @@ -8,7 +8,7 @@ public class DirectoryNameShould { [Fact] public void ContainTheExpectedProperties() - => new DirectoryName { Value = "test" } + => new DirectoryName ( "test") .ToJson() .ShouldMatchApproved(); } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs index 60d5a81..c39507d 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs @@ -29,8 +29,15 @@ public void ContainTheExpectedProperties() Celebrity = true, Id = 1, Name = "Celebrity", - FileDetails = - new List { new () { DirectoryName = new ("mock-directory-name2") , UpdatedOn = new (2025, 07, 28, 1, 2, 3, TimeSpan.Zero) } }, + FileDetails = new List + { + new () + { + DirectoryName = new ("mock-directory-name2") , + FileName = new("mock-file-name"), + UpdatedOn = new (2025, 07, 28, 1, 2, 3, TimeSpan.Zero) + } + }, FileNameParts = new List { new () { Text = "mock-file-name-part" } } } }, diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs index d959946..924e2d3 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs @@ -8,7 +8,7 @@ public class FileNameShould { [Fact] public void ContainTheExpectedProperties() - => new FileName { Value = "mock-file-name" } + => new FileName ("mock-file-name") .ToJson() .ShouldMatchApproved(); } From aaa269513bcdfb8950e97715f2ce7ece979a2084 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Tue, 29 Jul 2025 22:21:30 +0100 Subject: [PATCH 3/9] Fix missed test --- .../AStar.Dev.Infrastructure.FilesDb.xml | 18 ------------------ ...d.ContainTheExpectedProperties.approved.txt | 4 ++-- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index fdea472..32aa4d0 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -42,7 +42,6 @@ - @@ -73,22 +72,18 @@ - - - - @@ -143,7 +138,6 @@ - @@ -202,18 +196,6 @@ - - - - - - - - - - - - Defines dates/times for soft and hard deletion diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt index e9f45f9..58a47cc 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt @@ -14,12 +14,12 @@ "height": null }, "fileName": { - "value": null + "value": "mock-file-name" }, "directoryName": { "value": "mock-directory-name2" }, - "fullNameWithPath": "mock-directory-name2", + "fullNameWithPath": "mock-directory-name2/mock-file-name", "fileSize": 0, "isImage": false, "fileHandle": { From 0e3a047c432c78814a3e30a7e2df4f85b583e8c6 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Tue, 29 Jul 2025 22:31:58 +0100 Subject: [PATCH 4/9] Glad that the password isn't for production! Or, for that matter anywhere but still... Oops! --- src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs index 0e47023..44d6932 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs @@ -50,12 +50,6 @@ public FilesContext() /// public DbSet DuplicateDetails { get; set; } - /// - /// - /// - protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) - => optionsBuilder.UseSqlServer("Server=localhost,33433;Database=filesDb;User Id=sa;Password=;TrustServerCertificate=true;"); - /// /// The overridden OnModelCreating method /// From c18c62361f1cd1a2cbfb131021315a53514de107 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Tue, 29 Jul 2025 22:46:21 +0100 Subject: [PATCH 5/9] Quite possibly pointless but playing with separating the Sonar step --- .github/workflows/main_astar-dev.yml | 15 ++++++++++++--- .../AStar.Dev.Infrastructure.FilesDb.xml | 5 ----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main_astar-dev.yml b/.github/workflows/main_astar-dev.yml index 0001e63..64f9f92 100644 --- a/.github/workflows/main_astar-dev.yml +++ b/.github/workflows/main_astar-dev.yml @@ -1,4 +1,4 @@ -name: Build .NET Core application +name: Build and analyse the DatabaseTesting Solution on: pull_request: types: [ opened, synchronize, reopened ] @@ -50,14 +50,23 @@ jobs: New-Item -Path .\.sonar\scanner -ItemType Directory dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner - - name: 🔍 Restore, 🛠 Build and 🧪 Test with ☁️ SonarCloud / Qube + - name: 🔍 Restore, + shell: powershell + run: | + dotnet restore + + - name: 🛠 Build + shell: powershell + run: | + dotnet build --no-restore + + - name: 🧪 Test and analyse with ☁️ SonarCloud / Qube env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} shell: powershell run: | dotnet tool install --global dotnet-coverage .\.sonar\scanner\dotnet-sonarscanner begin /k:"astar-development_astar-dev-database-testing" /o:"astar-development" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.scanner.scanAll=false /d:sonar.scanner.skipJreProvisioning=true - dotnet build dotnet-coverage collect 'dotnet test --filter "FullyQualifiedName!~Tests.EndToEnd"' -f xml -o 'coverage.xml' .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" # diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index 32aa4d0..9ae7dcc 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -136,11 +136,6 @@ Gets or sets the Duplicate Details - - - - - The overridden OnModelCreating method From 46862adcbdca3cda998bdbc5ce08c07105f19c73 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Fri, 8 Aug 2025 21:52:25 +0100 Subject: [PATCH 6/9] Bring in offline updates --- .../AStar.Dev.Infrastructure.FilesDb.xml | 102 ++++- .../Configurations/FileDetailConfiguration.cs | 10 +- .../FileDetailDeletionStatusExtensions.cs | 15 +- .../Data/FileDetailOrderingExtensions.cs | 19 +- .../Data/FileDetailPagingExtensions.cs | 29 +- .../Data/FileDetailSearchTypeExtensions.cs | 23 +- .../Data/FilesContext.cs | 4 +- ...163238_AddDuplicateImagesIndex.Designer.cs | 359 ++++++++++++++++++ .../20250808163238_AddDuplicateImagesIndex.cs | 52 +++ .../Migrations/FilesContextModelSnapshot.cs | 8 +- .../Models/DirectoryName.cs | 7 +- .../Models/EventType.cs | 47 +-- .../Models/FileSize.cs | 8 +- .../Models/SearchType.cs | 27 ++ .../DbContextHelpers/DbContextHelpers.csproj | 1 + .../Fixtures/DbContextFixture.cs | 0 .../Fixtures/EfCoreModelAssertions.cs | 0 .../Fixtures/MockFilesContextFactory.cs | 0 support/DbContextHelpers/TestData/files.json | 4 +- ...structure.FilesDb.Tests.Integration.csproj | 9 + ...ileDetailDeletionStatusExtensionsShould.cs | 24 +- ...FileDetailDirectoryNameExtensionsShould.cs | 2 +- .../FileDetailOrderingExtensionsShould.cs | 53 ++- .../FileDetailPagingExtensionsShould.cs | 50 ++- .../FileDetailSearchTypeExtensionsShould.cs | 53 ++- .../FileDetailTextContainsExtensionsShould.cs | 2 +- .../FilesContextLastViewedExtensionsShould.cs | 2 +- ...v.Infrastructure.FilesDb.Tests.Unit.csproj | 13 + .../Models/DeletionStatusShould.cs | 5 +- .../Models/DirectoryNameShould.cs | 3 +- .../Models/DuplicateDetailShould.cs | 3 +- .../Models/EventShould.cs | 3 +- ...tedDataFromTheCopyConstructor.approved.txt | 33 ++ ...xpectedToStringRepresentation.approved.txt | 41 ++ .../Models/FileDetailShould.cs | 100 ++--- ...ontainTheExpectedCreateMethod.approved.txt | 3 + ....ContainTheExpectedProperties.approved.txt | 2 +- .../Models/FileHandleShould.cs | 23 +- .../Models/FileIdShould.cs | 3 +- ....ContainTheExpectedProperties.approved.txt | 8 +- .../Models/FileNamePartShould.cs | 10 +- .../Models/FileNameShould.cs | 3 +- .../Models/FileSizeEqualityComparerShould.cs | 26 ++ .../Models/FileSizeShould.cs | 3 +- .../Models/ImageDetailShould.cs | 3 +- ....ContainTheExpectedProperties.approved.txt | 4 + ...uld.ReturnTheExpectedToString.approved.txt | 1 + .../Models/ImageDetailsShould.cs | 17 + ...AStar.Dev.Infrastructure.Tests.Unit.csproj | 3 + ....ContainTheExpectedProperties.approved.txt | 4 + .../Data/AStarDbContextOptionsShould.cs | 14 + ....ContainTheExpectedProperties.approved.txt | 3 + ...citlyMapToTheExpectedInstance.approved.txt | 3 + .../Data/ConnectionStringShould.cs | 30 ++ ...Technical.Debt.Reporting.Tests.Unit.csproj | 2 + .../AStar.Dev.Utilities.Tests.Unit.csproj | 2 + 56 files changed, 1122 insertions(+), 156 deletions(-) create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.Designer.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.cs create mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Models/SearchType.cs create mode 100644 support/DbContextHelpers/Fixtures/DbContextFixture.cs create mode 100644 support/DbContextHelpers/Fixtures/EfCoreModelAssertions.cs create mode 100644 support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedDataFromTheCopyConstructor.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedToStringRepresentation.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedCreateMethod.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeEqualityComparerShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ReturnTheExpectedToString.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ImplicitlyMapToTheExpectedInstance.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.cs diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index 9ae7dcc..1afaf8e 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -44,6 +44,14 @@ + + + + + + + + @@ -74,14 +82,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -191,6 +224,18 @@ + + + + + + + + + + + + Defines dates/times for soft and hard deletion @@ -361,34 +406,34 @@ providing type safety and preventing the creation of arbitrary states. - + + + Private constructor to prevent external instantiation. + This ensures that only the static readonly instances above can be created. + + The integer value representing the event type. + The string name of the event type. + + Represents an 'Add' event type, typically used for new record creation. - + Represents an 'Update' event type, typically used for modifying existing records. - + Represents a 'SoftDelete' event type, typically used for 'soft' removing records. - + Represents a 'HardDelete' event type, typically used for permanently removing records. - - - Private constructor to prevent external instantiation. - This ensures that only the static readonly instances above can be created. - - The integer value representing the event type. - The string name of the event type. - Gets the integer value associated with the event type. @@ -402,15 +447,15 @@ + + + Returns the string name of the event type, useful for debugging and display. The name of the event type. - - - @@ -664,7 +709,7 @@ Gets the file width property - + The Create method will return a populated instance of the @@ -738,6 +783,31 @@ + + + The enumeration defining the available search types + + + + + Search for images only + + + + + Search for all file types + + + + + Search for duplicates - file type is ignored + + + + + Search for duplicate images + + The currently supported SortOrders diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs index c5aab70..8cfc136 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs @@ -1,4 +1,4 @@ -using AStar.Dev.Infrastructure.Data.Configurations; +using AStar.Dev.Infrastructure.Data.Configurations; using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; @@ -39,8 +39,12 @@ public void Configure(EntityTypeBuilder builder) builder.ComplexProperty(fileDetail => fileDetail.DeletionStatus) .Configure(new DeletionStatusConfiguration()); - // Will want the handle to be unique, but not yet - builder.HasIndex(fileDetail => fileDetail.FileHandle); + builder.HasIndex(fileDetail => fileDetail.FileHandle).IsUnique(); builder.HasIndex(fileDetail => fileDetail.FileSize); + + // Composite index to optimize duplicate images search (partial optimization) + // Note: ImageHeight and ImageWidth can't be indexed directly as they're complex properties + builder.HasIndex(fileDetail => new { fileDetail.IsImage, fileDetail.FileSize }) + .HasDatabaseName("IX_FileDetail_DuplicateImages"); } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs index 0fcdf5c..9ef6bf6 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailDeletionStatusExtensions.cs @@ -1,7 +1,20 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; + namespace AStar.Dev.Infrastructure.FilesDb.Data; /// /// -public class FileDetailDeletionStatusExtensions +public static class FileDetailDeletionStatusExtensions { + /// + /// + /// + /// + /// + public static IQueryable IncludeDeletedOrDeletePending(this IQueryable files, bool includeDeleted) + => includeDeleted + ? files + : files.Where(f => f.DeletionStatus.HardDeletePending == null + && f.DeletionStatus.SoftDeletePending == null + && f.DeletionStatus.SoftDeleted == null); } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs index d66f7f2..3fc26d3 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailOrderingExtensions.cs @@ -1,7 +1,24 @@ +using System.Diagnostics; +using AStar.Dev.Infrastructure.FilesDb.Models; + namespace AStar.Dev.Infrastructure.FilesDb.Data; /// /// -public class FileDetailOrderingExtensions +public static class FileDetailOrderingExtensions { + /// + /// + /// + /// + /// + public static IQueryable OrderResultsBy(this IQueryable files, SortOrder sortOrder) + => sortOrder switch + { + SortOrder.NameAscending => files.OrderBy(f => f.FileName.Value), + SortOrder.NameDescending => files.OrderByDescending(f => f.FileName.Value), + SortOrder.SizeAscending => files.OrderBy(f => f.FileSize), + SortOrder.SizeDescending => files.OrderByDescending(f => f.FileSize), + _ => throw new UnreachableException("If we reach here, a new SortOrder has been added but not included...") + }; } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs index a09733b..177713d 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailPagingExtensions.cs @@ -1,7 +1,34 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; + namespace AStar.Dev.Infrastructure.FilesDb.Data; /// /// -public class FileDetailPagingExtensions +public static class FileDetailPagingExtensions { + /// + /// + /// + /// + /// + /// + public static IQueryable GetPage(this IQueryable files, int pageNumber, int pageSize) + { + pageSize = RestrictPageSize(pageSize); + + if (pageNumber < 1) + { + pageNumber = 1; + } + + return files.Skip(pageNumber * pageSize).Take(pageSize); + } + + private static int RestrictPageSize(int pageSize) => + pageSize switch + { + < 1 => 1, + > 50 => 50, + _ => pageSize + }; } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs index 89a3a75..a3b6610 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FileDetailSearchTypeExtensions.cs @@ -1,7 +1,28 @@ +using System.Diagnostics; +using AStar.Dev.Infrastructure.FilesDb.Models; + namespace AStar.Dev.Infrastructure.FilesDb.Data; /// /// -public class FileDetailSearchTypeExtensions +public static class FileDetailSearchTypeExtensions { + /// + /// + /// + /// + /// + public static IQueryable OfSearchType(this IQueryable files, SearchType searchType) + => searchType switch + { + SearchType.All => files, + SearchType.Images => files.Where(f => f.IsImage), + SearchType.Duplicates => files.Where(f => files.Count(x => x.FileSize == f.FileSize) > 1), + SearchType.DuplicateImages => files.Where(f => f.IsImage && + files.Count(x => x.IsImage && + x.FileSize == f.FileSize && + x.ImageDetail.Height == f.ImageDetail.Height && + x.ImageDetail.Width == f.ImageDetail.Width) > 1), + _ => throw new UnreachableException("If we reach here, a new SearchType has been added but not included...") + }; } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs index 44d6932..8d3ae6a 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/FilesContext.cs @@ -64,8 +64,8 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) _ = modelBuilder .Entity(eb => { - eb.HasNoKey(); - eb.ToView("vw_DuplicateDetails"); + _ = eb.HasNoKey(); + _ = eb.ToView("vw_DuplicateDetails"); }); } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.Designer.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.Designer.cs new file mode 100644 index 0000000..e407e2e --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.Designer.cs @@ -0,0 +1,359 @@ +// +using System; +using System.Collections.Generic; +using AStar.Dev.Infrastructure.FilesDb.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace AStar.Dev.Infrastructure.FilesDb.Migrations +{ + [DbContext(typeof(FilesContext))] + [Migration("20250808163238_AddDuplicateImagesIndex")] + partial class AddDuplicateImagesIndex + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasDefaultSchema("files") + .UseCollation("SQL_Latin1_General_CP1_CI_AS") + .HasAnnotation("ProductVersion", "9.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.DuplicateDetail", b => + { + b.Property("DirectoryName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileHandle") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileLastViewed") + .HasColumnType("datetimeoffset"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("HardDeletePending") + .HasColumnType("datetimeoffset"); + + b.Property("ImageHeight") + .HasColumnType("int"); + + b.Property("ImageWidth") + .HasColumnType("int"); + + b.Property("Instances") + .HasColumnType("int"); + + b.Property("IsImage") + .HasColumnType("bit"); + + b.Property("MoveRequired") + .HasColumnType("bit"); + + b.Property("SoftDeletePending") + .HasColumnType("datetimeoffset"); + + b.Property("SoftDeleted") + .HasColumnType("datetimeoffset"); + + b.Property("UpdatedOn") + .HasColumnType("datetimeoffset"); + + b.ToTable((string)null); + + b.ToView("vw_DuplicateDetails", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.Event", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("DirectoryName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("EventOccurredAt") + .HasColumnType("datetimeoffset"); + + b.Property("FileCreated") + .HasColumnType("datetimeoffset"); + + b.Property("FileLastModified") + .HasColumnType("datetimeoffset"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("Handle") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("Height") + .HasColumnType("int"); + + b.Property("UpdatedBy") + .IsRequired() + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("Width") + .HasColumnType("int"); + + b.ComplexProperty>("Type", "AStar.Dev.Infrastructure.FilesDb.Models.Event.Type#EventType", b1 => + { + b1.IsRequired(); + + b1.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("EventName"); + + b1.Property("Value") + .HasColumnType("int") + .HasColumnName("EventType"); + }); + + b.HasKey("Id"); + + b.ToTable("Event", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("Celebrity") + .HasColumnType("bit"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("nvarchar(150)"); + + b.HasKey("Id"); + + b.ToTable("FileClassification", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileDetail", b => + { + b.Property("Id") + .HasColumnType("int"); + + b.Property("FileCreated") + .HasColumnType("datetimeoffset"); + + b.Property("FileHandle") + .IsRequired() + .HasColumnType("nvarchar(256)"); + + b.Property("FileLastModified") + .HasColumnType("datetimeoffset"); + + b.Property("FileLastViewed") + .HasColumnType("datetimeoffset"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("IsImage") + .HasColumnType("bit"); + + b.Property("MoveRequired") + .HasColumnType("bit"); + + b.Property("UpdatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("UpdatedOn") + .HasColumnType("datetimeoffset"); + + b.ComplexProperty>("DeletionStatus", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.DeletionStatus#DeletionStatus", b1 => + { + b1.IsRequired(); + + b1.Property("HardDeletePending") + .HasColumnType("datetimeoffset") + .HasColumnName("HardDeletePending"); + + b1.Property("SoftDeletePending") + .HasColumnType("datetimeoffset") + .HasColumnName("SoftDeletePending"); + + b1.Property("SoftDeleted") + .HasColumnType("datetimeoffset") + .HasColumnName("SoftDeleted"); + }); + + b.ComplexProperty>("DirectoryName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.DirectoryName#DirectoryName", b1 => + { + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("DirectoryName"); + }); + + b.ComplexProperty>("FileName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.FileName#FileName", b1 => + { + b1.IsRequired(); + + b1.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(256)") + .HasColumnName("FileName"); + }); + + b.ComplexProperty>("ImageDetail", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.ImageDetail#ImageDetail", b1 => + { + b1.IsRequired(); + + b1.Property("Height") + .HasColumnType("int") + .HasColumnName("ImageHeight"); + + b1.Property("Width") + .HasColumnType("int") + .HasColumnName("ImageWidth"); + }); + + b.HasKey("Id"); + + b.HasIndex("FileHandle") + .IsUnique(); + + b.HasIndex("FileSize"); + + b.HasIndex("IsImage", "FileSize") + .HasDatabaseName("IX_FileDetail_DuplicateImages"); + + b.ToTable("FileDetail", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("FileClassificationId") + .HasColumnType("int"); + + b.Property("Text") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("nvarchar(150)"); + + b.HasKey("Id"); + + b.HasIndex("FileClassificationId"); + + b.ToTable("FileNamePart", "files"); + }); + + modelBuilder.Entity("FileClassificationFileDetail", b => + { + b.Property("FileClassificationsId") + .HasColumnType("int"); + + b.Property("FileDetailsId") + .HasColumnType("int"); + + b.HasKey("FileClassificationsId", "FileDetailsId"); + + b.HasIndex("FileDetailsId"); + + b.ToTable("FileClassificationFileDetail", "files"); + }); + + modelBuilder.Entity("FileClassificationFileNamePart", b => + { + b.Property("FileClassificationsId") + .HasColumnType("int"); + + b.Property("FileNamePartsId") + .HasColumnType("int"); + + b.HasKey("FileClassificationsId", "FileNamePartsId"); + + b.HasIndex("FileNamePartsId"); + + b.ToTable("FileClassificationFileNamePart", "files"); + }); + + modelBuilder.Entity("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationId"); + }); + + modelBuilder.Entity("FileClassificationFileDetail", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileDetail", null) + .WithMany() + .HasForeignKey("FileDetailsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("FileClassificationFileNamePart", b => + { + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileClassification", null) + .WithMany() + .HasForeignKey("FileClassificationsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("AStar.Dev.Infrastructure.FilesDb.Models.FileNamePart", null) + .WithMany() + .HasForeignKey("FileNamePartsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.cs new file mode 100644 index 0000000..bb6a033 --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/20250808163238_AddDuplicateImagesIndex.cs @@ -0,0 +1,52 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace AStar.Dev.Infrastructure.FilesDb.Migrations +{ + /// + public partial class AddDuplicateImagesIndex : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropIndex( + name: "IX_FileDetail_FileHandle", + schema: "files", + table: "FileDetail"); + + migrationBuilder.CreateIndex( + name: "IX_FileDetail_DuplicateImages", + schema: "files", + table: "FileDetail", + columns: new[] { "IsImage", "FileSize" }); + + migrationBuilder.CreateIndex( + name: "IX_FileDetail_FileHandle", + schema: "files", + table: "FileDetail", + column: "FileHandle", + unique: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropIndex( + name: "IX_FileDetail_DuplicateImages", + schema: "files", + table: "FileDetail"); + + migrationBuilder.DropIndex( + name: "IX_FileDetail_FileHandle", + schema: "files", + table: "FileDetail"); + + migrationBuilder.CreateIndex( + name: "IX_FileDetail_FileHandle", + schema: "files", + table: "FileDetail", + column: "FileHandle"); + } + } +} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs index bd451cc..1c62cf7 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Migrations/FilesContextModelSnapshot.cs @@ -227,6 +227,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.ComplexProperty>("FileName", "AStar.Dev.Infrastructure.FilesDb.Models.FileDetail.FileName#FileName", b1 => { + b1.IsRequired(); + b1.Property("Value") .IsRequired() .HasColumnType("nvarchar(256)") @@ -248,10 +250,14 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.HasKey("Id"); - b.HasIndex("FileHandle"); + b.HasIndex("FileHandle") + .IsUnique(); b.HasIndex("FileSize"); + b.HasIndex("IsImage", "FileSize") + .HasDatabaseName("IX_FileDetail_DuplicateImages"); + b.ToTable("FileDetail", "files"); }); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs index 1a7cc70..29deaa5 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/DirectoryName.cs @@ -1,9 +1,6 @@ -using Microsoft.EntityFrameworkCore; - -namespace AStar.Dev.Infrastructure.FilesDb.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; /// /// /// -[Index(nameof(Value))] -public record DirectoryName(string Value); +public readonly record struct DirectoryName(string Value); diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/EventType.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/EventType.cs index c0bcb10..96a2ef0 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/EventType.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/EventType.cs @@ -7,37 +7,37 @@ namespace AStar.Dev.Infrastructure.FilesDb.Models; /// public sealed class EventType : IEquatable { + /// + /// Private constructor to prevent external instantiation. + /// This ensures that only the static readonly instances above can be created. + /// + /// The integer value representing the event type. + /// The string name of the event type. + private EventType(int value, string name) + { + Value = value; + Name = name; + } + /// /// Represents an 'Add' event type, typically used for new record creation. /// - public static readonly EventType Add = new (1, "Add"); + public static EventType Add => new (1, "Add"); /// /// Represents an 'Update' event type, typically used for modifying existing records. /// - public static readonly EventType Update = new (2, "Update"); + public static EventType Update => new (2, "Update"); /// /// Represents a 'SoftDelete' event type, typically used for 'soft' removing records. /// - public static readonly EventType SoftDelete = new (3, "SoftDelete"); + public static EventType SoftDelete => new (3, "SoftDelete"); /// /// Represents a 'HardDelete' event type, typically used for permanently removing records. /// - public static readonly EventType HardDelete = new (4, "HardDelete"); - - /// - /// Private constructor to prevent external instantiation. - /// This ensures that only the static readonly instances above can be created. - /// - /// The integer value representing the event type. - /// The string name of the event type. - private EventType(int value, string name) - { - Value = value; - Name = name; - } + public static EventType HardDelete => new (4, "HardDelete"); /// /// Gets the integer value associated with the event type. @@ -65,15 +65,15 @@ public bool Equals(EventType? other) return Value == other.Value && Name == other.Name; } + /// + public override bool Equals(object? obj) => ReferenceEquals(this, obj) || obj is EventType other && Equals(other); + /// /// Returns the string name of the event type, useful for debugging and display. /// /// The name of the event type. public override string ToString() => Name; - /// - public override bool Equals(object? obj) => ReferenceEquals(this, obj) || obj is EventType other && Equals(other); - /// public override int GetHashCode() => HashCode.Combine(Value, Name); @@ -84,14 +84,7 @@ public bool Equals(EventType? other) /// The second to compare. /// true if the two objects are equal; otherwise, false. public static bool operator ==(EventType left, EventType right) - { - if (ReferenceEquals(left, null)) - { - return ReferenceEquals(right, null); - } - - return left.Equals(right); - } + => left?.Equals(right) ?? ReferenceEquals(right, null); /// /// Overloads the inequality operator to compare two objects. diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileSize.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileSize.cs index 606696a..4ac426f 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileSize.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileSize.cs @@ -6,7 +6,7 @@ namespace AStar.Dev.Infrastructure.FilesDb.Models; /// public sealed class FileSize { - private FileSize(long fileLength, long height, long width) + private FileSize(long fileLength, int height, int width) { FileLength = fileLength; Height = height; @@ -21,12 +21,12 @@ private FileSize(long fileLength, long height, long width) /// /// Gets the file height property /// - public long Height { get; } + public int Height { get; } /// /// Gets the file width property /// - public long Width { get; } + public int Width { get; } /// /// The Create method will return a populated instance of the class @@ -43,7 +43,7 @@ private FileSize(long fileLength, long height, long width) /// /// A populated instance of . /// - public static FileSize Create(long fileLength, long height, long width) => + public static FileSize Create(long fileLength, int height, int width) => new(fileLength, height, width); /// diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/SearchType.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/SearchType.cs new file mode 100644 index 0000000..977ffea --- /dev/null +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/SearchType.cs @@ -0,0 +1,27 @@ +namespace AStar.Dev.Infrastructure.FilesDb.Models; + +/// +/// The enumeration defining the available search types +/// +public enum SearchType +{ + /// + /// Search for images only + /// + Images, + + /// + /// Search for all file types + /// + All, + + /// + /// Search for duplicates - file type is ignored + /// + Duplicates, + + /// + /// Search for duplicate images + /// + DuplicateImages +} diff --git a/support/DbContextHelpers/DbContextHelpers.csproj b/support/DbContextHelpers/DbContextHelpers.csproj index b1bf37f..0824889 100644 --- a/support/DbContextHelpers/DbContextHelpers.csproj +++ b/support/DbContextHelpers/DbContextHelpers.csproj @@ -13,6 +13,7 @@ + all diff --git a/support/DbContextHelpers/Fixtures/DbContextFixture.cs b/support/DbContextHelpers/Fixtures/DbContextFixture.cs new file mode 100644 index 0000000..e69de29 diff --git a/support/DbContextHelpers/Fixtures/EfCoreModelAssertions.cs b/support/DbContextHelpers/Fixtures/EfCoreModelAssertions.cs new file mode 100644 index 0000000..e69de29 diff --git a/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs b/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs new file mode 100644 index 0000000..e69de29 diff --git a/support/DbContextHelpers/TestData/files.json b/support/DbContextHelpers/TestData/files.json index 10c49a9..60e6554 100644 --- a/support/DbContextHelpers/TestData/files.json +++ b/support/DbContextHelpers/TestData/files.json @@ -884,7 +884,7 @@ "moveRequired": false, "deletionStatus": { "softDeleted": null, - "softDeletePending": null, + "softDeletePending": "2025-07-14T09:21:52.4473812+00:00", "hardDeletePending": null }, "updatedBy": "Jay Barden", @@ -1116,7 +1116,7 @@ "deletionStatus": { "softDeleted": null, "softDeletePending": null, - "hardDeletePending": null + "hardDeletePending": "2025-07-14T09:21:52.4473812+00:00" }, "updatedBy": "Jay Barden", "updatedOn": "2025-07-21T09:21:52.447386+00:00" diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj index 42b8b43..1e46da8 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj @@ -5,13 +5,20 @@ enable enable false + AStar.Dev.Infrastructure.FilesDb + 8f6cdef5-4769-401b-a5d6-bf409c7b76d6 + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive + @@ -25,6 +32,8 @@ + + diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs index fb40cc5..43517ea 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs @@ -1,6 +1,8 @@ +using AStar.Dev.Infrastructure.FilesDb.Data; using DbContextHelpers.Fixtures; +using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; /// /// @@ -9,4 +11,24 @@ public class FileDetailDeletionStatusExtensionsShould : IClassFixture this.filesContextFixture = filesContextFixture; + + [Fact] + public void ShouldReturnExpectedFileDetailsWhenIncludeDeletedOrDeletePendingIsFalse() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.IncludeDeletedOrDeletePending(false).ToList(); + + result.Count.ShouldBe(1734); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsWhenIncludeDeletedOrDeletePendingIsTrue() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.IncludeDeletedOrDeletePending(true).ToList(); + + result.Count.ShouldBe(2000); + } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs index b39bf0c..f1bf2d3 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs @@ -3,7 +3,7 @@ using DbContextHelpers.Fixtures; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; public class FileDetailDirectoryNameExtensionsShould : IClassFixture { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs index d4975b9..6e98f94 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs @@ -1,6 +1,9 @@ +using AStar.Dev.Infrastructure.FilesDb.Data; +using AStar.Dev.Infrastructure.FilesDb.Models; using DbContextHelpers.Fixtures; +using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; /// /// @@ -9,4 +12,52 @@ public class FileDetailOrderingExtensionsShould : IClassFixture this.filesContextFixture = filesContextFixture; + + [Fact] + public void ShouldReturnExpectedFileDetailsOrderedByNameAscending() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OrderResultsBy(SortOrder.NameAscending).ToList(); + + result.Count.ShouldBe(2000); + result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); + result[0].FileSize.ShouldBe(91451L); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsOrderedByNameDescending() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OrderResultsBy(SortOrder.NameDescending).ToList(); + + result.Count.ShouldBe(2000); + result[0].FileName.Value.ShouldBe(@"file.txt"); + result[0].FileSize.ShouldBe(91801L); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsOrderedBySizeAscending() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OrderResultsBy(SortOrder.SizeAscending).ToList(); + + result.Count.ShouldBe(2000); + result[0].FileName.Value.ShouldBe(@"\some\file.png"); + result[0].FileSize.ShouldBe(20024L); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsOrderedBySizeDescending() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OrderResultsBy(SortOrder.SizeDescending).ToList(); + + result.Count.ShouldBe(2000); + result[0].FileName.Value.ShouldBe(@"\some\file.txt"); + result[0].FileSize.ShouldBe(99889L); + } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs index 1782436..9a00485 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs @@ -1,6 +1,8 @@ +using AStar.Dev.Infrastructure.FilesDb.Data; using DbContextHelpers.Fixtures; +using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; /// /// @@ -9,4 +11,50 @@ public class FileDetailPagingExtensionsShould : IClassFixture this.filesContextFixture = filesContextFixture; + + [Fact] + public void ShouldReturnExpectedFirstPageOfTenResultsWithCorrectDetails() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.GetPage(1, 10).ToList(); + + result.Count.ShouldBe(10); + result[0].FileName.Value.ShouldBe(@"\some\file.png"); + result[0].FileSize.ShouldBe(58887L); + } + + [Fact] + public void ShouldReturnExpectedThirdPageOfTwentyResultsWithCorrectDetails() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.GetPage(28, 20).ToList(); + + result.Count.ShouldBe(20); + result[0].FileName.Value.ShouldBe(@"\some\file.jpg"); + result[0].FileSize.ShouldBe(20676L); + } + + [Fact] + public void ShouldReturnFirstPageOfResultsWhenPageRequestedIsZero() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.GetPage(0, 20).ToList(); + + result.Count.ShouldBe(20); + result[0].FileName.Value.ShouldBe(@"\some\file.png"); + result[0].FileSize.ShouldBe(99512L); + } + + [Fact] + public void ShouldReturnExpectedFiftyResultsWhenMaxItemsIsExceeded() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.GetPage(1, 51).ToList(); + + result.Count.ShouldBe(50); + } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs index 666d417..3814a6d 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs @@ -1,6 +1,9 @@ +using AStar.Dev.Infrastructure.FilesDb.Data; +using AStar.Dev.Infrastructure.FilesDb.Models; using DbContextHelpers.Fixtures; +using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; /// /// @@ -9,4 +12,52 @@ public class FileDetailSearchTypeExtensionsShould : IClassFixture this.filesContextFixture = filesContextFixture; + + [Fact] + public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToAll() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OfSearchType(SearchType.All).ToList(); + + result.Count.ShouldBe(2000); + result[0].FileName.Value.ShouldBe("file.txt"); + result[0].FileSize.ShouldBe(91801L); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToImages() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OfSearchType(SearchType.Images).ToList(); + + result.Count.ShouldBe(1541); + result[0].FileName.Value.ShouldBe(@"\some\file.gif"); + result[0].FileSize.ShouldBe(22081L); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicateImages() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OfSearchType(SearchType.DuplicateImages).ToList(); + + result.Count.ShouldBe(5678); + result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); + result[0].FileSize.ShouldBe(91451L); + } + + [Fact] + public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicates() + { + var sut = filesContextFixture.SutWithFileDetails; + + var result = sut.FileDetails.OfSearchType(SearchType.Duplicates).ToList(); + + result.Count.ShouldBe(1234); + result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); + result[0].FileSize.ShouldBe(91451L); + } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs index b281522..1383773 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs @@ -2,7 +2,7 @@ using DbContextHelpers.Fixtures; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; /// /// diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs index 1c3e59c..4aa0fd4 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs @@ -3,7 +3,7 @@ using Microsoft.Extensions.Time.Testing; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Integration; +namespace AStar.Dev.Infrastructure.FilesDb; public class FilesContextLastViewedExtensionsShould : IClassFixture { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj index 6f1cced..3336d0f 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj @@ -5,18 +5,31 @@ enable enable false + AStar.Dev.Infrastructure.FilesDb + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs index afdcb41..6e0c7df 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; -using AStar.Dev.Utilities; +using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class DeletionStatusShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs index 7ca7500..2755df8 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class DirectoryNameShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs index 93bc491..aad0897 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class DuplicateDetailShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs index e1ac6bb..4a01978 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class EventShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedDataFromTheCopyConstructor.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedDataFromTheCopyConstructor.approved.txt new file mode 100644 index 0000000..49f8f7a --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedDataFromTheCopyConstructor.approved.txt @@ -0,0 +1,33 @@ +{ + "fileClassifications": [], + "id": { + "value": 0 + }, + "imageDetail": { + "width": null, + "height": null + }, + "fileName": { + "value": "Mock File Name" + }, + "directoryName": { + "value": "Mock Directory Name" + }, + "fullNameWithPath": "Mock Directory Name/Mock File Name", + "fileSize": 1234, + "isImage": false, + "fileHandle": { + "value": null + }, + "fileCreated": "0001-01-01T00:00:00+00:00", + "fileLastModified": "0001-01-01T00:00:00+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-06-28T22:20:37+00:00" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedToStringRepresentation.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedToStringRepresentation.approved.txt new file mode 100644 index 0000000..c5206d8 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ReturnTheExpectedToStringRepresentation.approved.txt @@ -0,0 +1,41 @@ +{ + "fileClassifications": [ + { + "id": 1, + "name": "Test Classification", + "fileDetails": [], + "celebrity": true, + "fileNameParts": [] + } + ], + "id": { + "value": 1 + }, + "imageDetail": { + "width": 1234, + "height": 5678 + }, + "fileName": { + "value": "MockFileName" + }, + "directoryName": { + "value": "MockDirectoryName" + }, + "fullNameWithPath": "MockDirectoryName/MockFileName", + "fileSize": 1234, + "isImage": true, + "fileHandle": { + "value": "MockFileHandle" + }, + "fileCreated": "2025-06-28T22:15:37+00:00", + "fileLastModified": "2025-06-28T22:15:37+00:00", + "fileLastViewed": "2025-06-28T22:20:37+00:00", + "moveRequired": true, + "deletionStatus": { + "softDeleted": "2025-06-28T22:21:37+00:00", + "softDeletePending": "2025-06-28T22:22:37+00:00", + "hardDeletePending": "2025-06-28T22:23:37+00:00" + }, + "updatedBy": "Test User", + "updatedOn": "2025-06-28T22:30:37+00:00" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs index c39507d..d4b2129 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs @@ -1,55 +1,57 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; -using AStar.Dev.Utilities; +using System.IO.Abstractions; +using JetBrains.Annotations; +using NSubstitute; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; -public class FileDetailShould +[TestSubject(typeof(FileDetail))] +public sealed class FileDetailShould { [Fact] - public void ContainTheExpectedProperties() - => new FileDetail - { - Id = new (68), - DirectoryName = new ("mock-directory-name"), - FileName = new ("mock-file-name"), - ImageDetail = new (7, 8), - FileHandle = new ("mock-file-handle"), - DeletionStatus = - new() - { - HardDeletePending = new DateTimeOffset(2025, 07, 28, 1, 2, 3, TimeSpan.Zero), - SoftDeletePending = new DateTimeOffset(2025, 07, 28, 2, 3, 4, TimeSpan.Zero), - SoftDeleted = new DateTimeOffset(2025, 07, 28, 3, 4, 5, TimeSpan.Zero) - }, - FileClassifications = new List - { - new () - { - Celebrity = true, - Id = 1, - Name = "Celebrity", - FileDetails = new List - { - new () - { - DirectoryName = new ("mock-directory-name2") , - FileName = new("mock-file-name"), - UpdatedOn = new (2025, 07, 28, 1, 2, 3, TimeSpan.Zero) - } - }, - FileNameParts = new List { new () { Text = "mock-file-name-part" } } - } - }, - FileSize = 1245, - IsImage = true, - FileCreated = new (2025, 07, 28, 5, 6, 7, TimeSpan.Zero), - FileLastModified = new (2025, 07, 28, 10, 20, 30, TimeSpan.Zero), - FileLastViewed = new DateTimeOffset(2025, 07, 28, 11, 22, 33, TimeSpan.Zero), - UpdatedBy = "mock-user-name", - UpdatedOn = new (2025, 07, 28, 8, 7, 9, TimeSpan.Zero), - MoveRequired = true - } - .ToJson() - .ShouldMatchApproved(); + public void ReturnTheExpectedToStringRepresentation() + { + var fileDetail = new FileDetail + { + Id = new(1), + DirectoryName = new("MockDirectoryName"), + FileCreated = new (new (2025, 6, 28, 22, 15, 37, DateTimeKind.Utc)), + FileLastModified = new (new (2025, 6, 28, 22, 15, 37, DateTimeKind.Utc)), + DeletionStatus = + new() + { + SoftDeleted = new DateTimeOffset(new (2025, 6, 28, 22, 21, 37, DateTimeKind.Utc)), + SoftDeletePending = new DateTimeOffset(new (2025, 6, 28, 22, 22, 37, DateTimeKind.Utc)), + HardDeletePending = new DateTimeOffset(new (2025, 6, 28, 22, 23, 37, DateTimeKind.Utc)) + }, + FileName = new("MockFileName"), + FileSize = 1234, + FileHandle = new("MockFileHandle"), + FileLastViewed = new DateTimeOffset(new (2025, 6, 28, 22, 20, 37, DateTimeKind.Utc)), + IsImage = true, + ImageDetail = new(1234, 5678), + UpdatedBy = "Test User", + UpdatedOn = new (new (2025, 6, 28, 22, 30, 37, DateTimeKind.Utc)), + FileClassifications = [new () { Id = 1, Name = "Test Classification", Celebrity = true }], + MoveRequired = true + }; + + fileDetail.ToString().ShouldMatchApproved(); + } + + [Fact] + public void ReturnTheExpectedDataFromTheCopyConstructor() + { + var mockFileInfo = Substitute.For(); + mockFileInfo.Name.Returns("MockFileName"); + mockFileInfo.DirectoryName.Returns("MockDirectoryName"); + mockFileInfo.Length.Returns(1234); + + var fileDetail = new FileDetail(mockFileInfo) + { + FileName = new("Mock File Name"), DirectoryName = new("Mock Directory Name"), UpdatedOn = new (new (2025, 6, 28, 22, 20, 37, DateTimeKind.Utc)) + }; + + fileDetail.ToString().ShouldMatchApproved(); + } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedCreateMethod.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedCreateMethod.approved.txt new file mode 100644 index 0000000..d87fd85 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedCreateMethod.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "some-handle" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt index b0e05a6..d87fd85 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt @@ -1,3 +1,3 @@ { - "value": "mock-file-handle" + "value": "some-handle" } \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs index 0c9c0cd..afb2522 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs @@ -1,24 +1,29 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; -using AStar.Dev.Utilities; +using AStar.Dev.Utilities; +using JetBrains.Annotations; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; +[TestSubject(typeof(FileHandle))] public class FileHandleShould { [Fact] public void ContainTheExpectedProperties() - => new FileHandle { Value = "mock-file-handle" } + => new FileHandle { Value = "some-handle" } .ToJson() .ShouldMatchApproved(); [Fact] - public void DefineTheImplicitConversion() - { - var fileHandle = new FileHandle("mock-file-handle"); + public void ContainTheExpectedCreateMethod() + => FileHandle.Create("some-handle") + .ToJson() + .ShouldMatchApproved(); - string sut = fileHandle; + [Fact] + public void ContainTheExpectedImplicitConversionToString() + { + string sut = FileHandle.Create("some-handle"); - sut.ShouldBe("mock-file-handle"); + sut.ShouldBe("some-handle"); } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs index 7f3ba85..f17c149 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class FileIdShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt index 86fa5f9..4b378c0 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt @@ -1,12 +1,12 @@ { - "id": 0, - "text": "", + "id": 1, + "text": "Mock Text", "fileClassifications": [ { "id": 1, - "name": "", + "name": "Mock Classification", "fileDetails": [], - "celebrity": false, + "celebrity": true, "fileNameParts": [] } ] diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs index a261002..e479c63 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs @@ -1,14 +1,14 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; +using JetBrains.Annotations; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; +[TestSubject(typeof(FileNamePart))] public class FileNamePartShould { [Fact] public void ContainTheExpectedProperties() - => new FileNamePart { FileClassifications = new List { new() { Id = 1 } } } - .ToJson() - .ShouldMatchApproved(); + => new FileNamePart { Id = 1, Text = "Mock Text", FileClassifications = new List { new () { Id = 1, Celebrity = true, Name = "Mock Classification" } } }.ToJson() + .ShouldMatchApproved(); } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs index 924e2d3..ef36cc6 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class FileNameShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeEqualityComparerShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeEqualityComparerShould.cs new file mode 100644 index 0000000..0753778 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeEqualityComparerShould.cs @@ -0,0 +1,26 @@ +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Models; + +public sealed class FileSizeEqualityComparerShould +{ + [Fact] + public void ReturnTrueWhenTheTwoInstancesOfFileSizeAreEquivalent() + { + var fileSize1 = FileSize.Create(1, 2, 3); + var fileSize2 = FileSize.Create(1, 2, 3); + var comparer = new FileSizeEqualityComparer(); + + comparer.Equals(fileSize1, fileSize2).ShouldBeTrue(); + } + + [Fact] + public void ReturnFalseWhenTheTwoInstancesOfFileSizeAreNotEquivalent() + { + var fileSize1 = FileSize.Create(1, 2, 3); + var fileSize2 = FileSize.Create(1, 2, 4); + var comparer = new FileSizeEqualityComparer(); + + comparer.Equals(fileSize1, fileSize2).ShouldBeFalse(); + } +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs index ae5d3d6..c42bed3 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class FileSizeShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs index 041fba4..5ab3c74 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs @@ -1,8 +1,7 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; using AStar.Dev.Utilities; using Shouldly; -namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; +namespace AStar.Dev.Infrastructure.FilesDb.Models; public class ImageDetailShould { diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..3bfac37 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,4 @@ +{ + "width": 1234, + "height": 5678 +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ReturnTheExpectedToString.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ReturnTheExpectedToString.approved.txt new file mode 100644 index 0000000..66cc785 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.ReturnTheExpectedToString.approved.txt @@ -0,0 +1 @@ +ImageDetail { Width = 1234, Height = 5678 } \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.cs new file mode 100644 index 0000000..870e660 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailsShould.cs @@ -0,0 +1,17 @@ +using AStar.Dev.Utilities; +using JetBrains.Annotations; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Models; + +[TestSubject(typeof(ImageDetail))] +public class ImageDetailsShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new ImageDetail(1234, 5678).ToJson().ShouldMatchApproved(); + + [Fact] + public void ReturnTheExpectedToString() + => new ImageDetail(1234, 5678).ToString().ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj b/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj index 391e078..3669707 100644 --- a/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj @@ -9,6 +9,7 @@ + @@ -17,6 +18,8 @@ + + diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..4906708 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,4 @@ +{ + "enableLogging": true, + "includeSensitiveData": true +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.cs new file mode 100644 index 0000000..941ad43 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/AStarDbContextOptionsShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.Data; +using AStar.Dev.Utilities; + +namespace AStar.Dev.Infrastructure.Tests.Unit.Data; + +[TestSubject(typeof(AStarDbContextOptions))] +public class AStarDbContextOptionsShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new AStarDbContextOptions { EnableLogging = true, IncludeSensitiveData = true } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..01554a4 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "some mock connection string" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ImplicitlyMapToTheExpectedInstance.approved.txt b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ImplicitlyMapToTheExpectedInstance.approved.txt new file mode 100644 index 0000000..01554a4 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.ImplicitlyMapToTheExpectedInstance.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "some mock connection string" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.cs new file mode 100644 index 0000000..6a78cc4 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/Data/ConnectionStringShould.cs @@ -0,0 +1,30 @@ +using AStar.Dev.Infrastructure.Data; +using AStar.Dev.Utilities; + +namespace AStar.Dev.Infrastructure.Tests.Unit.Data; + +[TestSubject(typeof(ConnectionString))] +public class ConnectionStringShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new ConnectionString { Value = "some mock connection string" } + .ToJson() + .ShouldMatchApproved(); + + [Fact] + public void ImplicitlyMapToTheExpectedString() + { + string sut = new ConnectionString { Value = "some mock connection string" }; + + sut.ShouldBe("some mock connection string"); + } + + [Fact] + public void ImplicitlyMapToTheExpectedInstance() + { + ConnectionString sut = "some mock connection string"; + + sut.ToJson().ShouldMatchApproved(); + } +} diff --git a/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj b/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj index d3a291f..ee2055a 100644 --- a/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj +++ b/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj @@ -20,6 +20,7 @@ + all @@ -30,6 +31,7 @@ + diff --git a/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj b/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj index 155ac53..cbfa43e 100644 --- a/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj +++ b/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj @@ -19,6 +19,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive + @@ -30,6 +31,7 @@ + From d1d2d8c9e6a49ac677a0222982a5a0df565ac160 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sat, 9 Aug 2025 20:46:46 +0100 Subject: [PATCH 7/9] Update test data and impacted tests --- .../AStar.Dev.Infrastructure.FilesDb.xml | 4 - .../Fixtures/DbContextFixture.cs | 0 .../Fixtures/EfCoreModelAssertions.cs | 0 .../Fixtures/FilesContextFixture.cs | 20 +- .../Fixtures/MockFilesContextFactory.cs | 54 + .../Fixtures/SharedIntegrationCollection.cs | 11 + .../MockFilesContextFactory.cs | 54 - support/DbContextHelpers/TestConstants.cs | 6 + support/DbContextHelpers/TestData/files.json | 41002 ++++++- ...structure.FilesDb.Tests.Integration.csproj | 4 + ...ileDetailDeletionStatusExtensionsShould.cs | 14 +- ...FileDetailDirectoryNameExtensionsShould.cs | 14 +- .../FileDetailOrderingExtensionsShould.cs | 22 +- .../FileDetailPagingExtensionsShould.cs | 14 +- .../FileDetailSearchTypeExtensionsShould.cs | 20 +- .../FileDetailTextContainsExtensionsShould.cs | 24 +- .../FilesContextLastViewedExtensionsShould.cs | 8 +- .../TestData/files.json | 99002 ++++++++++++++++ 18 files changed, 136132 insertions(+), 4141 deletions(-) delete mode 100644 support/DbContextHelpers/Fixtures/DbContextFixture.cs delete mode 100644 support/DbContextHelpers/Fixtures/EfCoreModelAssertions.cs create mode 100644 support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs delete mode 100644 support/DbContextHelpers/MockFilesContextFactory.cs create mode 100644 support/DbContextHelpers/TestConstants.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/TestData/files.json diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index 1afaf8e..52cadbc 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -46,7 +46,6 @@ - @@ -84,7 +83,6 @@ - @@ -96,7 +94,6 @@ - @@ -109,7 +106,6 @@ - diff --git a/support/DbContextHelpers/Fixtures/DbContextFixture.cs b/support/DbContextHelpers/Fixtures/DbContextFixture.cs deleted file mode 100644 index e69de29..0000000 diff --git a/support/DbContextHelpers/Fixtures/EfCoreModelAssertions.cs b/support/DbContextHelpers/Fixtures/EfCoreModelAssertions.cs deleted file mode 100644 index e69de29..0000000 diff --git a/support/DbContextHelpers/Fixtures/FilesContextFixture.cs b/support/DbContextHelpers/Fixtures/FilesContextFixture.cs index 4dee85a..530091b 100644 --- a/support/DbContextHelpers/Fixtures/FilesContextFixture.cs +++ b/support/DbContextHelpers/Fixtures/FilesContextFixture.cs @@ -8,20 +8,16 @@ public class FilesContextFixture : IDisposable { private bool disposedValue; - public FilesContext Sut { get; } = MockFilesContextFactory.CreateMockFilesContextAsync().Result; - - public FilesContext SutWithFileDetails + public FilesContextFixture() { - get - { - TestContext = MockFilesContextFactory.CreateMockFilesContextAsync().Result; - TestContext.AddMockFiles(); - - return TestContext; - } + Sut = MockFilesContextFactory.CreateMockFilesContextAsync().Result; + Sut.AddMockFiles(); } - public required FilesContext TestContext { get; set; } + public FilesContext Sut + { + get; + } public void Dispose() { @@ -40,7 +36,7 @@ protected virtual void Dispose(bool disposing) { try { - TestContext.Database.EnsureDeleted(); + Sut.Database.EnsureDeleted(); } catch { diff --git a/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs b/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs index e69de29..07b362b 100644 --- a/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs +++ b/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs @@ -0,0 +1,54 @@ +using System.Text.Json; +using AStar.Dev.Infrastructure.FilesDb.Data; +using AStar.Dev.Infrastructure.FilesDb.Models; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; + +namespace DbContextHelpers.Fixtures; + +public static class MockFilesContextFactory +{ + public static async Task CreateMockFilesContextAsync() + { + var optionsBuilder = new DbContextOptionsBuilder(); + var config = TestSetup.ServiceProvider.GetRequiredService(); + var connectionString = config.GetConnectionString("SqlServer"); + optionsBuilder.UseSqlServer(connectionString, contextOptionsBuilder => contextOptionsBuilder.EnableRetryOnFailure(3, TimeSpan.FromSeconds(10), null)); + var testFilesContext = new FilesContext(optionsBuilder.Options); + + try + { + await testFilesContext.Database.EnsureCreatedAsync(); + } + catch + { + // NAR + } + + return testFilesContext; + } + + public static void AddMockFiles(this FilesContext mockFilesContext) + { + var combine = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../../support/DbContextHelpers/TestData/files.json"); + var filesAsJson = File.ReadAllText(combine); + + var listFromJson = JsonSerializer.Deserialize>(filesAsJson, JsonSerializerOptions.Web)!; + + foreach(var item in listFromJson) + { + item.FileHandle = FileHandle.Create($"{item.DirectoryName}-{item.FileName}-{item.Id}"); + mockFilesContext.FileDetails.Add(item); + } + + try + { + mockFilesContext.SaveChanges(); + } + catch(Exception exception) + { + Console.WriteLine(exception); + } + } +} diff --git a/support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs b/support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs new file mode 100644 index 0000000..05b94ea --- /dev/null +++ b/support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs @@ -0,0 +1,11 @@ +using Xunit; + +namespace DbContextHelpers.Fixtures; + +[CollectionDefinition(nameof(SharedIntegrationCollection))] +public class SharedIntegrationCollection : ICollectionFixture +{ + // This class has no code, and is never created. Its purpose is simply + // to be the place to apply [CollectionDefinition] and all the + // ICollectionFixture<> interfaces. +} diff --git a/support/DbContextHelpers/MockFilesContextFactory.cs b/support/DbContextHelpers/MockFilesContextFactory.cs deleted file mode 100644 index a7165be..0000000 --- a/support/DbContextHelpers/MockFilesContextFactory.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System.Text.Json; -using AStar.Dev.Infrastructure.FilesDb.Data; -using AStar.Dev.Infrastructure.FilesDb.Models; -using Microsoft.EntityFrameworkCore; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; - -namespace DbContextHelpers; - -public static class MockFilesContextFactory -{ - public static async Task CreateMockFilesContextAsync() - { - var optionsBuilder = new DbContextOptionsBuilder(); - var config = TestSetup.ServiceProvider.GetRequiredService(); - var connectionString = config.GetConnectionString("SqlServer"); - optionsBuilder.UseSqlServer(connectionString, contextOptionsBuilder => contextOptionsBuilder.EnableRetryOnFailure(3, TimeSpan.FromSeconds(10), null)); - var testFilesContext = new FilesContext(optionsBuilder.Options); - - try - { - await testFilesContext.Database.EnsureCreatedAsync(); - } - catch - { - // NAR - } - - return testFilesContext; - } - - public static void AddMockFiles(this FilesContext mockFilesContext) - { - var combine = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../support/DbContextHelpers/TestData/files.json"); - var filesAsJson = File.ReadAllText(combine); - - var listFromJson = JsonSerializer.Deserialize>(filesAsJson, JsonSerializerOptions.Web)!; - - foreach(var item in listFromJson) - { - item.FileHandle = FileHandle.Create($"{item.DirectoryName}-{item.FileName}-{item.Id}"); - mockFilesContext.FileDetails.Add(item); - } - - try - { - mockFilesContext.SaveChanges(); - } - catch(Exception exception) - { - Console.WriteLine(exception); - } - } -} diff --git a/support/DbContextHelpers/TestConstants.cs b/support/DbContextHelpers/TestConstants.cs new file mode 100644 index 0000000..6847c1a --- /dev/null +++ b/support/DbContextHelpers/TestConstants.cs @@ -0,0 +1,6 @@ +namespace DbContextHelpers; + +public static class TestConstants +{ + public const string SharedIntegrationCollection = "Shared Integration Collection"; +} diff --git a/support/DbContextHelpers/TestData/files.json b/support/DbContextHelpers/TestData/files.json index 60e6554..7fc9a5a 100644 --- a/support/DbContextHelpers/TestData/files.json +++ b/support/DbContextHelpers/TestData/files.json @@ -14,11 +14,11 @@ "directoryName": { "value": "directory" }, - "fullNameWithPath": "\\directory\\file.txt", + "fullNameWithPath": "directory/file.txt", "fileSize": 91801, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = directory }-file.txt-FileId { Value = 0 }" }, "fileCreated": "2025-06-21T09:29:47.5780443+00:00", "fileLastModified": "2025-07-14T09:29:47.5782318+00:00", @@ -47,11 +47,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45197, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1 }" }, "fileCreated": "2025-06-21T09:21:52.4468007+00:00", "fileLastModified": "2025-07-14T09:21:52.446945+00:00", @@ -80,11 +80,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 22081, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 2 }" }, "fileCreated": "2025-06-21T09:21:52.4473639+00:00", "fileLastModified": "2025-07-14T09:21:52.4473644+00:00", @@ -113,11 +113,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 91451, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 3 }" }, "fileCreated": "2025-06-21T09:21:52.4473655+00:00", "fileLastModified": "2025-07-14T09:21:52.4473656+00:00", @@ -146,11 +146,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47003, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 4 }" }, "fileCreated": "2025-06-21T09:21:52.4473661+00:00", "fileLastModified": "2025-07-14T09:21:52.4473661+00:00", @@ -179,11 +179,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 74465, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 5 }" }, "fileCreated": "2025-06-21T09:21:52.4473665+00:00", "fileLastModified": "2025-07-14T09:21:52.4473665+00:00", @@ -212,11 +212,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86997, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 6 }" }, "fileCreated": "2025-06-21T09:21:52.4473684+00:00", "fileLastModified": "2025-07-14T09:21:52.4473685+00:00", @@ -245,11 +245,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 92722, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 7 }" }, "fileCreated": "2025-06-21T09:21:52.4473693+00:00", "fileLastModified": "2025-07-14T09:21:52.4473694+00:00", @@ -278,11 +278,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31919, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 8 }" }, "fileCreated": "2025-06-21T09:21:52.4473697+00:00", "fileLastModified": "2025-07-14T09:21:52.4473698+00:00", @@ -311,11 +311,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33939, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 9 }" }, "fileCreated": "2025-06-21T09:21:52.4473701+00:00", "fileLastModified": "2025-07-14T09:21:52.4473702+00:00", @@ -344,11 +344,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58887, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 10 }" }, "fileCreated": "2025-06-21T09:21:52.4473706+00:00", "fileLastModified": "2025-07-14T09:21:52.4473707+00:00", @@ -377,11 +377,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77037, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 11 }" }, "fileCreated": "2025-06-21T09:21:52.4473711+00:00", "fileLastModified": "2025-07-14T09:21:52.4473712+00:00", @@ -410,11 +410,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50881, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 12 }" }, "fileCreated": "2025-06-21T09:21:52.4473715+00:00", "fileLastModified": "2025-07-14T09:21:52.4473716+00:00", @@ -443,11 +443,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 40597, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 13 }" }, "fileCreated": "2025-06-21T09:21:52.4473719+00:00", "fileLastModified": "2025-07-14T09:21:52.447372+00:00", @@ -476,11 +476,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69420, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 14 }" }, "fileCreated": "2025-06-21T09:21:52.4473728+00:00", "fileLastModified": "2025-07-14T09:21:52.4473729+00:00", @@ -509,11 +509,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 70130, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 15 }" }, "fileCreated": "2025-06-21T09:21:52.447376+00:00", "fileLastModified": "2025-07-14T09:21:52.4473761+00:00", @@ -542,11 +542,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24422, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 16 }" }, "fileCreated": "2025-06-21T09:21:52.4473764+00:00", "fileLastModified": "2025-07-14T09:21:52.4473765+00:00", @@ -575,11 +575,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 71086, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 17 }" }, "fileCreated": "2025-06-21T09:21:52.4473768+00:00", "fileLastModified": "2025-07-14T09:21:52.4473769+00:00", @@ -608,11 +608,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 95960, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 18 }" }, "fileCreated": "2025-06-21T09:21:52.4473773+00:00", "fileLastModified": "2025-07-14T09:21:52.4473773+00:00", @@ -641,11 +641,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 71277, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 19 }" }, "fileCreated": "2025-06-21T09:21:52.4473777+00:00", "fileLastModified": "2025-07-14T09:21:52.4473777+00:00", @@ -674,11 +674,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 99512, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 20 }" }, "fileCreated": "2025-06-21T09:21:52.447378+00:00", "fileLastModified": "2025-07-14T09:21:52.4473781+00:00", @@ -707,11 +707,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 61750, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 21 }" }, "fileCreated": "2025-06-21T09:21:52.4473785+00:00", "fileLastModified": "2025-07-14T09:21:52.4473785+00:00", @@ -740,11 +740,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82420, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 22 }" }, "fileCreated": "2025-06-21T09:21:52.4473788+00:00", "fileLastModified": "2025-07-14T09:21:52.4473789+00:00", @@ -773,11 +773,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 92757, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 23 }" }, "fileCreated": "2025-06-21T09:21:52.44738+00:00", "fileLastModified": "2025-07-14T09:21:52.44738+00:00", @@ -806,11 +806,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86514, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 24 }" }, "fileCreated": "2025-06-21T09:21:52.4473804+00:00", "fileLastModified": "2025-07-14T09:21:52.4473804+00:00", @@ -839,11 +839,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 25428, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 25 }" }, "fileCreated": "2025-06-21T09:21:52.4473808+00:00", "fileLastModified": "2025-07-14T09:21:52.4473808+00:00", @@ -872,11 +872,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87843, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 26 }" }, "fileCreated": "2025-06-21T09:21:52.4473812+00:00", "fileLastModified": "2025-07-14T09:21:52.4473812+00:00", @@ -905,11 +905,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 32602, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 27 }" }, "fileCreated": "2025-06-21T09:21:52.4473816+00:00", "fileLastModified": "2025-07-14T09:21:52.4473816+00:00", @@ -938,11 +938,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 22558, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 28 }" }, "fileCreated": "2025-06-21T09:21:52.4473838+00:00", "fileLastModified": "2025-07-14T09:21:52.4473839+00:00", @@ -971,11 +971,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 56039, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 29 }" }, "fileCreated": "2025-06-21T09:21:52.4473842+00:00", "fileLastModified": "2025-07-14T09:21:52.4473843+00:00", @@ -1004,11 +1004,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 37750, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 30 }" }, "fileCreated": "2025-06-21T09:21:52.4473849+00:00", "fileLastModified": "2025-07-14T09:21:52.447385+00:00", @@ -1037,11 +1037,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 67259, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 31 }" }, "fileCreated": "2025-06-21T09:21:52.4473854+00:00", "fileLastModified": "2025-07-14T09:21:52.4473854+00:00", @@ -1070,11 +1070,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92135, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 32 }" }, "fileCreated": "2025-06-21T09:21:52.4473857+00:00", "fileLastModified": "2025-07-14T09:21:52.4473858+00:00", @@ -1103,11 +1103,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 73660, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 33 }" }, "fileCreated": "2025-06-21T09:21:52.4473861+00:00", "fileLastModified": "2025-07-14T09:21:52.4473862+00:00", @@ -1136,11 +1136,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85096, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 34 }" }, "fileCreated": "2025-06-21T09:21:52.4473866+00:00", "fileLastModified": "2025-07-14T09:21:52.4473867+00:00", @@ -1169,11 +1169,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 83504, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 35 }" }, "fileCreated": "2025-06-21T09:21:52.4473877+00:00", "fileLastModified": "2025-07-14T09:21:52.4473878+00:00", @@ -1202,11 +1202,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 67766, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 36 }" }, "fileCreated": "2025-06-21T09:21:52.4473881+00:00", "fileLastModified": "2025-07-14T09:21:52.4473881+00:00", @@ -1235,11 +1235,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 80133, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 37 }" }, "fileCreated": "2025-06-21T09:21:52.4473884+00:00", "fileLastModified": "2025-07-14T09:21:52.4473885+00:00", @@ -1268,11 +1268,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 33336, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 38 }" }, "fileCreated": "2025-06-21T09:21:52.4473888+00:00", "fileLastModified": "2025-07-14T09:21:52.4473889+00:00", @@ -1301,11 +1301,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59862, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 39 }" }, "fileCreated": "2025-06-21T09:21:52.4473892+00:00", "fileLastModified": "2025-07-14T09:21:52.4473893+00:00", @@ -1334,11 +1334,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 61689, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 40 }" }, "fileCreated": "2025-06-21T09:21:52.4473896+00:00", "fileLastModified": "2025-07-14T09:21:52.4473897+00:00", @@ -1367,11 +1367,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 56131, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 41 }" }, "fileCreated": "2025-06-21T09:21:52.4473959+00:00", "fileLastModified": "2025-07-14T09:21:52.447396+00:00", @@ -1400,11 +1400,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 45804, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 42 }" }, "fileCreated": "2025-06-21T09:21:52.4473963+00:00", "fileLastModified": "2025-07-14T09:21:52.4473963+00:00", @@ -1433,11 +1433,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83304, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 43 }" }, "fileCreated": "2025-06-21T09:21:52.4473966+00:00", "fileLastModified": "2025-07-14T09:21:52.4473967+00:00", @@ -1466,11 +1466,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 77990, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 44 }" }, "fileCreated": "2025-06-21T09:21:52.447397+00:00", "fileLastModified": "2025-07-14T09:21:52.4473971+00:00", @@ -1499,11 +1499,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 94107, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 45 }" }, "fileCreated": "2025-06-21T09:21:52.4473974+00:00", "fileLastModified": "2025-07-14T09:21:52.4473974+00:00", @@ -1532,11 +1532,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 89265, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 46 }" }, "fileCreated": "2025-06-21T09:21:52.4473977+00:00", "fileLastModified": "2025-07-14T09:21:52.4473978+00:00", @@ -1565,11 +1565,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 69576, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 47 }" }, "fileCreated": "2025-06-21T09:21:52.4473981+00:00", "fileLastModified": "2025-07-14T09:21:52.4473981+00:00", @@ -1598,11 +1598,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 79075, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 48 }" }, "fileCreated": "2025-06-21T09:21:52.4473984+00:00", "fileLastModified": "2025-07-14T09:21:52.4473985+00:00", @@ -1631,11 +1631,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 73093, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 49 }" }, "fileCreated": "2025-06-21T09:21:52.4473988+00:00", "fileLastModified": "2025-07-14T09:21:52.4473989+00:00", @@ -1664,11 +1664,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 84656, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 50 }" }, "fileCreated": "2025-06-21T09:21:52.4473992+00:00", "fileLastModified": "2025-07-14T09:21:52.4473992+00:00", @@ -1697,11 +1697,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46024, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 51 }" }, "fileCreated": "2025-06-21T09:21:52.4473995+00:00", "fileLastModified": "2025-07-14T09:21:52.4473996+00:00", @@ -1730,11 +1730,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 96449, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 52 }" }, "fileCreated": "2025-06-21T09:21:52.4474+00:00", "fileLastModified": "2025-07-14T09:21:52.4474+00:00", @@ -1763,11 +1763,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73917, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 53 }" }, "fileCreated": "2025-06-21T09:21:52.4474003+00:00", "fileLastModified": "2025-07-14T09:21:52.4474003+00:00", @@ -1796,11 +1796,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47345, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 54 }" }, "fileCreated": "2025-06-21T09:21:52.4474046+00:00", "fileLastModified": "2025-07-14T09:21:52.4474047+00:00", @@ -1829,11 +1829,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 26297, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 55 }" }, "fileCreated": "2025-06-21T09:21:52.447405+00:00", "fileLastModified": "2025-07-14T09:21:52.4474051+00:00", @@ -1862,11 +1862,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 24029, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 56 }" }, "fileCreated": "2025-06-21T09:21:52.4474054+00:00", "fileLastModified": "2025-07-14T09:21:52.4474054+00:00", @@ -1895,11 +1895,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 89972, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 57 }" }, "fileCreated": "2025-06-21T09:21:52.4474058+00:00", "fileLastModified": "2025-07-14T09:21:52.4474059+00:00", @@ -1928,11 +1928,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71491, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 58 }" }, "fileCreated": "2025-06-21T09:21:52.4474062+00:00", "fileLastModified": "2025-07-14T09:21:52.4474062+00:00", @@ -1961,11 +1961,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 34402, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 59 }" }, "fileCreated": "2025-06-21T09:21:52.4474065+00:00", "fileLastModified": "2025-07-14T09:21:52.4474066+00:00", @@ -1994,11 +1994,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 28728, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 60 }" }, "fileCreated": "2025-06-21T09:21:52.4474069+00:00", "fileLastModified": "2025-07-14T09:21:52.4474069+00:00", @@ -2027,11 +2027,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 30173, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 61 }" }, "fileCreated": "2025-06-21T09:21:52.4474072+00:00", "fileLastModified": "2025-07-14T09:21:52.4474073+00:00", @@ -2060,11 +2060,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21189, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 62 }" }, "fileCreated": "2025-06-21T09:21:52.4474076+00:00", "fileLastModified": "2025-07-14T09:21:52.4474077+00:00", @@ -2093,11 +2093,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 64949, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 63 }" }, "fileCreated": "2025-06-21T09:21:52.447408+00:00", "fileLastModified": "2025-07-14T09:21:52.4474081+00:00", @@ -2126,11 +2126,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31900, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 64 }" }, "fileCreated": "2025-06-21T09:21:52.4474084+00:00", "fileLastModified": "2025-07-14T09:21:52.4474084+00:00", @@ -2159,11 +2159,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 91710, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 65 }" }, "fileCreated": "2025-06-21T09:21:52.4474088+00:00", "fileLastModified": "2025-07-14T09:21:52.4474088+00:00", @@ -2192,11 +2192,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 87778, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 66 }" }, "fileCreated": "2025-06-21T09:21:52.4474116+00:00", "fileLastModified": "2025-07-14T09:21:52.4474117+00:00", @@ -2225,11 +2225,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55151, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 67 }" }, "fileCreated": "2025-06-21T09:21:52.447412+00:00", "fileLastModified": "2025-07-14T09:21:52.4474121+00:00", @@ -2258,11 +2258,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 23272, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 68 }" }, "fileCreated": "2025-06-21T09:21:52.4474124+00:00", "fileLastModified": "2025-07-14T09:21:52.4474124+00:00", @@ -2291,11 +2291,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 22997, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 69 }" }, "fileCreated": "2025-06-21T09:21:52.4474128+00:00", "fileLastModified": "2025-07-14T09:21:52.4474128+00:00", @@ -2324,11 +2324,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 78789, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 70 }" }, "fileCreated": "2025-06-21T09:21:52.4474131+00:00", "fileLastModified": "2025-07-14T09:21:52.4474132+00:00", @@ -2357,11 +2357,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 53010, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 71 }" }, "fileCreated": "2025-06-21T09:21:52.4474135+00:00", "fileLastModified": "2025-07-14T09:21:52.4474135+00:00", @@ -2390,11 +2390,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33781, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 72 }" }, "fileCreated": "2025-06-21T09:21:52.4474138+00:00", "fileLastModified": "2025-07-14T09:21:52.4474139+00:00", @@ -2423,11 +2423,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44889, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 73 }" }, "fileCreated": "2025-06-21T09:21:52.4474142+00:00", "fileLastModified": "2025-07-14T09:21:52.4474142+00:00", @@ -2456,11 +2456,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 99071, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 74 }" }, "fileCreated": "2025-06-21T09:21:52.4474146+00:00", "fileLastModified": "2025-07-14T09:21:52.4474146+00:00", @@ -2489,11 +2489,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60806, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 75 }" }, "fileCreated": "2025-06-21T09:21:52.447415+00:00", "fileLastModified": "2025-07-14T09:21:52.447415+00:00", @@ -2522,11 +2522,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 43593, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 76 }" }, "fileCreated": "2025-06-21T09:21:52.4474154+00:00", "fileLastModified": "2025-07-14T09:21:52.4474154+00:00", @@ -2555,11 +2555,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46887, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 77 }" }, "fileCreated": "2025-06-21T09:21:52.4474157+00:00", "fileLastModified": "2025-07-14T09:21:52.4474158+00:00", @@ -2588,11 +2588,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 57002, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 78 }" }, "fileCreated": "2025-06-21T09:21:52.4474161+00:00", "fileLastModified": "2025-07-14T09:21:52.4474161+00:00", @@ -2621,11 +2621,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94978, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 79 }" }, "fileCreated": "2025-06-21T09:21:52.4474164+00:00", "fileLastModified": "2025-07-14T09:21:52.4474165+00:00", @@ -2654,11 +2654,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87664, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 80 }" }, "fileCreated": "2025-06-21T09:21:52.4474192+00:00", "fileLastModified": "2025-07-14T09:21:52.4474192+00:00", @@ -2687,11 +2687,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 25569, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 81 }" }, "fileCreated": "2025-06-21T09:21:52.4474195+00:00", "fileLastModified": "2025-07-14T09:21:52.4474196+00:00", @@ -2720,11 +2720,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70974, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 82 }" }, "fileCreated": "2025-06-21T09:21:52.4474199+00:00", "fileLastModified": "2025-07-14T09:21:52.44742+00:00", @@ -2753,11 +2753,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 88604, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 83 }" }, "fileCreated": "2025-06-21T09:21:52.4474203+00:00", "fileLastModified": "2025-07-14T09:21:52.4474204+00:00", @@ -2786,11 +2786,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 88894, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 84 }" }, "fileCreated": "2025-06-21T09:21:52.4474207+00:00", "fileLastModified": "2025-07-14T09:21:52.4474208+00:00", @@ -2819,11 +2819,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 74129, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 85 }" }, "fileCreated": "2025-06-21T09:21:52.4474211+00:00", "fileLastModified": "2025-07-14T09:21:52.4474211+00:00", @@ -2852,11 +2852,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92728, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 86 }" }, "fileCreated": "2025-06-21T09:21:52.4474215+00:00", "fileLastModified": "2025-07-14T09:21:52.4474215+00:00", @@ -2885,11 +2885,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 62964, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 87 }" }, "fileCreated": "2025-06-21T09:21:52.4474219+00:00", "fileLastModified": "2025-07-14T09:21:52.4474219+00:00", @@ -2918,11 +2918,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95143, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 88 }" }, "fileCreated": "2025-06-21T09:21:52.4474222+00:00", "fileLastModified": "2025-07-14T09:21:52.4474223+00:00", @@ -2951,11 +2951,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95528, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 89 }" }, "fileCreated": "2025-06-21T09:21:52.4474226+00:00", "fileLastModified": "2025-07-14T09:21:52.4474227+00:00", @@ -2984,11 +2984,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 96387, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 90 }" }, "fileCreated": "2025-06-21T09:21:52.447423+00:00", "fileLastModified": "2025-07-14T09:21:52.4474231+00:00", @@ -3017,11 +3017,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 51880, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 91 }" }, "fileCreated": "2025-06-21T09:21:52.4474234+00:00", "fileLastModified": "2025-07-14T09:21:52.4474235+00:00", @@ -3050,11 +3050,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69143, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 92 }" }, "fileCreated": "2025-06-21T09:21:52.4474238+00:00", "fileLastModified": "2025-07-14T09:21:52.4474238+00:00", @@ -3083,11 +3083,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 88989, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 93 }" }, "fileCreated": "2025-06-21T09:21:52.4474267+00:00", "fileLastModified": "2025-07-14T09:21:52.4474267+00:00", @@ -3116,11 +3116,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21255, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 94 }" }, "fileCreated": "2025-06-21T09:21:52.4474271+00:00", "fileLastModified": "2025-07-14T09:21:52.4474271+00:00", @@ -3149,11 +3149,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 51001, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 95 }" }, "fileCreated": "2025-06-21T09:21:52.4474275+00:00", "fileLastModified": "2025-07-14T09:21:52.4474275+00:00", @@ -3182,11 +3182,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 36256, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 96 }" }, "fileCreated": "2025-06-21T09:21:52.4474278+00:00", "fileLastModified": "2025-07-14T09:21:52.4474279+00:00", @@ -3215,11 +3215,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37667, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 97 }" }, "fileCreated": "2025-06-21T09:21:52.4474282+00:00", "fileLastModified": "2025-07-14T09:21:52.4474283+00:00", @@ -3248,11 +3248,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 42190, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 98 }" }, "fileCreated": "2025-06-21T09:21:52.4474286+00:00", "fileLastModified": "2025-07-14T09:21:52.4474286+00:00", @@ -3281,11 +3281,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59120, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 99 }" }, "fileCreated": "2025-06-21T09:21:52.4474289+00:00", "fileLastModified": "2025-07-14T09:21:52.447429+00:00", @@ -3314,11 +3314,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87585, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 100 }" }, "fileCreated": "2025-06-21T09:21:52.4474293+00:00", "fileLastModified": "2025-07-14T09:21:52.4474294+00:00", @@ -3347,11 +3347,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73514, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 101 }" }, "fileCreated": "2025-06-21T09:21:52.4474297+00:00", "fileLastModified": "2025-07-14T09:21:52.4474297+00:00", @@ -3380,11 +3380,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 45452, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 102 }" }, "fileCreated": "2025-06-21T09:21:52.44743+00:00", "fileLastModified": "2025-07-14T09:21:52.4474301+00:00", @@ -3413,11 +3413,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 38231, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 103 }" }, "fileCreated": "2025-06-21T09:21:52.4474304+00:00", "fileLastModified": "2025-07-14T09:21:52.4474304+00:00", @@ -3446,11 +3446,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 84941, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 104 }" }, "fileCreated": "2025-06-21T09:21:52.4474307+00:00", "fileLastModified": "2025-07-14T09:21:52.4474308+00:00", @@ -3479,11 +3479,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 21133, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 105 }" }, "fileCreated": "2025-06-21T09:21:52.4474311+00:00", "fileLastModified": "2025-07-14T09:21:52.4474311+00:00", @@ -3512,11 +3512,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 50230, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 106 }" }, "fileCreated": "2025-06-21T09:21:52.4474314+00:00", "fileLastModified": "2025-07-14T09:21:52.4474315+00:00", @@ -3545,11 +3545,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23946, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 107 }" }, "fileCreated": "2025-06-21T09:21:52.4474342+00:00", "fileLastModified": "2025-07-14T09:21:52.4474343+00:00", @@ -3578,11 +3578,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33796, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 108 }" }, "fileCreated": "2025-06-21T09:21:52.4474346+00:00", "fileLastModified": "2025-07-14T09:21:52.4474347+00:00", @@ -3611,11 +3611,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 88867, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 109 }" }, "fileCreated": "2025-06-21T09:21:52.447435+00:00", "fileLastModified": "2025-07-14T09:21:52.447435+00:00", @@ -3644,11 +3644,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 83394, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 110 }" }, "fileCreated": "2025-06-21T09:21:52.4474354+00:00", "fileLastModified": "2025-07-14T09:21:52.4474354+00:00", @@ -3677,11 +3677,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 30636, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 111 }" }, "fileCreated": "2025-06-21T09:21:52.4474357+00:00", "fileLastModified": "2025-07-14T09:21:52.4474358+00:00", @@ -3710,11 +3710,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69847, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 112 }" }, "fileCreated": "2025-06-21T09:21:52.4474361+00:00", "fileLastModified": "2025-07-14T09:21:52.4474361+00:00", @@ -3743,11 +3743,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29072, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 113 }" }, "fileCreated": "2025-06-21T09:21:52.4474365+00:00", "fileLastModified": "2025-07-14T09:21:52.4474365+00:00", @@ -3776,11 +3776,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74906, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 114 }" }, "fileCreated": "2025-06-21T09:21:52.4474368+00:00", "fileLastModified": "2025-07-14T09:21:52.4474369+00:00", @@ -3809,11 +3809,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 93669, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 115 }" }, "fileCreated": "2025-06-21T09:21:52.4474372+00:00", "fileLastModified": "2025-07-14T09:21:52.4474373+00:00", @@ -3842,11 +3842,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63978, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 116 }" }, "fileCreated": "2025-06-21T09:21:52.4474376+00:00", "fileLastModified": "2025-07-14T09:21:52.4474377+00:00", @@ -3875,11 +3875,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59216, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 117 }" }, "fileCreated": "2025-06-21T09:21:52.447438+00:00", "fileLastModified": "2025-07-14T09:21:52.4474381+00:00", @@ -3908,11 +3908,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27323, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 118 }" }, "fileCreated": "2025-06-21T09:21:52.4474384+00:00", "fileLastModified": "2025-07-14T09:21:52.4474385+00:00", @@ -3941,11 +3941,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 78115, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 119 }" }, "fileCreated": "2025-06-21T09:21:52.4474388+00:00", "fileLastModified": "2025-07-14T09:21:52.4474388+00:00", @@ -3974,11 +3974,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 95928, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 120 }" }, "fileCreated": "2025-06-21T09:21:52.4474392+00:00", "fileLastModified": "2025-07-14T09:21:52.4474392+00:00", @@ -4007,11 +4007,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96278, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 121 }" }, "fileCreated": "2025-06-21T09:21:52.447442+00:00", "fileLastModified": "2025-07-14T09:21:52.447442+00:00", @@ -4040,11 +4040,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 88683, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 122 }" }, "fileCreated": "2025-06-21T09:21:52.4474424+00:00", "fileLastModified": "2025-07-14T09:21:52.4474424+00:00", @@ -4073,11 +4073,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 42552, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 123 }" }, "fileCreated": "2025-06-21T09:21:52.4474427+00:00", "fileLastModified": "2025-07-14T09:21:52.4474428+00:00", @@ -4106,11 +4106,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82049, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 124 }" }, "fileCreated": "2025-06-21T09:21:52.4474431+00:00", "fileLastModified": "2025-07-14T09:21:52.4474432+00:00", @@ -4139,11 +4139,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 43855, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 125 }" }, "fileCreated": "2025-06-21T09:21:52.4474435+00:00", "fileLastModified": "2025-07-14T09:21:52.4474435+00:00", @@ -4172,11 +4172,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 61105, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 126 }" }, "fileCreated": "2025-06-21T09:21:52.4474439+00:00", "fileLastModified": "2025-07-14T09:21:52.4474439+00:00", @@ -4205,11 +4205,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33109, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 127 }" }, "fileCreated": "2025-06-21T09:21:52.4474442+00:00", "fileLastModified": "2025-07-14T09:21:52.4474443+00:00", @@ -4238,11 +4238,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37948, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 128 }" }, "fileCreated": "2025-06-21T09:21:52.4474446+00:00", "fileLastModified": "2025-07-14T09:21:52.4474447+00:00", @@ -4271,11 +4271,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 39386, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 129 }" }, "fileCreated": "2025-06-21T09:21:52.447445+00:00", "fileLastModified": "2025-07-14T09:21:52.447445+00:00", @@ -4304,11 +4304,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 35208, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 130 }" }, "fileCreated": "2025-06-21T09:21:52.4474455+00:00", "fileLastModified": "2025-07-14T09:21:52.4474455+00:00", @@ -4337,11 +4337,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94826, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 131 }" }, "fileCreated": "2025-06-21T09:21:52.4474613+00:00", "fileLastModified": "2025-07-14T09:21:52.4474614+00:00", @@ -4370,11 +4370,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92058, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 132 }" }, "fileCreated": "2025-06-21T09:21:52.4474619+00:00", "fileLastModified": "2025-07-14T09:21:52.4474619+00:00", @@ -4403,11 +4403,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 75008, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 133 }" }, "fileCreated": "2025-06-21T09:21:52.4474622+00:00", "fileLastModified": "2025-07-14T09:21:52.4474623+00:00", @@ -4436,11 +4436,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 64012, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 134 }" }, "fileCreated": "2025-06-21T09:21:52.4474626+00:00", "fileLastModified": "2025-07-14T09:21:52.4474626+00:00", @@ -4469,11 +4469,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 94915, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 135 }" }, "fileCreated": "2025-06-21T09:21:52.447463+00:00", "fileLastModified": "2025-07-14T09:21:52.447463+00:00", @@ -4502,11 +4502,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 39130, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 136 }" }, "fileCreated": "2025-06-21T09:21:52.4474634+00:00", "fileLastModified": "2025-07-14T09:21:52.4474634+00:00", @@ -4535,11 +4535,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 62124, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 137 }" }, "fileCreated": "2025-06-21T09:21:52.4474638+00:00", "fileLastModified": "2025-07-14T09:21:52.4474638+00:00", @@ -4568,11 +4568,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53362, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 138 }" }, "fileCreated": "2025-06-21T09:21:52.4474641+00:00", "fileLastModified": "2025-07-14T09:21:52.4474642+00:00", @@ -4601,11 +4601,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45427, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 139 }" }, "fileCreated": "2025-06-21T09:21:52.4474645+00:00", "fileLastModified": "2025-07-14T09:21:52.4474645+00:00", @@ -4634,11 +4634,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 50013, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 140 }" }, "fileCreated": "2025-06-21T09:21:52.4474649+00:00", "fileLastModified": "2025-07-14T09:21:52.4474649+00:00", @@ -4667,11 +4667,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47677, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 141 }" }, "fileCreated": "2025-06-21T09:21:52.4474652+00:00", "fileLastModified": "2025-07-14T09:21:52.4474653+00:00", @@ -4700,11 +4700,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60652, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 142 }" }, "fileCreated": "2025-06-21T09:21:52.4474656+00:00", "fileLastModified": "2025-07-14T09:21:52.4474657+00:00", @@ -4733,11 +4733,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26598, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 143 }" }, "fileCreated": "2025-06-21T09:21:52.447466+00:00", "fileLastModified": "2025-07-14T09:21:52.4474661+00:00", @@ -4766,11 +4766,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 81446, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 144 }" }, "fileCreated": "2025-06-21T09:21:52.4474705+00:00", "fileLastModified": "2025-07-14T09:21:52.4474705+00:00", @@ -4799,11 +4799,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32334, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 145 }" }, "fileCreated": "2025-06-21T09:21:52.4474708+00:00", "fileLastModified": "2025-07-14T09:21:52.4474709+00:00", @@ -4832,11 +4832,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69390, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 146 }" }, "fileCreated": "2025-06-21T09:21:52.4474712+00:00", "fileLastModified": "2025-07-14T09:21:52.4474712+00:00", @@ -4865,11 +4865,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77025, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 147 }" }, "fileCreated": "2025-06-21T09:21:52.4474716+00:00", "fileLastModified": "2025-07-14T09:21:52.4474717+00:00", @@ -4898,11 +4898,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63805, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 148 }" }, "fileCreated": "2025-06-21T09:21:52.447472+00:00", "fileLastModified": "2025-07-14T09:21:52.447472+00:00", @@ -4931,11 +4931,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29831, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 149 }" }, "fileCreated": "2025-06-21T09:21:52.4474724+00:00", "fileLastModified": "2025-07-14T09:21:52.4474724+00:00", @@ -4964,11 +4964,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 97998, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 150 }" }, "fileCreated": "2025-06-21T09:21:52.4474727+00:00", "fileLastModified": "2025-07-14T09:21:52.4474728+00:00", @@ -4997,11 +4997,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 20983, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 151 }" }, "fileCreated": "2025-06-21T09:21:52.4474731+00:00", "fileLastModified": "2025-07-14T09:21:52.4474732+00:00", @@ -5030,11 +5030,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80813, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 152 }" }, "fileCreated": "2025-06-21T09:21:52.4474735+00:00", "fileLastModified": "2025-07-14T09:21:52.4474735+00:00", @@ -5063,11 +5063,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68510, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 153 }" }, "fileCreated": "2025-06-21T09:21:52.4474738+00:00", "fileLastModified": "2025-07-14T09:21:52.4474739+00:00", @@ -5096,11 +5096,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 30474, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 154 }" }, "fileCreated": "2025-06-21T09:21:52.4474742+00:00", "fileLastModified": "2025-07-14T09:21:52.4474742+00:00", @@ -5129,11 +5129,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 49695, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 155 }" }, "fileCreated": "2025-06-21T09:21:52.4474746+00:00", "fileLastModified": "2025-07-14T09:21:52.4474746+00:00", @@ -5162,11 +5162,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 61275, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 156 }" }, "fileCreated": "2025-06-21T09:21:52.4474749+00:00", "fileLastModified": "2025-07-14T09:21:52.447475+00:00", @@ -5195,11 +5195,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 30751, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 157 }" }, "fileCreated": "2025-06-21T09:21:52.4474753+00:00", "fileLastModified": "2025-07-14T09:21:52.4474753+00:00", @@ -5228,11 +5228,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83117, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 158 }" }, "fileCreated": "2025-06-21T09:21:52.4474791+00:00", "fileLastModified": "2025-07-14T09:21:52.4474792+00:00", @@ -5261,11 +5261,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43413, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 159 }" }, "fileCreated": "2025-06-21T09:21:52.4474795+00:00", "fileLastModified": "2025-07-14T09:21:52.4474795+00:00", @@ -5294,11 +5294,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 38498, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 160 }" }, "fileCreated": "2025-06-21T09:21:52.4474799+00:00", "fileLastModified": "2025-07-14T09:21:52.4474799+00:00", @@ -5327,11 +5327,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 40079, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 161 }" }, "fileCreated": "2025-06-21T09:21:52.4474802+00:00", "fileLastModified": "2025-07-14T09:21:52.4474803+00:00", @@ -5360,11 +5360,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 67404, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 162 }" }, "fileCreated": "2025-06-21T09:21:52.4474806+00:00", "fileLastModified": "2025-07-14T09:21:52.4474806+00:00", @@ -5393,11 +5393,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44683, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 163 }" }, "fileCreated": "2025-06-21T09:21:52.4474809+00:00", "fileLastModified": "2025-07-14T09:21:52.447481+00:00", @@ -5426,11 +5426,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 38037, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 164 }" }, "fileCreated": "2025-06-21T09:21:52.4474813+00:00", "fileLastModified": "2025-07-14T09:21:52.4474813+00:00", @@ -5459,11 +5459,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32992, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 165 }" }, "fileCreated": "2025-06-21T09:21:52.4474816+00:00", "fileLastModified": "2025-07-14T09:21:52.4474817+00:00", @@ -5492,11 +5492,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 62298, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 166 }" }, "fileCreated": "2025-06-21T09:21:52.447482+00:00", "fileLastModified": "2025-07-14T09:21:52.4474821+00:00", @@ -5525,11 +5525,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 71170, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 167 }" }, "fileCreated": "2025-06-21T09:21:52.4474824+00:00", "fileLastModified": "2025-07-14T09:21:52.4474824+00:00", @@ -5558,11 +5558,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 93917, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 168 }" }, "fileCreated": "2025-06-21T09:21:52.4474827+00:00", "fileLastModified": "2025-07-14T09:21:52.4474828+00:00", @@ -5591,11 +5591,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29822, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 169 }" }, "fileCreated": "2025-06-21T09:21:52.4474831+00:00", "fileLastModified": "2025-07-14T09:21:52.4474831+00:00", @@ -5624,11 +5624,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 30605, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 170 }" }, "fileCreated": "2025-06-21T09:21:52.4474834+00:00", "fileLastModified": "2025-07-14T09:21:52.4474835+00:00", @@ -5657,11 +5657,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47122, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 171 }" }, "fileCreated": "2025-06-21T09:21:52.4474838+00:00", "fileLastModified": "2025-07-14T09:21:52.4474838+00:00", @@ -5690,11 +5690,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69762, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 172 }" }, "fileCreated": "2025-06-21T09:21:52.4474866+00:00", "fileLastModified": "2025-07-14T09:21:52.4474866+00:00", @@ -5723,11 +5723,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 93881, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 173 }" }, "fileCreated": "2025-06-21T09:21:52.4474869+00:00", "fileLastModified": "2025-07-14T09:21:52.447487+00:00", @@ -5756,11 +5756,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90471, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 174 }" }, "fileCreated": "2025-06-21T09:21:52.4474873+00:00", "fileLastModified": "2025-07-14T09:21:52.4474873+00:00", @@ -5789,11 +5789,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 62933, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 175 }" }, "fileCreated": "2025-06-21T09:21:52.4474877+00:00", "fileLastModified": "2025-07-14T09:21:52.4474877+00:00", @@ -5822,11 +5822,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61313, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 176 }" }, "fileCreated": "2025-06-21T09:21:52.447488+00:00", "fileLastModified": "2025-07-14T09:21:52.4474881+00:00", @@ -5855,11 +5855,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 71654, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 177 }" }, "fileCreated": "2025-06-21T09:21:52.4474884+00:00", "fileLastModified": "2025-07-14T09:21:52.4474884+00:00", @@ -5888,11 +5888,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 26336, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 178 }" }, "fileCreated": "2025-06-21T09:21:52.4474888+00:00", "fileLastModified": "2025-07-14T09:21:52.4474889+00:00", @@ -5921,11 +5921,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 98809, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 179 }" }, "fileCreated": "2025-06-21T09:21:52.4474892+00:00", "fileLastModified": "2025-07-14T09:21:52.4474892+00:00", @@ -5954,11 +5954,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 61545, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 180 }" }, "fileCreated": "2025-06-21T09:21:52.4474896+00:00", "fileLastModified": "2025-07-14T09:21:52.4474896+00:00", @@ -5987,11 +5987,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37426, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 181 }" }, "fileCreated": "2025-06-21T09:21:52.4474899+00:00", "fileLastModified": "2025-07-14T09:21:52.44749+00:00", @@ -6020,11 +6020,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 45445, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 182 }" }, "fileCreated": "2025-06-21T09:21:52.4474903+00:00", "fileLastModified": "2025-07-14T09:21:52.4474904+00:00", @@ -6053,11 +6053,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 81837, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 183 }" }, "fileCreated": "2025-06-21T09:21:52.4474907+00:00", "fileLastModified": "2025-07-14T09:21:52.4474908+00:00", @@ -6086,11 +6086,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 81405, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 184 }" }, "fileCreated": "2025-06-21T09:21:52.4474911+00:00", "fileLastModified": "2025-07-14T09:21:52.4474912+00:00", @@ -6119,11 +6119,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 59755, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 185 }" }, "fileCreated": "2025-06-21T09:21:52.4474943+00:00", "fileLastModified": "2025-07-14T09:21:52.4474944+00:00", @@ -6152,11 +6152,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 22534, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 186 }" }, "fileCreated": "2025-06-21T09:21:52.4474947+00:00", "fileLastModified": "2025-07-14T09:21:52.4474947+00:00", @@ -6185,11 +6185,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22778, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 187 }" }, "fileCreated": "2025-06-21T09:21:52.447495+00:00", "fileLastModified": "2025-07-14T09:21:52.4474951+00:00", @@ -6218,11 +6218,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 25029, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 188 }" }, "fileCreated": "2025-06-21T09:21:52.4474954+00:00", "fileLastModified": "2025-07-14T09:21:52.4474955+00:00", @@ -6251,11 +6251,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 61079, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 189 }" }, "fileCreated": "2025-06-21T09:21:52.4474958+00:00", "fileLastModified": "2025-07-14T09:21:52.4474958+00:00", @@ -6284,11 +6284,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60829, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 190 }" }, "fileCreated": "2025-06-21T09:21:52.4474962+00:00", "fileLastModified": "2025-07-14T09:21:52.4474962+00:00", @@ -6317,11 +6317,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95889, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 191 }" }, "fileCreated": "2025-06-21T09:21:52.4474965+00:00", "fileLastModified": "2025-07-14T09:21:52.4474966+00:00", @@ -6350,11 +6350,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65990, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 192 }" }, "fileCreated": "2025-06-21T09:21:52.4474969+00:00", "fileLastModified": "2025-07-14T09:21:52.447497+00:00", @@ -6383,11 +6383,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 88857, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 193 }" }, "fileCreated": "2025-06-21T09:21:52.4474972+00:00", "fileLastModified": "2025-07-14T09:21:52.4474973+00:00", @@ -6416,11 +6416,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41121, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 194 }" }, "fileCreated": "2025-06-21T09:21:52.4474976+00:00", "fileLastModified": "2025-07-14T09:21:52.4474977+00:00", @@ -6449,11 +6449,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64111, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 195 }" }, "fileCreated": "2025-06-21T09:21:52.447498+00:00", "fileLastModified": "2025-07-14T09:21:52.447498+00:00", @@ -6482,11 +6482,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 26192, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 196 }" }, "fileCreated": "2025-06-21T09:21:52.4474984+00:00", "fileLastModified": "2025-07-14T09:21:52.4474985+00:00", @@ -6515,11 +6515,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79984, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 197 }" }, "fileCreated": "2025-06-21T09:21:52.4474988+00:00", "fileLastModified": "2025-07-14T09:21:52.4474988+00:00", @@ -6548,11 +6548,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 84247, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 198 }" }, "fileCreated": "2025-06-21T09:21:52.4474992+00:00", "fileLastModified": "2025-07-14T09:21:52.4474992+00:00", @@ -6581,11 +6581,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86621, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 199 }" }, "fileCreated": "2025-06-21T09:21:52.4475023+00:00", "fileLastModified": "2025-07-14T09:21:52.4475024+00:00", @@ -6614,11 +6614,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 74834, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 200 }" }, "fileCreated": "2025-06-21T09:21:52.4475027+00:00", "fileLastModified": "2025-07-14T09:21:52.4475028+00:00", @@ -6647,11 +6647,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 63692, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 201 }" }, "fileCreated": "2025-06-21T09:21:52.4475031+00:00", "fileLastModified": "2025-07-14T09:21:52.4475032+00:00", @@ -6680,11 +6680,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58147, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 202 }" }, "fileCreated": "2025-06-21T09:21:52.4475035+00:00", "fileLastModified": "2025-07-14T09:21:52.4475036+00:00", @@ -6713,11 +6713,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 68715, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 203 }" }, "fileCreated": "2025-06-21T09:21:52.4475039+00:00", "fileLastModified": "2025-07-14T09:21:52.447504+00:00", @@ -6746,11 +6746,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 26560, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 204 }" }, "fileCreated": "2025-06-21T09:21:52.4475043+00:00", "fileLastModified": "2025-07-14T09:21:52.4475044+00:00", @@ -6779,11 +6779,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 21352, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 205 }" }, "fileCreated": "2025-06-21T09:21:52.4475047+00:00", "fileLastModified": "2025-07-14T09:21:52.4475047+00:00", @@ -6812,11 +6812,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 52599, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 206 }" }, "fileCreated": "2025-06-21T09:21:52.4475051+00:00", "fileLastModified": "2025-07-14T09:21:52.4475051+00:00", @@ -6845,11 +6845,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98541, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 207 }" }, "fileCreated": "2025-06-21T09:21:52.4475055+00:00", "fileLastModified": "2025-07-14T09:21:52.4475055+00:00", @@ -6878,11 +6878,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 45175, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 208 }" }, "fileCreated": "2025-06-21T09:21:52.4475059+00:00", "fileLastModified": "2025-07-14T09:21:52.4475059+00:00", @@ -6911,11 +6911,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 54274, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 209 }" }, "fileCreated": "2025-06-21T09:21:52.4475062+00:00", "fileLastModified": "2025-07-14T09:21:52.4475063+00:00", @@ -6944,11 +6944,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 36233, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 210 }" }, "fileCreated": "2025-06-21T09:21:52.4475066+00:00", "fileLastModified": "2025-07-14T09:21:52.4475066+00:00", @@ -6977,11 +6977,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 31965, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 211 }" }, "fileCreated": "2025-06-21T09:21:52.447507+00:00", "fileLastModified": "2025-07-14T09:21:52.447507+00:00", @@ -7010,11 +7010,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63725, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 212 }" }, "fileCreated": "2025-06-21T09:21:52.4475073+00:00", "fileLastModified": "2025-07-14T09:21:52.4475074+00:00", @@ -7043,11 +7043,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33172, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 213 }" }, "fileCreated": "2025-06-21T09:21:52.4475101+00:00", "fileLastModified": "2025-07-14T09:21:52.4475101+00:00", @@ -7076,11 +7076,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28437, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 214 }" }, "fileCreated": "2025-06-21T09:21:52.4475104+00:00", "fileLastModified": "2025-07-14T09:21:52.4475105+00:00", @@ -7109,11 +7109,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 45241, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 215 }" }, "fileCreated": "2025-06-21T09:21:52.4475108+00:00", "fileLastModified": "2025-07-14T09:21:52.4475108+00:00", @@ -7142,11 +7142,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48793, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 216 }" }, "fileCreated": "2025-06-21T09:21:52.4475112+00:00", "fileLastModified": "2025-07-14T09:21:52.4475112+00:00", @@ -7175,11 +7175,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 48472, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 217 }" }, "fileCreated": "2025-06-21T09:21:52.4475115+00:00", "fileLastModified": "2025-07-14T09:21:52.4475116+00:00", @@ -7208,11 +7208,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80187, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 218 }" }, "fileCreated": "2025-06-21T09:21:52.4475119+00:00", "fileLastModified": "2025-07-14T09:21:52.4475119+00:00", @@ -7241,11 +7241,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34845, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 219 }" }, "fileCreated": "2025-06-21T09:21:52.4475123+00:00", "fileLastModified": "2025-07-14T09:21:52.4475123+00:00", @@ -7274,11 +7274,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32303, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 220 }" }, "fileCreated": "2025-06-21T09:21:52.4475127+00:00", "fileLastModified": "2025-07-14T09:21:52.4475127+00:00", @@ -7307,11 +7307,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 81904, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 221 }" }, "fileCreated": "2025-06-21T09:21:52.447513+00:00", "fileLastModified": "2025-07-14T09:21:52.4475131+00:00", @@ -7340,11 +7340,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70004, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 222 }" }, "fileCreated": "2025-06-21T09:21:52.4475134+00:00", "fileLastModified": "2025-07-14T09:21:52.4475135+00:00", @@ -7373,11 +7373,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73278, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 223 }" }, "fileCreated": "2025-06-21T09:21:52.4475138+00:00", "fileLastModified": "2025-07-14T09:21:52.4475138+00:00", @@ -7406,11 +7406,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 93535, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 224 }" }, "fileCreated": "2025-06-21T09:21:52.4475141+00:00", "fileLastModified": "2025-07-14T09:21:52.4475142+00:00", @@ -7439,11 +7439,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 20024, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 225 }" }, "fileCreated": "2025-06-21T09:21:52.4475145+00:00", "fileLastModified": "2025-07-14T09:21:52.4475145+00:00", @@ -7472,11 +7472,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47472, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 226 }" }, "fileCreated": "2025-06-21T09:21:52.4475176+00:00", "fileLastModified": "2025-07-14T09:21:52.4475176+00:00", @@ -7505,11 +7505,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72507, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 227 }" }, "fileCreated": "2025-06-21T09:21:52.4475179+00:00", "fileLastModified": "2025-07-14T09:21:52.447518+00:00", @@ -7538,11 +7538,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66156, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 228 }" }, "fileCreated": "2025-06-21T09:21:52.4475183+00:00", "fileLastModified": "2025-07-14T09:21:52.4475184+00:00", @@ -7571,11 +7571,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 41331, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 229 }" }, "fileCreated": "2025-06-21T09:21:52.4475187+00:00", "fileLastModified": "2025-07-14T09:21:52.4475188+00:00", @@ -7604,11 +7604,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 82017, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 230 }" }, "fileCreated": "2025-06-21T09:21:52.4475191+00:00", "fileLastModified": "2025-07-14T09:21:52.4475192+00:00", @@ -7637,11 +7637,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 42940, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 231 }" }, "fileCreated": "2025-06-21T09:21:52.4475195+00:00", "fileLastModified": "2025-07-14T09:21:52.4475195+00:00", @@ -7670,11 +7670,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 20649, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 232 }" }, "fileCreated": "2025-06-21T09:21:52.4475198+00:00", "fileLastModified": "2025-07-14T09:21:52.4475199+00:00", @@ -7703,11 +7703,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72921, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 233 }" }, "fileCreated": "2025-06-21T09:21:52.4475202+00:00", "fileLastModified": "2025-07-14T09:21:52.4475202+00:00", @@ -7736,11 +7736,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60651, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 234 }" }, "fileCreated": "2025-06-21T09:21:52.4475206+00:00", "fileLastModified": "2025-07-14T09:21:52.4475207+00:00", @@ -7769,11 +7769,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 97913, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 235 }" }, "fileCreated": "2025-06-21T09:21:52.447521+00:00", "fileLastModified": "2025-07-14T09:21:52.447521+00:00", @@ -7802,11 +7802,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47714, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 236 }" }, "fileCreated": "2025-06-21T09:21:52.4475214+00:00", "fileLastModified": "2025-07-14T09:21:52.4475214+00:00", @@ -7835,11 +7835,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 61287, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 237 }" }, "fileCreated": "2025-06-21T09:21:52.4475218+00:00", "fileLastModified": "2025-07-14T09:21:52.4475218+00:00", @@ -7868,11 +7868,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 74058, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 238 }" }, "fileCreated": "2025-06-21T09:21:52.4475221+00:00", "fileLastModified": "2025-07-14T09:21:52.4475222+00:00", @@ -7901,11 +7901,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96321, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 239 }" }, "fileCreated": "2025-06-21T09:21:52.4475225+00:00", "fileLastModified": "2025-07-14T09:21:52.4475226+00:00", @@ -7934,11 +7934,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 85485, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 240 }" }, "fileCreated": "2025-06-21T09:21:52.4475244+00:00", "fileLastModified": "2025-07-14T09:21:52.4475245+00:00", @@ -7967,11 +7967,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 65931, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 241 }" }, "fileCreated": "2025-06-21T09:21:52.4475249+00:00", "fileLastModified": "2025-07-14T09:21:52.4475249+00:00", @@ -8000,11 +8000,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 38986, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 242 }" }, "fileCreated": "2025-06-21T09:21:52.4475253+00:00", "fileLastModified": "2025-07-14T09:21:52.4475253+00:00", @@ -8033,11 +8033,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 93165, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 243 }" }, "fileCreated": "2025-06-21T09:21:52.4475257+00:00", "fileLastModified": "2025-07-14T09:21:52.4475258+00:00", @@ -8066,11 +8066,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57497, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 244 }" }, "fileCreated": "2025-06-21T09:21:52.4475261+00:00", "fileLastModified": "2025-07-14T09:21:52.4475261+00:00", @@ -8099,11 +8099,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 42468, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 245 }" }, "fileCreated": "2025-06-21T09:21:52.4475264+00:00", "fileLastModified": "2025-07-14T09:21:52.4475265+00:00", @@ -8132,11 +8132,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65204, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 246 }" }, "fileCreated": "2025-06-21T09:21:52.4475268+00:00", "fileLastModified": "2025-07-14T09:21:52.4475268+00:00", @@ -8165,11 +8165,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 57189, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 247 }" }, "fileCreated": "2025-06-21T09:21:52.4475271+00:00", "fileLastModified": "2025-07-14T09:21:52.4475272+00:00", @@ -8198,11 +8198,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 96647, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 248 }" }, "fileCreated": "2025-06-21T09:21:52.4475275+00:00", "fileLastModified": "2025-07-14T09:21:52.4475275+00:00", @@ -8231,11 +8231,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 49712, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 249 }" }, "fileCreated": "2025-06-21T09:21:52.4475279+00:00", "fileLastModified": "2025-07-14T09:21:52.4475279+00:00", @@ -8264,11 +8264,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 80639, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 250 }" }, "fileCreated": "2025-06-21T09:21:52.4475282+00:00", "fileLastModified": "2025-07-14T09:21:52.4475283+00:00", @@ -8297,11 +8297,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24853, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 251 }" }, "fileCreated": "2025-06-21T09:21:52.4475286+00:00", "fileLastModified": "2025-07-14T09:21:52.4475286+00:00", @@ -8330,11 +8330,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69729, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 252 }" }, "fileCreated": "2025-06-21T09:21:52.4475289+00:00", "fileLastModified": "2025-07-14T09:21:52.447529+00:00", @@ -8363,11 +8363,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 91445, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 253 }" }, "fileCreated": "2025-06-21T09:21:52.4475331+00:00", "fileLastModified": "2025-07-14T09:21:52.4475331+00:00", @@ -8396,11 +8396,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85862, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 254 }" }, "fileCreated": "2025-06-21T09:21:52.4475335+00:00", "fileLastModified": "2025-07-14T09:21:52.4475335+00:00", @@ -8429,11 +8429,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34187, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 255 }" }, "fileCreated": "2025-06-21T09:21:52.4475339+00:00", "fileLastModified": "2025-07-14T09:21:52.4475339+00:00", @@ -8462,11 +8462,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 56212, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 256 }" }, "fileCreated": "2025-06-21T09:21:52.4475343+00:00", "fileLastModified": "2025-07-14T09:21:52.4475343+00:00", @@ -8495,11 +8495,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 64926, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 257 }" }, "fileCreated": "2025-06-21T09:21:52.4475346+00:00", "fileLastModified": "2025-07-14T09:21:52.4475347+00:00", @@ -8528,11 +8528,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 51773, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 258 }" }, "fileCreated": "2025-06-21T09:21:52.4475354+00:00", "fileLastModified": "2025-07-14T09:21:52.4475354+00:00", @@ -8561,11 +8561,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 73196, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 259 }" }, "fileCreated": "2025-06-21T09:21:52.4475358+00:00", "fileLastModified": "2025-07-14T09:21:52.4475358+00:00", @@ -8594,11 +8594,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 49639, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 260 }" }, "fileCreated": "2025-06-21T09:21:52.4475395+00:00", "fileLastModified": "2025-07-14T09:21:52.4475396+00:00", @@ -8627,11 +8627,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 20463, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 261 }" }, "fileCreated": "2025-06-21T09:21:52.44754+00:00", "fileLastModified": "2025-07-14T09:21:52.44754+00:00", @@ -8660,11 +8660,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67518, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 262 }" }, "fileCreated": "2025-06-21T09:21:52.4475403+00:00", "fileLastModified": "2025-07-14T09:21:52.4475403+00:00", @@ -8693,11 +8693,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95619, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 263 }" }, "fileCreated": "2025-06-21T09:21:52.4475406+00:00", "fileLastModified": "2025-07-14T09:21:52.4475407+00:00", @@ -8726,11 +8726,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 67656, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 264 }" }, "fileCreated": "2025-06-21T09:21:52.4475411+00:00", "fileLastModified": "2025-07-14T09:21:52.4475411+00:00", @@ -8759,11 +8759,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 75629, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 265 }" }, "fileCreated": "2025-06-21T09:21:52.4475415+00:00", "fileLastModified": "2025-07-14T09:21:52.4475415+00:00", @@ -8792,11 +8792,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70839, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 266 }" }, "fileCreated": "2025-06-21T09:21:52.4475418+00:00", "fileLastModified": "2025-07-14T09:21:52.4475419+00:00", @@ -8825,11 +8825,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 51013, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 267 }" }, "fileCreated": "2025-06-21T09:21:52.4475422+00:00", "fileLastModified": "2025-07-14T09:21:52.4475423+00:00", @@ -8858,11 +8858,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44235, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 268 }" }, "fileCreated": "2025-06-21T09:21:52.4475426+00:00", "fileLastModified": "2025-07-14T09:21:52.4475427+00:00", @@ -8891,11 +8891,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 50474, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 269 }" }, "fileCreated": "2025-06-21T09:21:52.447543+00:00", "fileLastModified": "2025-07-14T09:21:52.447543+00:00", @@ -8924,11 +8924,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34264, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 270 }" }, "fileCreated": "2025-06-21T09:21:52.4475433+00:00", "fileLastModified": "2025-07-14T09:21:52.4475434+00:00", @@ -8957,11 +8957,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83126, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 271 }" }, "fileCreated": "2025-06-21T09:21:52.4475437+00:00", "fileLastModified": "2025-07-14T09:21:52.4475438+00:00", @@ -8990,11 +8990,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 94919, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 272 }" }, "fileCreated": "2025-06-21T09:21:52.4475441+00:00", "fileLastModified": "2025-07-14T09:21:52.4475442+00:00", @@ -9023,11 +9023,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 32840, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 273 }" }, "fileCreated": "2025-06-21T09:21:52.4475445+00:00", "fileLastModified": "2025-07-14T09:21:52.4475446+00:00", @@ -9056,11 +9056,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 30913, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 274 }" }, "fileCreated": "2025-06-21T09:21:52.4475475+00:00", "fileLastModified": "2025-07-14T09:21:52.4475475+00:00", @@ -9089,11 +9089,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 39343, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 275 }" }, "fileCreated": "2025-06-21T09:21:52.4475478+00:00", "fileLastModified": "2025-07-14T09:21:52.4475479+00:00", @@ -9122,11 +9122,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82655, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 276 }" }, "fileCreated": "2025-06-21T09:21:52.4475482+00:00", "fileLastModified": "2025-07-14T09:21:52.4475483+00:00", @@ -9155,11 +9155,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 31460, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 277 }" }, "fileCreated": "2025-06-21T09:21:52.4475486+00:00", "fileLastModified": "2025-07-14T09:21:52.4475486+00:00", @@ -9188,11 +9188,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41781, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 278 }" }, "fileCreated": "2025-06-21T09:21:52.4475489+00:00", "fileLastModified": "2025-07-14T09:21:52.447549+00:00", @@ -9221,11 +9221,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37471, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 279 }" }, "fileCreated": "2025-06-21T09:21:52.4475493+00:00", "fileLastModified": "2025-07-14T09:21:52.4475493+00:00", @@ -9254,11 +9254,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 25126, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 280 }" }, "fileCreated": "2025-06-21T09:21:52.4475497+00:00", "fileLastModified": "2025-07-14T09:21:52.4475497+00:00", @@ -9287,11 +9287,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79738, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 281 }" }, "fileCreated": "2025-06-21T09:21:52.44755+00:00", "fileLastModified": "2025-07-14T09:21:52.44755+00:00", @@ -9320,11 +9320,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66788, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 282 }" }, "fileCreated": "2025-06-21T09:21:52.4475504+00:00", "fileLastModified": "2025-07-14T09:21:52.4475504+00:00", @@ -9353,11 +9353,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 40524, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 283 }" }, "fileCreated": "2025-06-21T09:21:52.4475508+00:00", "fileLastModified": "2025-07-14T09:21:52.4475508+00:00", @@ -9386,11 +9386,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 90850, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 284 }" }, "fileCreated": "2025-06-21T09:21:52.4475511+00:00", "fileLastModified": "2025-07-14T09:21:52.4475512+00:00", @@ -9419,11 +9419,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 75595, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 285 }" }, "fileCreated": "2025-06-21T09:21:52.4475515+00:00", "fileLastModified": "2025-07-14T09:21:52.4475516+00:00", @@ -9452,11 +9452,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67733, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 286 }" }, "fileCreated": "2025-06-21T09:21:52.4475519+00:00", "fileLastModified": "2025-07-14T09:21:52.447552+00:00", @@ -9485,11 +9485,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69040, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 287 }" }, "fileCreated": "2025-06-21T09:21:52.4475545+00:00", "fileLastModified": "2025-07-14T09:21:52.4475546+00:00", @@ -9518,11 +9518,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47366, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 288 }" }, "fileCreated": "2025-06-21T09:21:52.4475549+00:00", "fileLastModified": "2025-07-14T09:21:52.4475549+00:00", @@ -9551,11 +9551,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 70087, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 289 }" }, "fileCreated": "2025-06-21T09:21:52.4475552+00:00", "fileLastModified": "2025-07-14T09:21:52.4475553+00:00", @@ -9584,11 +9584,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23868, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 290 }" }, "fileCreated": "2025-06-21T09:21:52.4475556+00:00", "fileLastModified": "2025-07-14T09:21:52.4475556+00:00", @@ -9617,11 +9617,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 25885, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 291 }" }, "fileCreated": "2025-06-21T09:21:52.447556+00:00", "fileLastModified": "2025-07-14T09:21:52.4475561+00:00", @@ -9650,11 +9650,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37586, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 292 }" }, "fileCreated": "2025-06-21T09:21:52.4475563+00:00", "fileLastModified": "2025-07-14T09:21:52.4475564+00:00", @@ -9683,11 +9683,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86844, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 293 }" }, "fileCreated": "2025-06-21T09:21:52.4475567+00:00", "fileLastModified": "2025-07-14T09:21:52.4475568+00:00", @@ -9716,11 +9716,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 48682, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 294 }" }, "fileCreated": "2025-06-21T09:21:52.4475571+00:00", "fileLastModified": "2025-07-14T09:21:52.4475572+00:00", @@ -9749,11 +9749,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 86461, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 295 }" }, "fileCreated": "2025-06-21T09:21:52.4475575+00:00", "fileLastModified": "2025-07-14T09:21:52.4475576+00:00", @@ -9782,11 +9782,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 98857, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 296 }" }, "fileCreated": "2025-06-21T09:21:52.4475578+00:00", "fileLastModified": "2025-07-14T09:21:52.4475579+00:00", @@ -9815,11 +9815,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 29834, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 297 }" }, "fileCreated": "2025-06-21T09:21:52.4475582+00:00", "fileLastModified": "2025-07-14T09:21:52.4475583+00:00", @@ -9848,11 +9848,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28663, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 298 }" }, "fileCreated": "2025-06-21T09:21:52.4475586+00:00", "fileLastModified": "2025-07-14T09:21:52.4475586+00:00", @@ -9881,11 +9881,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 20998, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 299 }" }, "fileCreated": "2025-06-21T09:21:52.4475589+00:00", "fileLastModified": "2025-07-14T09:21:52.447559+00:00", @@ -9914,11 +9914,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 70579, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 300 }" }, "fileCreated": "2025-06-21T09:21:52.4475593+00:00", "fileLastModified": "2025-07-14T09:21:52.4475594+00:00", @@ -9947,11 +9947,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 40588, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 301 }" }, "fileCreated": "2025-06-21T09:21:52.4475692+00:00", "fileLastModified": "2025-07-14T09:21:52.4475693+00:00", @@ -9980,11 +9980,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 26274, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 302 }" }, "fileCreated": "2025-06-21T09:21:52.4475696+00:00", "fileLastModified": "2025-07-14T09:21:52.4475697+00:00", @@ -10013,11 +10013,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43205, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 303 }" }, "fileCreated": "2025-06-21T09:21:52.44757+00:00", "fileLastModified": "2025-07-14T09:21:52.4475701+00:00", @@ -10046,11 +10046,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37287, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 304 }" }, "fileCreated": "2025-06-21T09:21:52.4475704+00:00", "fileLastModified": "2025-07-14T09:21:52.4475704+00:00", @@ -10079,11 +10079,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88999, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 305 }" }, "fileCreated": "2025-06-21T09:21:52.4475708+00:00", "fileLastModified": "2025-07-14T09:21:52.4475708+00:00", @@ -10112,11 +10112,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 99318, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 306 }" }, "fileCreated": "2025-06-21T09:21:52.4475711+00:00", "fileLastModified": "2025-07-14T09:21:52.4475712+00:00", @@ -10145,11 +10145,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37451, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 307 }" }, "fileCreated": "2025-06-21T09:21:52.4475715+00:00", "fileLastModified": "2025-07-14T09:21:52.4475716+00:00", @@ -10178,11 +10178,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 85437, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 308 }" }, "fileCreated": "2025-06-21T09:21:52.447572+00:00", "fileLastModified": "2025-07-14T09:21:52.447572+00:00", @@ -10211,11 +10211,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 96471, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 309 }" }, "fileCreated": "2025-06-21T09:21:52.4475723+00:00", "fileLastModified": "2025-07-14T09:21:52.4475724+00:00", @@ -10244,11 +10244,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88533, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 310 }" }, "fileCreated": "2025-06-21T09:21:52.4475727+00:00", "fileLastModified": "2025-07-14T09:21:52.4475727+00:00", @@ -10277,11 +10277,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23624, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 311 }" }, "fileCreated": "2025-06-21T09:21:52.4475731+00:00", "fileLastModified": "2025-07-14T09:21:52.4475731+00:00", @@ -10310,11 +10310,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 62139, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 312 }" }, "fileCreated": "2025-06-21T09:21:52.4475734+00:00", "fileLastModified": "2025-07-14T09:21:52.4475735+00:00", @@ -10343,11 +10343,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 58979, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 313 }" }, "fileCreated": "2025-06-21T09:21:52.4475738+00:00", "fileLastModified": "2025-07-14T09:21:52.4475738+00:00", @@ -10376,11 +10376,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61117, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 314 }" }, "fileCreated": "2025-06-21T09:21:52.4475742+00:00", "fileLastModified": "2025-07-14T09:21:52.4475743+00:00", @@ -10409,11 +10409,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 68920, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 315 }" }, "fileCreated": "2025-06-21T09:21:52.4475772+00:00", "fileLastModified": "2025-07-14T09:21:52.4475773+00:00", @@ -10442,11 +10442,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67289, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 316 }" }, "fileCreated": "2025-06-21T09:21:52.4475776+00:00", "fileLastModified": "2025-07-14T09:21:52.4475777+00:00", @@ -10475,11 +10475,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61803, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 317 }" }, "fileCreated": "2025-06-21T09:21:52.447578+00:00", "fileLastModified": "2025-07-14T09:21:52.447578+00:00", @@ -10508,11 +10508,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68103, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 318 }" }, "fileCreated": "2025-06-21T09:21:52.4475783+00:00", "fileLastModified": "2025-07-14T09:21:52.4475784+00:00", @@ -10541,11 +10541,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 49350, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 319 }" }, "fileCreated": "2025-06-21T09:21:52.4475786+00:00", "fileLastModified": "2025-07-14T09:21:52.4475787+00:00", @@ -10574,11 +10574,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 57170, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 320 }" }, "fileCreated": "2025-06-21T09:21:52.447579+00:00", "fileLastModified": "2025-07-14T09:21:52.4475791+00:00", @@ -10607,11 +10607,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48580, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 321 }" }, "fileCreated": "2025-06-21T09:21:52.4475794+00:00", "fileLastModified": "2025-07-14T09:21:52.4475795+00:00", @@ -10640,11 +10640,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 79909, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 322 }" }, "fileCreated": "2025-06-21T09:21:52.4475798+00:00", "fileLastModified": "2025-07-14T09:21:52.4475798+00:00", @@ -10673,11 +10673,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 40982, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 323 }" }, "fileCreated": "2025-06-21T09:21:52.4475802+00:00", "fileLastModified": "2025-07-14T09:21:52.4475802+00:00", @@ -10706,11 +10706,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 69043, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 324 }" }, "fileCreated": "2025-06-21T09:21:52.4475805+00:00", "fileLastModified": "2025-07-14T09:21:52.4475806+00:00", @@ -10739,11 +10739,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 47407, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 325 }" }, "fileCreated": "2025-06-21T09:21:52.4475809+00:00", "fileLastModified": "2025-07-14T09:21:52.447581+00:00", @@ -10772,11 +10772,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 55337, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 326 }" }, "fileCreated": "2025-06-21T09:21:52.4475813+00:00", "fileLastModified": "2025-07-14T09:21:52.4475813+00:00", @@ -10805,11 +10805,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 63198, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 327 }" }, "fileCreated": "2025-06-21T09:21:52.4475816+00:00", "fileLastModified": "2025-07-14T09:21:52.4475817+00:00", @@ -10838,11 +10838,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35109, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 328 }" }, "fileCreated": "2025-06-21T09:21:52.4475845+00:00", "fileLastModified": "2025-07-14T09:21:52.4475845+00:00", @@ -10871,11 +10871,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 42853, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 329 }" }, "fileCreated": "2025-06-21T09:21:52.4475849+00:00", "fileLastModified": "2025-07-14T09:21:52.4475849+00:00", @@ -10904,11 +10904,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 20948, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 330 }" }, "fileCreated": "2025-06-21T09:21:52.4475852+00:00", "fileLastModified": "2025-07-14T09:21:52.4475853+00:00", @@ -10937,11 +10937,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 39051, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 331 }" }, "fileCreated": "2025-06-21T09:21:52.4475856+00:00", "fileLastModified": "2025-07-14T09:21:52.4475856+00:00", @@ -10970,11 +10970,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41234, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 332 }" }, "fileCreated": "2025-06-21T09:21:52.447586+00:00", "fileLastModified": "2025-07-14T09:21:52.447586+00:00", @@ -11003,11 +11003,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90653, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 333 }" }, "fileCreated": "2025-06-21T09:21:52.4475863+00:00", "fileLastModified": "2025-07-14T09:21:52.4475864+00:00", @@ -11036,11 +11036,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27666, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 334 }" }, "fileCreated": "2025-06-21T09:21:52.4475867+00:00", "fileLastModified": "2025-07-14T09:21:52.4475868+00:00", @@ -11069,11 +11069,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 20237, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 335 }" }, "fileCreated": "2025-06-21T09:21:52.4475872+00:00", "fileLastModified": "2025-07-14T09:21:52.4475872+00:00", @@ -11102,11 +11102,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 64508, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 336 }" }, "fileCreated": "2025-06-21T09:21:52.4475875+00:00", "fileLastModified": "2025-07-14T09:21:52.4475876+00:00", @@ -11135,11 +11135,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 99360, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 337 }" }, "fileCreated": "2025-06-21T09:21:52.4475879+00:00", "fileLastModified": "2025-07-14T09:21:52.4475879+00:00", @@ -11168,11 +11168,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65974, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 338 }" }, "fileCreated": "2025-06-21T09:21:52.4475883+00:00", "fileLastModified": "2025-07-14T09:21:52.4475883+00:00", @@ -11201,11 +11201,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65300, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 339 }" }, "fileCreated": "2025-06-21T09:21:52.4475887+00:00", "fileLastModified": "2025-07-14T09:21:52.4475887+00:00", @@ -11234,11 +11234,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87378, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 340 }" }, "fileCreated": "2025-06-21T09:21:52.4475891+00:00", "fileLastModified": "2025-07-14T09:21:52.4475891+00:00", @@ -11267,11 +11267,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26756, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 341 }" }, "fileCreated": "2025-06-21T09:21:52.4475894+00:00", "fileLastModified": "2025-07-14T09:21:52.4475895+00:00", @@ -11300,11 +11300,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 93478, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 342 }" }, "fileCreated": "2025-06-21T09:21:52.4475915+00:00", "fileLastModified": "2025-07-14T09:21:52.4475915+00:00", @@ -11333,11 +11333,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87191, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 343 }" }, "fileCreated": "2025-06-21T09:21:52.4475918+00:00", "fileLastModified": "2025-07-14T09:21:52.4475919+00:00", @@ -11366,11 +11366,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 32967, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 344 }" }, "fileCreated": "2025-06-21T09:21:52.4475922+00:00", "fileLastModified": "2025-07-14T09:21:52.4475922+00:00", @@ -11399,11 +11399,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 41890, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 345 }" }, "fileCreated": "2025-06-21T09:21:52.4475926+00:00", "fileLastModified": "2025-07-14T09:21:52.4475926+00:00", @@ -11432,11 +11432,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 45432, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 346 }" }, "fileCreated": "2025-06-21T09:21:52.447593+00:00", "fileLastModified": "2025-07-14T09:21:52.447593+00:00", @@ -11465,11 +11465,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 66516, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 347 }" }, "fileCreated": "2025-06-21T09:21:52.4475933+00:00", "fileLastModified": "2025-07-14T09:21:52.4475934+00:00", @@ -11498,11 +11498,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82517, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 348 }" }, "fileCreated": "2025-06-21T09:21:52.4475937+00:00", "fileLastModified": "2025-07-14T09:21:52.4475938+00:00", @@ -11531,11 +11531,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 30395, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 349 }" }, "fileCreated": "2025-06-21T09:21:52.447594+00:00", "fileLastModified": "2025-07-14T09:21:52.4475941+00:00", @@ -11564,11 +11564,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 85008, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 350 }" }, "fileCreated": "2025-06-21T09:21:52.4475944+00:00", "fileLastModified": "2025-07-14T09:21:52.4475944+00:00", @@ -11597,11 +11597,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 85450, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 351 }" }, "fileCreated": "2025-06-21T09:21:52.4475948+00:00", "fileLastModified": "2025-07-14T09:21:52.4475948+00:00", @@ -11630,11 +11630,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 49977, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 352 }" }, "fileCreated": "2025-06-21T09:21:52.4475952+00:00", "fileLastModified": "2025-07-14T09:21:52.4475953+00:00", @@ -11663,11 +11663,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 47408, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 353 }" }, "fileCreated": "2025-06-21T09:21:52.4475956+00:00", "fileLastModified": "2025-07-14T09:21:52.4475956+00:00", @@ -11696,11 +11696,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 25942, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 354 }" }, "fileCreated": "2025-06-21T09:21:52.4475959+00:00", "fileLastModified": "2025-07-14T09:21:52.447596+00:00", @@ -11729,11 +11729,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 28431, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 355 }" }, "fileCreated": "2025-06-21T09:21:52.4476002+00:00", "fileLastModified": "2025-07-14T09:21:52.4476002+00:00", @@ -11762,11 +11762,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 23711, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 356 }" }, "fileCreated": "2025-06-21T09:21:52.4476006+00:00", "fileLastModified": "2025-07-14T09:21:52.4476006+00:00", @@ -11795,11 +11795,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 66004, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 357 }" }, "fileCreated": "2025-06-21T09:21:52.447601+00:00", "fileLastModified": "2025-07-14T09:21:52.447601+00:00", @@ -11828,11 +11828,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60307, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 358 }" }, "fileCreated": "2025-06-21T09:21:52.4476013+00:00", "fileLastModified": "2025-07-14T09:21:52.4476014+00:00", @@ -11861,11 +11861,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 30918, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 359 }" }, "fileCreated": "2025-06-21T09:21:52.4476017+00:00", "fileLastModified": "2025-07-14T09:21:52.4476018+00:00", @@ -11894,11 +11894,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58024, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 360 }" }, "fileCreated": "2025-06-21T09:21:52.4476021+00:00", "fileLastModified": "2025-07-14T09:21:52.4476022+00:00", @@ -11927,11 +11927,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 25826, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 361 }" }, "fileCreated": "2025-06-21T09:21:52.4476024+00:00", "fileLastModified": "2025-07-14T09:21:52.4476025+00:00", @@ -11960,11 +11960,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47895, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 362 }" }, "fileCreated": "2025-06-21T09:21:52.4476028+00:00", "fileLastModified": "2025-07-14T09:21:52.4476028+00:00", @@ -11993,11 +11993,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31582, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 363 }" }, "fileCreated": "2025-06-21T09:21:52.4476032+00:00", "fileLastModified": "2025-07-14T09:21:52.4476033+00:00", @@ -12026,11 +12026,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 79510, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 364 }" }, "fileCreated": "2025-06-21T09:21:52.4476036+00:00", "fileLastModified": "2025-07-14T09:21:52.4476036+00:00", @@ -12059,11 +12059,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 90389, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 365 }" }, "fileCreated": "2025-06-21T09:21:52.4476039+00:00", "fileLastModified": "2025-07-14T09:21:52.447604+00:00", @@ -12092,11 +12092,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33527, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 366 }" }, "fileCreated": "2025-06-21T09:21:52.4476043+00:00", "fileLastModified": "2025-07-14T09:21:52.4476043+00:00", @@ -12125,11 +12125,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 62084, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 367 }" }, "fileCreated": "2025-06-21T09:21:52.4476047+00:00", "fileLastModified": "2025-07-14T09:21:52.4476047+00:00", @@ -12158,11 +12158,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 42780, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 368 }" }, "fileCreated": "2025-06-21T09:21:52.4476051+00:00", "fileLastModified": "2025-07-14T09:21:52.4476051+00:00", @@ -12191,11 +12191,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37482, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 369 }" }, "fileCreated": "2025-06-21T09:21:52.447609+00:00", "fileLastModified": "2025-07-14T09:21:52.4476091+00:00", @@ -12224,11 +12224,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 70546, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 370 }" }, "fileCreated": "2025-06-21T09:21:52.4476094+00:00", "fileLastModified": "2025-07-14T09:21:52.4476095+00:00", @@ -12257,11 +12257,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 20205, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 371 }" }, "fileCreated": "2025-06-21T09:21:52.4476098+00:00", "fileLastModified": "2025-07-14T09:21:52.4476099+00:00", @@ -12290,11 +12290,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37372, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 372 }" }, "fileCreated": "2025-06-21T09:21:52.4476102+00:00", "fileLastModified": "2025-07-14T09:21:52.4476102+00:00", @@ -12323,11 +12323,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96798, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 373 }" }, "fileCreated": "2025-06-21T09:21:52.4476105+00:00", "fileLastModified": "2025-07-14T09:21:52.4476106+00:00", @@ -12356,11 +12356,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63625, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 374 }" }, "fileCreated": "2025-06-21T09:21:52.4476109+00:00", "fileLastModified": "2025-07-14T09:21:52.4476109+00:00", @@ -12389,11 +12389,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 38688, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 375 }" }, "fileCreated": "2025-06-21T09:21:52.4476112+00:00", "fileLastModified": "2025-07-14T09:21:52.4476113+00:00", @@ -12422,11 +12422,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31336, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 376 }" }, "fileCreated": "2025-06-21T09:21:52.4476116+00:00", "fileLastModified": "2025-07-14T09:21:52.4476117+00:00", @@ -12455,11 +12455,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 52139, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 377 }" }, "fileCreated": "2025-06-21T09:21:52.447612+00:00", "fileLastModified": "2025-07-14T09:21:52.4476121+00:00", @@ -12488,11 +12488,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 20311, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 378 }" }, "fileCreated": "2025-06-21T09:21:52.4476124+00:00", "fileLastModified": "2025-07-14T09:21:52.4476124+00:00", @@ -12521,11 +12521,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 68865, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 379 }" }, "fileCreated": "2025-06-21T09:21:52.4476127+00:00", "fileLastModified": "2025-07-14T09:21:52.4476128+00:00", @@ -12554,11 +12554,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 38349, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 380 }" }, "fileCreated": "2025-06-21T09:21:52.4476131+00:00", "fileLastModified": "2025-07-14T09:21:52.4476132+00:00", @@ -12587,11 +12587,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98519, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 381 }" }, "fileCreated": "2025-06-21T09:21:52.4476135+00:00", "fileLastModified": "2025-07-14T09:21:52.4476135+00:00", @@ -12620,11 +12620,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82420, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 382 }" }, "fileCreated": "2025-06-21T09:21:52.4476139+00:00", "fileLastModified": "2025-07-14T09:21:52.4476139+00:00", @@ -12653,11 +12653,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86621, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 383 }" }, "fileCreated": "2025-06-21T09:21:52.4476167+00:00", "fileLastModified": "2025-07-14T09:21:52.4476168+00:00", @@ -12686,11 +12686,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90358, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 384 }" }, "fileCreated": "2025-06-21T09:21:52.4476171+00:00", "fileLastModified": "2025-07-14T09:21:52.4476172+00:00", @@ -12719,11 +12719,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 81129, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 385 }" }, "fileCreated": "2025-06-21T09:21:52.4476175+00:00", "fileLastModified": "2025-07-14T09:21:52.4476175+00:00", @@ -12752,11 +12752,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31883, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 386 }" }, "fileCreated": "2025-06-21T09:21:52.4476178+00:00", "fileLastModified": "2025-07-14T09:21:52.4476179+00:00", @@ -12785,11 +12785,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46682, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 387 }" }, "fileCreated": "2025-06-21T09:21:52.4476182+00:00", "fileLastModified": "2025-07-14T09:21:52.4476183+00:00", @@ -12818,11 +12818,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 86880, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 388 }" }, "fileCreated": "2025-06-21T09:21:52.4476186+00:00", "fileLastModified": "2025-07-14T09:21:52.4476187+00:00", @@ -12851,11 +12851,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23134, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 389 }" }, "fileCreated": "2025-06-21T09:21:52.447619+00:00", "fileLastModified": "2025-07-14T09:21:52.447619+00:00", @@ -12884,11 +12884,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 90944, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 390 }" }, "fileCreated": "2025-06-21T09:21:52.4476193+00:00", "fileLastModified": "2025-07-14T09:21:52.4476194+00:00", @@ -12917,11 +12917,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 85170, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 391 }" }, "fileCreated": "2025-06-21T09:21:52.4476197+00:00", "fileLastModified": "2025-07-14T09:21:52.4476198+00:00", @@ -12950,11 +12950,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 21800, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 392 }" }, "fileCreated": "2025-06-21T09:21:52.4476201+00:00", "fileLastModified": "2025-07-14T09:21:52.4476201+00:00", @@ -12983,11 +12983,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74448, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 393 }" }, "fileCreated": "2025-06-21T09:21:52.4476205+00:00", "fileLastModified": "2025-07-14T09:21:52.4476205+00:00", @@ -13016,11 +13016,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31063, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 394 }" }, "fileCreated": "2025-06-21T09:21:52.4476208+00:00", "fileLastModified": "2025-07-14T09:21:52.4476209+00:00", @@ -13049,11 +13049,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64361, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 395 }" }, "fileCreated": "2025-06-21T09:21:52.4476212+00:00", "fileLastModified": "2025-07-14T09:21:52.4476212+00:00", @@ -13082,11 +13082,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 73928, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 396 }" }, "fileCreated": "2025-06-21T09:21:52.4476245+00:00", "fileLastModified": "2025-07-14T09:21:52.4476246+00:00", @@ -13115,11 +13115,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 62238, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 397 }" }, "fileCreated": "2025-06-21T09:21:52.4476249+00:00", "fileLastModified": "2025-07-14T09:21:52.4476249+00:00", @@ -13148,11 +13148,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 88597, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 398 }" }, "fileCreated": "2025-06-21T09:21:52.4476253+00:00", "fileLastModified": "2025-07-14T09:21:52.4476253+00:00", @@ -13181,11 +13181,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 93585, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 399 }" }, "fileCreated": "2025-06-21T09:21:52.4476256+00:00", "fileLastModified": "2025-07-14T09:21:52.4476257+00:00", @@ -13214,11 +13214,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 80101, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 400 }" }, "fileCreated": "2025-06-21T09:21:52.447626+00:00", "fileLastModified": "2025-07-14T09:21:52.447626+00:00", @@ -13247,11 +13247,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33523, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 401 }" }, "fileCreated": "2025-06-21T09:21:52.4476263+00:00", "fileLastModified": "2025-07-14T09:21:52.4476263+00:00", @@ -13280,11 +13280,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 20033, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 402 }" }, "fileCreated": "2025-06-21T09:21:52.4476267+00:00", "fileLastModified": "2025-07-14T09:21:52.4476267+00:00", @@ -13313,11 +13313,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44165, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 403 }" }, "fileCreated": "2025-06-21T09:21:52.4476271+00:00", "fileLastModified": "2025-07-14T09:21:52.4476271+00:00", @@ -13346,11 +13346,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27905, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 404 }" }, "fileCreated": "2025-06-21T09:21:52.4476275+00:00", "fileLastModified": "2025-07-14T09:21:52.4476276+00:00", @@ -13379,11 +13379,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64420, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 405 }" }, "fileCreated": "2025-06-21T09:21:52.4476279+00:00", "fileLastModified": "2025-07-14T09:21:52.4476279+00:00", @@ -13412,11 +13412,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 40118, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 406 }" }, "fileCreated": "2025-06-21T09:21:52.4476282+00:00", "fileLastModified": "2025-07-14T09:21:52.4476283+00:00", @@ -13445,11 +13445,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 36158, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 407 }" }, "fileCreated": "2025-06-21T09:21:52.4476285+00:00", "fileLastModified": "2025-07-14T09:21:52.4476286+00:00", @@ -13478,11 +13478,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 58640, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 408 }" }, "fileCreated": "2025-06-21T09:21:52.4476289+00:00", "fileLastModified": "2025-07-14T09:21:52.447629+00:00", @@ -13511,11 +13511,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 38919, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 409 }" }, "fileCreated": "2025-06-21T09:21:52.4476293+00:00", "fileLastModified": "2025-07-14T09:21:52.4476294+00:00", @@ -13544,11 +13544,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 67564, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 410 }" }, "fileCreated": "2025-06-21T09:21:52.4476323+00:00", "fileLastModified": "2025-07-14T09:21:52.4476324+00:00", @@ -13577,11 +13577,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76910, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 411 }" }, "fileCreated": "2025-06-21T09:21:52.4476327+00:00", "fileLastModified": "2025-07-14T09:21:52.4476328+00:00", @@ -13610,11 +13610,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35610, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 412 }" }, "fileCreated": "2025-06-21T09:21:52.4476331+00:00", "fileLastModified": "2025-07-14T09:21:52.4476332+00:00", @@ -13643,11 +13643,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 40716, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 413 }" }, "fileCreated": "2025-06-21T09:21:52.4476335+00:00", "fileLastModified": "2025-07-14T09:21:52.4476335+00:00", @@ -13676,11 +13676,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47506, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 414 }" }, "fileCreated": "2025-06-21T09:21:52.4476339+00:00", "fileLastModified": "2025-07-14T09:21:52.4476339+00:00", @@ -13709,11 +13709,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 97933, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 415 }" }, "fileCreated": "2025-06-21T09:21:52.4476343+00:00", "fileLastModified": "2025-07-14T09:21:52.4476343+00:00", @@ -13742,11 +13742,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65722, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 416 }" }, "fileCreated": "2025-06-21T09:21:52.4476346+00:00", "fileLastModified": "2025-07-14T09:21:52.4476347+00:00", @@ -13775,11 +13775,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 32665, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 417 }" }, "fileCreated": "2025-06-21T09:21:52.447635+00:00", "fileLastModified": "2025-07-14T09:21:52.4476351+00:00", @@ -13808,11 +13808,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 22058, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 418 }" }, "fileCreated": "2025-06-21T09:21:52.4476354+00:00", "fileLastModified": "2025-07-14T09:21:52.4476354+00:00", @@ -13841,11 +13841,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37507, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 419 }" }, "fileCreated": "2025-06-21T09:21:52.4476358+00:00", "fileLastModified": "2025-07-14T09:21:52.4476358+00:00", @@ -13874,11 +13874,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 20456, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 420 }" }, "fileCreated": "2025-06-21T09:21:52.4476361+00:00", "fileLastModified": "2025-07-14T09:21:52.4476362+00:00", @@ -13907,11 +13907,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61265, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 421 }" }, "fileCreated": "2025-06-21T09:21:52.4476364+00:00", "fileLastModified": "2025-07-14T09:21:52.4476365+00:00", @@ -13940,11 +13940,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 26086, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 422 }" }, "fileCreated": "2025-06-21T09:21:52.4476368+00:00", "fileLastModified": "2025-07-14T09:21:52.4476369+00:00", @@ -13973,11 +13973,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 63792, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 423 }" }, "fileCreated": "2025-06-21T09:21:52.4476372+00:00", "fileLastModified": "2025-07-14T09:21:52.4476372+00:00", @@ -14006,11 +14006,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24382, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 424 }" }, "fileCreated": "2025-06-21T09:21:52.4476399+00:00", "fileLastModified": "2025-07-14T09:21:52.4476399+00:00", @@ -14039,11 +14039,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 93533, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 425 }" }, "fileCreated": "2025-06-21T09:21:52.4476403+00:00", "fileLastModified": "2025-07-14T09:21:52.4476403+00:00", @@ -14072,11 +14072,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 81388, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 426 }" }, "fileCreated": "2025-06-21T09:21:52.4476406+00:00", "fileLastModified": "2025-07-14T09:21:52.4476407+00:00", @@ -14105,11 +14105,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 39407, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 427 }" }, "fileCreated": "2025-06-21T09:21:52.447641+00:00", "fileLastModified": "2025-07-14T09:21:52.4476411+00:00", @@ -14138,11 +14138,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 74144, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 428 }" }, "fileCreated": "2025-06-21T09:21:52.4476414+00:00", "fileLastModified": "2025-07-14T09:21:52.4476415+00:00", @@ -14171,11 +14171,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 91810, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 429 }" }, "fileCreated": "2025-06-21T09:21:52.4476418+00:00", "fileLastModified": "2025-07-14T09:21:52.4476418+00:00", @@ -14204,11 +14204,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 24515, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 430 }" }, "fileCreated": "2025-06-21T09:21:52.4476422+00:00", "fileLastModified": "2025-07-14T09:21:52.4476422+00:00", @@ -14237,11 +14237,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 57571, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 431 }" }, "fileCreated": "2025-06-21T09:21:52.4476425+00:00", "fileLastModified": "2025-07-14T09:21:52.4476426+00:00", @@ -14270,11 +14270,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64906, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 432 }" }, "fileCreated": "2025-06-21T09:21:52.4476429+00:00", "fileLastModified": "2025-07-14T09:21:52.447643+00:00", @@ -14303,11 +14303,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59554, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 433 }" }, "fileCreated": "2025-06-21T09:21:52.4476433+00:00", "fileLastModified": "2025-07-14T09:21:52.4476433+00:00", @@ -14336,11 +14336,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 56269, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 434 }" }, "fileCreated": "2025-06-21T09:21:52.4476436+00:00", "fileLastModified": "2025-07-14T09:21:52.4476437+00:00", @@ -14369,11 +14369,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 74555, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 435 }" }, "fileCreated": "2025-06-21T09:21:52.447644+00:00", "fileLastModified": "2025-07-14T09:21:52.447644+00:00", @@ -14402,11 +14402,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57056, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 436 }" }, "fileCreated": "2025-06-21T09:21:52.4476444+00:00", "fileLastModified": "2025-07-14T09:21:52.4476444+00:00", @@ -14435,11 +14435,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 64328, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 437 }" }, "fileCreated": "2025-06-21T09:21:52.4476471+00:00", "fileLastModified": "2025-07-14T09:21:52.4476471+00:00", @@ -14468,11 +14468,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 35398, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 438 }" }, "fileCreated": "2025-06-21T09:21:52.4476475+00:00", "fileLastModified": "2025-07-14T09:21:52.4476475+00:00", @@ -14501,11 +14501,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59695, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 439 }" }, "fileCreated": "2025-06-21T09:21:52.4476478+00:00", "fileLastModified": "2025-07-14T09:21:52.4476478+00:00", @@ -14534,11 +14534,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58348, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 440 }" }, "fileCreated": "2025-06-21T09:21:52.4476481+00:00", "fileLastModified": "2025-07-14T09:21:52.4476482+00:00", @@ -14567,11 +14567,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 39875, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 441 }" }, "fileCreated": "2025-06-21T09:21:52.4476485+00:00", "fileLastModified": "2025-07-14T09:21:52.4476486+00:00", @@ -14600,11 +14600,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31045, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 442 }" }, "fileCreated": "2025-06-21T09:21:52.4476489+00:00", "fileLastModified": "2025-07-14T09:21:52.447649+00:00", @@ -14633,11 +14633,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 38083, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 443 }" }, "fileCreated": "2025-06-21T09:21:52.4476493+00:00", "fileLastModified": "2025-07-14T09:21:52.4476494+00:00", @@ -14666,11 +14666,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46897, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 444 }" }, "fileCreated": "2025-06-21T09:21:52.4476497+00:00", "fileLastModified": "2025-07-14T09:21:52.4476498+00:00", @@ -14699,11 +14699,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 45865, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 445 }" }, "fileCreated": "2025-06-21T09:21:52.4476501+00:00", "fileLastModified": "2025-07-14T09:21:52.4476501+00:00", @@ -14732,11 +14732,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35250, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 446 }" }, "fileCreated": "2025-06-21T09:21:52.4476505+00:00", "fileLastModified": "2025-07-14T09:21:52.4476505+00:00", @@ -14765,11 +14765,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 35699, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 447 }" }, "fileCreated": "2025-06-21T09:21:52.4476508+00:00", "fileLastModified": "2025-07-14T09:21:52.4476509+00:00", @@ -14798,11 +14798,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 80520, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 448 }" }, "fileCreated": "2025-06-21T09:21:52.4476512+00:00", "fileLastModified": "2025-07-14T09:21:52.4476512+00:00", @@ -14831,11 +14831,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 98658, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 449 }" }, "fileCreated": "2025-06-21T09:21:52.4476516+00:00", "fileLastModified": "2025-07-14T09:21:52.4476516+00:00", @@ -14864,11 +14864,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 55461, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 450 }" }, "fileCreated": "2025-06-21T09:21:52.4476519+00:00", "fileLastModified": "2025-07-14T09:21:52.447652+00:00", @@ -14897,11 +14897,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55722, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 451 }" }, "fileCreated": "2025-06-21T09:21:52.4476539+00:00", "fileLastModified": "2025-07-14T09:21:52.447654+00:00", @@ -14930,11 +14930,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 59339, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 452 }" }, "fileCreated": "2025-06-21T09:21:52.4476543+00:00", "fileLastModified": "2025-07-14T09:21:52.4476544+00:00", @@ -14963,11 +14963,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46807, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 453 }" }, "fileCreated": "2025-06-21T09:21:52.4476547+00:00", "fileLastModified": "2025-07-14T09:21:52.4476547+00:00", @@ -14996,11 +14996,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65696, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 454 }" }, "fileCreated": "2025-06-21T09:21:52.4476551+00:00", "fileLastModified": "2025-07-14T09:21:52.4476551+00:00", @@ -15029,11 +15029,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46728, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 455 }" }, "fileCreated": "2025-06-21T09:21:52.4476555+00:00", "fileLastModified": "2025-07-14T09:21:52.4476555+00:00", @@ -15062,11 +15062,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 35357, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 456 }" }, "fileCreated": "2025-06-21T09:21:52.4476559+00:00", "fileLastModified": "2025-07-14T09:21:52.4476559+00:00", @@ -15095,11 +15095,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76128, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 457 }" }, "fileCreated": "2025-06-21T09:21:52.4476562+00:00", "fileLastModified": "2025-07-14T09:21:52.4476563+00:00", @@ -15128,11 +15128,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67159, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 458 }" }, "fileCreated": "2025-06-21T09:21:52.4476566+00:00", "fileLastModified": "2025-07-14T09:21:52.4476566+00:00", @@ -15161,11 +15161,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59501, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 459 }" }, "fileCreated": "2025-06-21T09:21:52.447657+00:00", "fileLastModified": "2025-07-14T09:21:52.447657+00:00", @@ -15194,11 +15194,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 89570, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 460 }" }, "fileCreated": "2025-06-21T09:21:52.4476573+00:00", "fileLastModified": "2025-07-14T09:21:52.4476574+00:00", @@ -15227,11 +15227,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86952, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 461 }" }, "fileCreated": "2025-06-21T09:21:52.4476577+00:00", "fileLastModified": "2025-07-14T09:21:52.4476577+00:00", @@ -15260,11 +15260,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 92482, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 462 }" }, "fileCreated": "2025-06-21T09:21:52.447658+00:00", "fileLastModified": "2025-07-14T09:21:52.4476581+00:00", @@ -15293,11 +15293,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24332, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 463 }" }, "fileCreated": "2025-06-21T09:21:52.4476584+00:00", "fileLastModified": "2025-07-14T09:21:52.4476584+00:00", @@ -15326,11 +15326,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80302, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 464 }" }, "fileCreated": "2025-06-21T09:21:52.4476625+00:00", "fileLastModified": "2025-07-14T09:21:52.4476626+00:00", @@ -15359,11 +15359,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 29408, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 465 }" }, "fileCreated": "2025-06-21T09:21:52.4476629+00:00", "fileLastModified": "2025-07-14T09:21:52.447663+00:00", @@ -15392,11 +15392,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 49930, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 466 }" }, "fileCreated": "2025-06-21T09:21:52.4476633+00:00", "fileLastModified": "2025-07-14T09:21:52.4476633+00:00", @@ -15425,11 +15425,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 75981, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 467 }" }, "fileCreated": "2025-06-21T09:21:52.4476637+00:00", "fileLastModified": "2025-07-14T09:21:52.4476637+00:00", @@ -15458,11 +15458,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92048, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 468 }" }, "fileCreated": "2025-06-21T09:21:52.447664+00:00", "fileLastModified": "2025-07-14T09:21:52.4476641+00:00", @@ -15491,11 +15491,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 99062, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 469 }" }, "fileCreated": "2025-06-21T09:21:52.4476644+00:00", "fileLastModified": "2025-07-14T09:21:52.4476645+00:00", @@ -15524,11 +15524,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 54674, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 470 }" }, "fileCreated": "2025-06-21T09:21:52.4476648+00:00", "fileLastModified": "2025-07-14T09:21:52.4476648+00:00", @@ -15557,11 +15557,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53027, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 471 }" }, "fileCreated": "2025-06-21T09:21:52.4476652+00:00", "fileLastModified": "2025-07-14T09:21:52.4476652+00:00", @@ -15590,11 +15590,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 76388, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 472 }" }, "fileCreated": "2025-06-21T09:21:52.4476655+00:00", "fileLastModified": "2025-07-14T09:21:52.4476656+00:00", @@ -15623,11 +15623,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73196, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 473 }" }, "fileCreated": "2025-06-21T09:21:52.4476659+00:00", "fileLastModified": "2025-07-14T09:21:52.447666+00:00", @@ -15656,11 +15656,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 71204, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 474 }" }, "fileCreated": "2025-06-21T09:21:52.4476663+00:00", "fileLastModified": "2025-07-14T09:21:52.4476664+00:00", @@ -15689,11 +15689,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 43668, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 475 }" }, "fileCreated": "2025-06-21T09:21:52.4476667+00:00", "fileLastModified": "2025-07-14T09:21:52.4476667+00:00", @@ -15722,11 +15722,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 49774, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 476 }" }, "fileCreated": "2025-06-21T09:21:52.447667+00:00", "fileLastModified": "2025-07-14T09:21:52.4476671+00:00", @@ -15755,11 +15755,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 51934, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 477 }" }, "fileCreated": "2025-06-21T09:21:52.4476674+00:00", "fileLastModified": "2025-07-14T09:21:52.4476675+00:00", @@ -15788,11 +15788,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97134, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 478 }" }, "fileCreated": "2025-06-21T09:21:52.447677+00:00", "fileLastModified": "2025-07-14T09:21:52.447677+00:00", @@ -15821,11 +15821,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 50455, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 479 }" }, "fileCreated": "2025-06-21T09:21:52.4476774+00:00", "fileLastModified": "2025-07-14T09:21:52.4476774+00:00", @@ -15854,11 +15854,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 56370, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 480 }" }, "fileCreated": "2025-06-21T09:21:52.4476777+00:00", "fileLastModified": "2025-07-14T09:21:52.4476778+00:00", @@ -15887,11 +15887,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 97729, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 481 }" }, "fileCreated": "2025-06-21T09:21:52.4476782+00:00", "fileLastModified": "2025-07-14T09:21:52.4476782+00:00", @@ -15920,11 +15920,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 62859, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 482 }" }, "fileCreated": "2025-06-21T09:21:52.4476785+00:00", "fileLastModified": "2025-07-14T09:21:52.4476786+00:00", @@ -15953,11 +15953,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 65012, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 483 }" }, "fileCreated": "2025-06-21T09:21:52.4476789+00:00", "fileLastModified": "2025-07-14T09:21:52.447679+00:00", @@ -15986,11 +15986,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 20278, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 484 }" }, "fileCreated": "2025-06-21T09:21:52.4476793+00:00", "fileLastModified": "2025-07-14T09:21:52.4476794+00:00", @@ -16019,11 +16019,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60423, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 485 }" }, "fileCreated": "2025-06-21T09:21:52.4476797+00:00", "fileLastModified": "2025-07-14T09:21:52.4476797+00:00", @@ -16052,11 +16052,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 91241, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 486 }" }, "fileCreated": "2025-06-21T09:21:52.44768+00:00", "fileLastModified": "2025-07-14T09:21:52.4476801+00:00", @@ -16085,11 +16085,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86442, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 487 }" }, "fileCreated": "2025-06-21T09:21:52.4476804+00:00", "fileLastModified": "2025-07-14T09:21:52.4476805+00:00", @@ -16118,11 +16118,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57817, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 488 }" }, "fileCreated": "2025-06-21T09:21:52.4476808+00:00", "fileLastModified": "2025-07-14T09:21:52.4476808+00:00", @@ -16151,11 +16151,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66895, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 489 }" }, "fileCreated": "2025-06-21T09:21:52.4476812+00:00", "fileLastModified": "2025-07-14T09:21:52.4476812+00:00", @@ -16184,11 +16184,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 55866, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 490 }" }, "fileCreated": "2025-06-21T09:21:52.4476815+00:00", "fileLastModified": "2025-07-14T09:21:52.4476816+00:00", @@ -16217,11 +16217,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23543, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 491 }" }, "fileCreated": "2025-06-21T09:21:52.4476847+00:00", "fileLastModified": "2025-07-14T09:21:52.4476847+00:00", @@ -16250,11 +16250,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 78468, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 492 }" }, "fileCreated": "2025-06-21T09:21:52.4476851+00:00", "fileLastModified": "2025-07-14T09:21:52.4476852+00:00", @@ -16283,11 +16283,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29088, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 493 }" }, "fileCreated": "2025-06-21T09:21:52.4476855+00:00", "fileLastModified": "2025-07-14T09:21:52.4476855+00:00", @@ -16316,11 +16316,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 99077, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 494 }" }, "fileCreated": "2025-06-21T09:21:52.4476859+00:00", "fileLastModified": "2025-07-14T09:21:52.4476859+00:00", @@ -16349,11 +16349,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 79793, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 495 }" }, "fileCreated": "2025-06-21T09:21:52.4476863+00:00", "fileLastModified": "2025-07-14T09:21:52.4476863+00:00", @@ -16382,11 +16382,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65747, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 496 }" }, "fileCreated": "2025-06-21T09:21:52.4476866+00:00", "fileLastModified": "2025-07-14T09:21:52.4476867+00:00", @@ -16415,11 +16415,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77056, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 497 }" }, "fileCreated": "2025-06-21T09:21:52.447687+00:00", "fileLastModified": "2025-07-14T09:21:52.4476871+00:00", @@ -16448,11 +16448,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38343, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 498 }" }, "fileCreated": "2025-06-21T09:21:52.4476874+00:00", "fileLastModified": "2025-07-14T09:21:52.4476874+00:00", @@ -16481,11 +16481,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26052, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 499 }" }, "fileCreated": "2025-06-21T09:21:52.4476878+00:00", "fileLastModified": "2025-07-14T09:21:52.4476878+00:00", @@ -16514,11 +16514,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 63838, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 500 }" }, "fileCreated": "2025-06-21T09:21:52.4476882+00:00", "fileLastModified": "2025-07-14T09:21:52.4476882+00:00", @@ -16547,11 +16547,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53052, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 501 }" }, "fileCreated": "2025-06-21T09:21:52.4476885+00:00", "fileLastModified": "2025-07-14T09:21:52.4476886+00:00", @@ -16580,11 +16580,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80519, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 502 }" }, "fileCreated": "2025-06-21T09:21:52.4476889+00:00", "fileLastModified": "2025-07-14T09:21:52.4476889+00:00", @@ -16613,11 +16613,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61430, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 503 }" }, "fileCreated": "2025-06-21T09:21:52.4476892+00:00", "fileLastModified": "2025-07-14T09:21:52.4476893+00:00", @@ -16646,11 +16646,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 73479, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 504 }" }, "fileCreated": "2025-06-21T09:21:52.4476896+00:00", "fileLastModified": "2025-07-14T09:21:52.4476897+00:00", @@ -16679,11 +16679,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 81341, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 505 }" }, "fileCreated": "2025-06-21T09:21:52.4476925+00:00", "fileLastModified": "2025-07-14T09:21:52.4476925+00:00", @@ -16712,11 +16712,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 56730, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 506 }" }, "fileCreated": "2025-06-21T09:21:52.4476929+00:00", "fileLastModified": "2025-07-14T09:21:52.4476929+00:00", @@ -16745,11 +16745,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 45389, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 507 }" }, "fileCreated": "2025-06-21T09:21:52.4476932+00:00", "fileLastModified": "2025-07-14T09:21:52.4476933+00:00", @@ -16778,11 +16778,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 75112, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 508 }" }, "fileCreated": "2025-06-21T09:21:52.4476936+00:00", "fileLastModified": "2025-07-14T09:21:52.4476936+00:00", @@ -16811,11 +16811,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22358, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 509 }" }, "fileCreated": "2025-06-21T09:21:52.4476939+00:00", "fileLastModified": "2025-07-14T09:21:52.447694+00:00", @@ -16844,11 +16844,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 29690, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 510 }" }, "fileCreated": "2025-06-21T09:21:52.4476943+00:00", "fileLastModified": "2025-07-14T09:21:52.4476943+00:00", @@ -16877,11 +16877,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 93776, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 511 }" }, "fileCreated": "2025-06-21T09:21:52.4476946+00:00", "fileLastModified": "2025-07-14T09:21:52.4476947+00:00", @@ -16910,11 +16910,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 43715, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 512 }" }, "fileCreated": "2025-06-21T09:21:52.4476951+00:00", "fileLastModified": "2025-07-14T09:21:52.4476951+00:00", @@ -16943,11 +16943,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23114, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 513 }" }, "fileCreated": "2025-06-21T09:21:52.4476955+00:00", "fileLastModified": "2025-07-14T09:21:52.4476955+00:00", @@ -16976,11 +16976,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 36396, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 514 }" }, "fileCreated": "2025-06-21T09:21:52.4476991+00:00", "fileLastModified": "2025-07-14T09:21:52.4476991+00:00", @@ -17009,11 +17009,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 84069, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 515 }" }, "fileCreated": "2025-06-21T09:21:52.4476994+00:00", "fileLastModified": "2025-07-14T09:21:52.4476995+00:00", @@ -17042,11 +17042,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59256, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 516 }" }, "fileCreated": "2025-06-21T09:21:52.4476998+00:00", "fileLastModified": "2025-07-14T09:21:52.4476999+00:00", @@ -17075,11 +17075,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 48579, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 517 }" }, "fileCreated": "2025-06-21T09:21:52.4477002+00:00", "fileLastModified": "2025-07-14T09:21:52.4477003+00:00", @@ -17108,11 +17108,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 45320, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 518 }" }, "fileCreated": "2025-06-21T09:21:52.4477005+00:00", "fileLastModified": "2025-07-14T09:21:52.4477006+00:00", @@ -17141,11 +17141,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 85603, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 519 }" }, "fileCreated": "2025-06-21T09:21:52.4477033+00:00", "fileLastModified": "2025-07-14T09:21:52.4477033+00:00", @@ -17174,11 +17174,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 42823, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 520 }" }, "fileCreated": "2025-06-21T09:21:52.4477037+00:00", "fileLastModified": "2025-07-14T09:21:52.4477037+00:00", @@ -17207,11 +17207,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79906, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 521 }" }, "fileCreated": "2025-06-21T09:21:52.447704+00:00", "fileLastModified": "2025-07-14T09:21:52.4477041+00:00", @@ -17240,11 +17240,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 41511, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 522 }" }, "fileCreated": "2025-06-21T09:21:52.4477044+00:00", "fileLastModified": "2025-07-14T09:21:52.4477045+00:00", @@ -17273,11 +17273,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86812, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 523 }" }, "fileCreated": "2025-06-21T09:21:52.4477048+00:00", "fileLastModified": "2025-07-14T09:21:52.4477048+00:00", @@ -17306,11 +17306,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 99779, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 524 }" }, "fileCreated": "2025-06-21T09:21:52.4477052+00:00", "fileLastModified": "2025-07-14T09:21:52.4477052+00:00", @@ -17339,11 +17339,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 95178, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 525 }" }, "fileCreated": "2025-06-21T09:21:52.4477055+00:00", "fileLastModified": "2025-07-14T09:21:52.4477056+00:00", @@ -17372,11 +17372,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69205, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 526 }" }, "fileCreated": "2025-06-21T09:21:52.4477059+00:00", "fileLastModified": "2025-07-14T09:21:52.447706+00:00", @@ -17405,11 +17405,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 57446, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 527 }" }, "fileCreated": "2025-06-21T09:21:52.4477063+00:00", "fileLastModified": "2025-07-14T09:21:52.4477064+00:00", @@ -17438,11 +17438,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 88052, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 528 }" }, "fileCreated": "2025-06-21T09:21:52.4477067+00:00", "fileLastModified": "2025-07-14T09:21:52.4477067+00:00", @@ -17471,11 +17471,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 43529, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 529 }" }, "fileCreated": "2025-06-21T09:21:52.447707+00:00", "fileLastModified": "2025-07-14T09:21:52.4477071+00:00", @@ -17504,11 +17504,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 42034, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 530 }" }, "fileCreated": "2025-06-21T09:21:52.4477074+00:00", "fileLastModified": "2025-07-14T09:21:52.4477074+00:00", @@ -17537,11 +17537,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75399, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 531 }" }, "fileCreated": "2025-06-21T09:21:52.4477078+00:00", "fileLastModified": "2025-07-14T09:21:52.4477078+00:00", @@ -17570,11 +17570,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 45175, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 532 }" }, "fileCreated": "2025-06-21T09:21:52.4477105+00:00", "fileLastModified": "2025-07-14T09:21:52.4477105+00:00", @@ -17603,11 +17603,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 90107, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 533 }" }, "fileCreated": "2025-06-21T09:21:52.4477108+00:00", "fileLastModified": "2025-07-14T09:21:52.4477109+00:00", @@ -17636,11 +17636,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47265, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 534 }" }, "fileCreated": "2025-06-21T09:21:52.4477112+00:00", "fileLastModified": "2025-07-14T09:21:52.4477113+00:00", @@ -17669,11 +17669,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 67130, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 535 }" }, "fileCreated": "2025-06-21T09:21:52.4477116+00:00", "fileLastModified": "2025-07-14T09:21:52.4477116+00:00", @@ -17702,11 +17702,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 66367, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 536 }" }, "fileCreated": "2025-06-21T09:21:52.447712+00:00", "fileLastModified": "2025-07-14T09:21:52.447712+00:00", @@ -17735,11 +17735,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76409, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 537 }" }, "fileCreated": "2025-06-21T09:21:52.4477124+00:00", "fileLastModified": "2025-07-14T09:21:52.4477124+00:00", @@ -17768,11 +17768,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 64478, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 538 }" }, "fileCreated": "2025-06-21T09:21:52.4477127+00:00", "fileLastModified": "2025-07-14T09:21:52.4477128+00:00", @@ -17801,11 +17801,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 71580, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 539 }" }, "fileCreated": "2025-06-21T09:21:52.4477131+00:00", "fileLastModified": "2025-07-14T09:21:52.4477132+00:00", @@ -17834,11 +17834,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 30575, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 540 }" }, "fileCreated": "2025-06-21T09:21:52.4477135+00:00", "fileLastModified": "2025-07-14T09:21:52.4477136+00:00", @@ -17867,11 +17867,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 74635, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 541 }" }, "fileCreated": "2025-06-21T09:21:52.4477139+00:00", "fileLastModified": "2025-07-14T09:21:52.447714+00:00", @@ -17900,11 +17900,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 50638, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 542 }" }, "fileCreated": "2025-06-21T09:21:52.4477143+00:00", "fileLastModified": "2025-07-14T09:21:52.4477143+00:00", @@ -17933,11 +17933,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60355, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 543 }" }, "fileCreated": "2025-06-21T09:21:52.4477146+00:00", "fileLastModified": "2025-07-14T09:21:52.4477147+00:00", @@ -17966,11 +17966,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95129, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 544 }" }, "fileCreated": "2025-06-21T09:21:52.4477151+00:00", "fileLastModified": "2025-07-14T09:21:52.4477151+00:00", @@ -17999,11 +17999,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88858, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 545 }" }, "fileCreated": "2025-06-21T09:21:52.4477154+00:00", "fileLastModified": "2025-07-14T09:21:52.4477155+00:00", @@ -18032,11 +18032,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77756, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 546 }" }, "fileCreated": "2025-06-21T09:21:52.4477174+00:00", "fileLastModified": "2025-07-14T09:21:52.4477175+00:00", @@ -18065,11 +18065,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82375, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 547 }" }, "fileCreated": "2025-06-21T09:21:52.4477178+00:00", "fileLastModified": "2025-07-14T09:21:52.4477179+00:00", @@ -18098,11 +18098,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63955, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 548 }" }, "fileCreated": "2025-06-21T09:21:52.4477182+00:00", "fileLastModified": "2025-07-14T09:21:52.4477183+00:00", @@ -18131,11 +18131,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 83936, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 549 }" }, "fileCreated": "2025-06-21T09:21:52.4477186+00:00", "fileLastModified": "2025-07-14T09:21:52.4477186+00:00", @@ -18164,11 +18164,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 85455, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 550 }" }, "fileCreated": "2025-06-21T09:21:52.447719+00:00", "fileLastModified": "2025-07-14T09:21:52.447719+00:00", @@ -18197,11 +18197,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 54259, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 551 }" }, "fileCreated": "2025-06-21T09:21:52.4477193+00:00", "fileLastModified": "2025-07-14T09:21:52.4477194+00:00", @@ -18230,11 +18230,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38405, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 552 }" }, "fileCreated": "2025-06-21T09:21:52.4477197+00:00", "fileLastModified": "2025-07-14T09:21:52.4477198+00:00", @@ -18263,11 +18263,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 93207, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 553 }" }, "fileCreated": "2025-06-21T09:21:52.4477201+00:00", "fileLastModified": "2025-07-14T09:21:52.4477202+00:00", @@ -18296,11 +18296,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41952, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 554 }" }, "fileCreated": "2025-06-21T09:21:52.4477205+00:00", "fileLastModified": "2025-07-14T09:21:52.4477205+00:00", @@ -18329,11 +18329,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58701, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 555 }" }, "fileCreated": "2025-06-21T09:21:52.4477209+00:00", "fileLastModified": "2025-07-14T09:21:52.4477209+00:00", @@ -18362,11 +18362,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 30268, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 556 }" }, "fileCreated": "2025-06-21T09:21:52.4477212+00:00", "fileLastModified": "2025-07-14T09:21:52.4477213+00:00", @@ -18395,11 +18395,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 32933, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 557 }" }, "fileCreated": "2025-06-21T09:21:52.4477216+00:00", "fileLastModified": "2025-07-14T09:21:52.4477217+00:00", @@ -18428,11 +18428,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50015, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 558 }" }, "fileCreated": "2025-06-21T09:21:52.447722+00:00", "fileLastModified": "2025-07-14T09:21:52.447722+00:00", @@ -18461,11 +18461,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61081, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 559 }" }, "fileCreated": "2025-06-21T09:21:52.4477258+00:00", "fileLastModified": "2025-07-14T09:21:52.4477259+00:00", @@ -18494,11 +18494,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 20676, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 560 }" }, "fileCreated": "2025-06-21T09:21:52.4477262+00:00", "fileLastModified": "2025-07-14T09:21:52.4477263+00:00", @@ -18527,11 +18527,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 49658, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 561 }" }, "fileCreated": "2025-06-21T09:21:52.4477266+00:00", "fileLastModified": "2025-07-14T09:21:52.4477267+00:00", @@ -18560,11 +18560,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70488, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 562 }" }, "fileCreated": "2025-06-21T09:21:52.447727+00:00", "fileLastModified": "2025-07-14T09:21:52.4477271+00:00", @@ -18593,11 +18593,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24875, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 563 }" }, "fileCreated": "2025-06-21T09:21:52.4477274+00:00", "fileLastModified": "2025-07-14T09:21:52.4477275+00:00", @@ -18626,11 +18626,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86313, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 564 }" }, "fileCreated": "2025-06-21T09:21:52.4477278+00:00", "fileLastModified": "2025-07-14T09:21:52.4477279+00:00", @@ -18659,11 +18659,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 55198, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 565 }" }, "fileCreated": "2025-06-21T09:21:52.4477282+00:00", "fileLastModified": "2025-07-14T09:21:52.4477282+00:00", @@ -18692,11 +18692,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40784, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 566 }" }, "fileCreated": "2025-06-21T09:21:52.4477285+00:00", "fileLastModified": "2025-07-14T09:21:52.4477286+00:00", @@ -18725,11 +18725,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 90041, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 567 }" }, "fileCreated": "2025-06-21T09:21:52.4477289+00:00", "fileLastModified": "2025-07-14T09:21:52.4477289+00:00", @@ -18758,11 +18758,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 50088, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 568 }" }, "fileCreated": "2025-06-21T09:21:52.4477292+00:00", "fileLastModified": "2025-07-14T09:21:52.4477293+00:00", @@ -18791,11 +18791,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 87630, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 569 }" }, "fileCreated": "2025-06-21T09:21:52.4477296+00:00", "fileLastModified": "2025-07-14T09:21:52.4477296+00:00", @@ -18824,11 +18824,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 98725, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 570 }" }, "fileCreated": "2025-06-21T09:21:52.4477299+00:00", "fileLastModified": "2025-07-14T09:21:52.44773+00:00", @@ -18857,11 +18857,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63777, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 571 }" }, "fileCreated": "2025-06-21T09:21:52.4477303+00:00", "fileLastModified": "2025-07-14T09:21:52.4477303+00:00", @@ -18890,11 +18890,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 43630, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 572 }" }, "fileCreated": "2025-06-21T09:21:52.4477307+00:00", "fileLastModified": "2025-07-14T09:21:52.4477307+00:00", @@ -18923,11 +18923,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70212, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 573 }" }, "fileCreated": "2025-06-21T09:21:52.4477441+00:00", "fileLastModified": "2025-07-14T09:21:52.4477442+00:00", @@ -18956,11 +18956,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 50044, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 574 }" }, "fileCreated": "2025-06-21T09:21:52.4477445+00:00", "fileLastModified": "2025-07-14T09:21:52.4477446+00:00", @@ -18989,11 +18989,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 67470, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 575 }" }, "fileCreated": "2025-06-21T09:21:52.4477449+00:00", "fileLastModified": "2025-07-14T09:21:52.447745+00:00", @@ -19022,11 +19022,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 61770, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 576 }" }, "fileCreated": "2025-06-21T09:21:52.4477453+00:00", "fileLastModified": "2025-07-14T09:21:52.4477454+00:00", @@ -19055,11 +19055,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82605, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 577 }" }, "fileCreated": "2025-06-21T09:21:52.4477457+00:00", "fileLastModified": "2025-07-14T09:21:52.4477458+00:00", @@ -19088,11 +19088,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 84922, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 578 }" }, "fileCreated": "2025-06-21T09:21:52.4477461+00:00", "fileLastModified": "2025-07-14T09:21:52.4477461+00:00", @@ -19121,11 +19121,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 63480, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 579 }" }, "fileCreated": "2025-06-21T09:21:52.4477465+00:00", "fileLastModified": "2025-07-14T09:21:52.4477465+00:00", @@ -19154,11 +19154,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 76528, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 580 }" }, "fileCreated": "2025-06-21T09:21:52.4477468+00:00", "fileLastModified": "2025-07-14T09:21:52.4477469+00:00", @@ -19187,11 +19187,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 86161, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 581 }" }, "fileCreated": "2025-06-21T09:21:52.4477471+00:00", "fileLastModified": "2025-07-14T09:21:52.4477472+00:00", @@ -19220,11 +19220,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 45158, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 582 }" }, "fileCreated": "2025-06-21T09:21:52.4477475+00:00", "fileLastModified": "2025-07-14T09:21:52.4477476+00:00", @@ -19253,11 +19253,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 30638, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 583 }" }, "fileCreated": "2025-06-21T09:21:52.4477479+00:00", "fileLastModified": "2025-07-14T09:21:52.447748+00:00", @@ -19286,11 +19286,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 90815, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 584 }" }, "fileCreated": "2025-06-21T09:21:52.4477483+00:00", "fileLastModified": "2025-07-14T09:21:52.4477483+00:00", @@ -19319,11 +19319,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 83915, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 585 }" }, "fileCreated": "2025-06-21T09:21:52.4477487+00:00", "fileLastModified": "2025-07-14T09:21:52.4477487+00:00", @@ -19352,11 +19352,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 59077, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 586 }" }, "fileCreated": "2025-06-21T09:21:52.447749+00:00", "fileLastModified": "2025-07-14T09:21:52.4477491+00:00", @@ -19385,11 +19385,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26526, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 587 }" }, "fileCreated": "2025-06-21T09:21:52.4477522+00:00", "fileLastModified": "2025-07-14T09:21:52.4477522+00:00", @@ -19418,11 +19418,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87741, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 588 }" }, "fileCreated": "2025-06-21T09:21:52.4477525+00:00", "fileLastModified": "2025-07-14T09:21:52.4477526+00:00", @@ -19451,11 +19451,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33936, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 589 }" }, "fileCreated": "2025-06-21T09:21:52.4477529+00:00", "fileLastModified": "2025-07-14T09:21:52.4477529+00:00", @@ -19484,11 +19484,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 85731, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 590 }" }, "fileCreated": "2025-06-21T09:21:52.4477532+00:00", "fileLastModified": "2025-07-14T09:21:52.4477533+00:00", @@ -19517,11 +19517,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76690, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 591 }" }, "fileCreated": "2025-06-21T09:21:52.4477536+00:00", "fileLastModified": "2025-07-14T09:21:52.4477537+00:00", @@ -19550,11 +19550,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21049, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 592 }" }, "fileCreated": "2025-06-21T09:21:52.447754+00:00", "fileLastModified": "2025-07-14T09:21:52.447754+00:00", @@ -19583,11 +19583,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96192, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 593 }" }, "fileCreated": "2025-06-21T09:21:52.4477543+00:00", "fileLastModified": "2025-07-14T09:21:52.4477544+00:00", @@ -19616,11 +19616,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 29914, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 594 }" }, "fileCreated": "2025-06-21T09:21:52.4477547+00:00", "fileLastModified": "2025-07-14T09:21:52.4477548+00:00", @@ -19649,11 +19649,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 54702, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 595 }" }, "fileCreated": "2025-06-21T09:21:52.4477551+00:00", "fileLastModified": "2025-07-14T09:21:52.4477551+00:00", @@ -19682,11 +19682,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67467, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 596 }" }, "fileCreated": "2025-06-21T09:21:52.4477555+00:00", "fileLastModified": "2025-07-14T09:21:52.4477555+00:00", @@ -19715,11 +19715,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 32130, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 597 }" }, "fileCreated": "2025-06-21T09:21:52.4477558+00:00", "fileLastModified": "2025-07-14T09:21:52.4477559+00:00", @@ -19748,11 +19748,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 79765, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 598 }" }, "fileCreated": "2025-06-21T09:21:52.4477562+00:00", "fileLastModified": "2025-07-14T09:21:52.4477563+00:00", @@ -19781,11 +19781,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 53219, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 599 }" }, "fileCreated": "2025-06-21T09:21:52.4477566+00:00", "fileLastModified": "2025-07-14T09:21:52.4477566+00:00", @@ -19814,11 +19814,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 33182, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 600 }" }, "fileCreated": "2025-06-21T09:21:52.4477601+00:00", "fileLastModified": "2025-07-14T09:21:52.4477601+00:00", @@ -19847,11 +19847,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94006, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 601 }" }, "fileCreated": "2025-06-21T09:21:52.4477605+00:00", "fileLastModified": "2025-07-14T09:21:52.4477606+00:00", @@ -19880,11 +19880,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 86919, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 602 }" }, "fileCreated": "2025-06-21T09:21:52.4477608+00:00", "fileLastModified": "2025-07-14T09:21:52.4477609+00:00", @@ -19913,11 +19913,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 63369, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 603 }" }, "fileCreated": "2025-06-21T09:21:52.4477613+00:00", "fileLastModified": "2025-07-14T09:21:52.4477613+00:00", @@ -19946,11 +19946,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44224, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 604 }" }, "fileCreated": "2025-06-21T09:21:52.4477616+00:00", "fileLastModified": "2025-07-14T09:21:52.4477617+00:00", @@ -19979,11 +19979,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 57715, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 605 }" }, "fileCreated": "2025-06-21T09:21:52.447762+00:00", "fileLastModified": "2025-07-14T09:21:52.447762+00:00", @@ -20012,11 +20012,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74629, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 606 }" }, "fileCreated": "2025-06-21T09:21:52.4477624+00:00", "fileLastModified": "2025-07-14T09:21:52.4477624+00:00", @@ -20045,11 +20045,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 92641, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 607 }" }, "fileCreated": "2025-06-21T09:21:52.4477627+00:00", "fileLastModified": "2025-07-14T09:21:52.4477628+00:00", @@ -20078,11 +20078,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 88524, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 608 }" }, "fileCreated": "2025-06-21T09:21:52.4477631+00:00", "fileLastModified": "2025-07-14T09:21:52.4477632+00:00", @@ -20111,11 +20111,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 34606, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 609 }" }, "fileCreated": "2025-06-21T09:21:52.4477635+00:00", "fileLastModified": "2025-07-14T09:21:52.4477636+00:00", @@ -20144,11 +20144,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 46245, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 610 }" }, "fileCreated": "2025-06-21T09:21:52.4477639+00:00", "fileLastModified": "2025-07-14T09:21:52.4477639+00:00", @@ -20177,11 +20177,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86343, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 611 }" }, "fileCreated": "2025-06-21T09:21:52.4477642+00:00", "fileLastModified": "2025-07-14T09:21:52.4477643+00:00", @@ -20210,11 +20210,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23992, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 612 }" }, "fileCreated": "2025-06-21T09:21:52.4477646+00:00", "fileLastModified": "2025-07-14T09:21:52.4477646+00:00", @@ -20243,11 +20243,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61290, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 613 }" }, "fileCreated": "2025-06-21T09:21:52.4477649+00:00", "fileLastModified": "2025-07-14T09:21:52.447765+00:00", @@ -20276,11 +20276,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95165, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 614 }" }, "fileCreated": "2025-06-21T09:21:52.4477679+00:00", "fileLastModified": "2025-07-14T09:21:52.4477679+00:00", @@ -20309,11 +20309,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 81973, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 615 }" }, "fileCreated": "2025-06-21T09:21:52.4477682+00:00", "fileLastModified": "2025-07-14T09:21:52.4477683+00:00", @@ -20342,11 +20342,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 23077, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 616 }" }, "fileCreated": "2025-06-21T09:21:52.4477686+00:00", "fileLastModified": "2025-07-14T09:21:52.4477686+00:00", @@ -20375,11 +20375,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 65536, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 617 }" }, "fileCreated": "2025-06-21T09:21:52.447769+00:00", "fileLastModified": "2025-07-14T09:21:52.4477691+00:00", @@ -20408,11 +20408,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60818, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 618 }" }, "fileCreated": "2025-06-21T09:21:52.4477694+00:00", "fileLastModified": "2025-07-14T09:21:52.4477695+00:00", @@ -20441,11 +20441,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72678, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 619 }" }, "fileCreated": "2025-06-21T09:21:52.4477698+00:00", "fileLastModified": "2025-07-14T09:21:52.4477699+00:00", @@ -20474,11 +20474,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 71831, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 620 }" }, "fileCreated": "2025-06-21T09:21:52.4477702+00:00", "fileLastModified": "2025-07-14T09:21:52.4477702+00:00", @@ -20507,11 +20507,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 96712, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 621 }" }, "fileCreated": "2025-06-21T09:21:52.4477706+00:00", "fileLastModified": "2025-07-14T09:21:52.4477706+00:00", @@ -20540,11 +20540,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97152, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 622 }" }, "fileCreated": "2025-06-21T09:21:52.4477709+00:00", "fileLastModified": "2025-07-14T09:21:52.447771+00:00", @@ -20573,11 +20573,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 41027, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 623 }" }, "fileCreated": "2025-06-21T09:21:52.4477713+00:00", "fileLastModified": "2025-07-14T09:21:52.4477713+00:00", @@ -20606,11 +20606,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34164, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 624 }" }, "fileCreated": "2025-06-21T09:21:52.4477716+00:00", "fileLastModified": "2025-07-14T09:21:52.4477717+00:00", @@ -20639,11 +20639,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 75519, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 625 }" }, "fileCreated": "2025-06-21T09:21:52.447772+00:00", "fileLastModified": "2025-07-14T09:21:52.4477721+00:00", @@ -20672,11 +20672,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 23232, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 626 }" }, "fileCreated": "2025-06-21T09:21:52.4477724+00:00", "fileLastModified": "2025-07-14T09:21:52.4477724+00:00", @@ -20705,11 +20705,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82579, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 627 }" }, "fileCreated": "2025-06-21T09:21:52.4477728+00:00", "fileLastModified": "2025-07-14T09:21:52.4477728+00:00", @@ -20738,11 +20738,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 90198, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 628 }" }, "fileCreated": "2025-06-21T09:21:52.4477757+00:00", "fileLastModified": "2025-07-14T09:21:52.4477758+00:00", @@ -20771,11 +20771,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77442, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 629 }" }, "fileCreated": "2025-06-21T09:21:52.4477761+00:00", "fileLastModified": "2025-07-14T09:21:52.4477762+00:00", @@ -20804,11 +20804,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 75549, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 630 }" }, "fileCreated": "2025-06-21T09:21:52.4477765+00:00", "fileLastModified": "2025-07-14T09:21:52.4477765+00:00", @@ -20837,11 +20837,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 62621, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 631 }" }, "fileCreated": "2025-06-21T09:21:52.4477768+00:00", "fileLastModified": "2025-07-14T09:21:52.4477769+00:00", @@ -20870,11 +20870,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80625, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 632 }" }, "fileCreated": "2025-06-21T09:21:52.4477772+00:00", "fileLastModified": "2025-07-14T09:21:52.4477772+00:00", @@ -20903,11 +20903,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33829, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 633 }" }, "fileCreated": "2025-06-21T09:21:52.4477775+00:00", "fileLastModified": "2025-07-14T09:21:52.4477776+00:00", @@ -20936,11 +20936,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 36929, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 634 }" }, "fileCreated": "2025-06-21T09:21:52.4477779+00:00", "fileLastModified": "2025-07-14T09:21:52.447778+00:00", @@ -20969,11 +20969,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 91934, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 635 }" }, "fileCreated": "2025-06-21T09:21:52.4477783+00:00", "fileLastModified": "2025-07-14T09:21:52.4477783+00:00", @@ -21002,11 +21002,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 24996, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 636 }" }, "fileCreated": "2025-06-21T09:21:52.4477786+00:00", "fileLastModified": "2025-07-14T09:21:52.4477787+00:00", @@ -21035,11 +21035,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 66143, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 637 }" }, "fileCreated": "2025-06-21T09:21:52.447779+00:00", "fileLastModified": "2025-07-14T09:21:52.4477791+00:00", @@ -21068,11 +21068,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 49700, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 638 }" }, "fileCreated": "2025-06-21T09:21:52.4477793+00:00", "fileLastModified": "2025-07-14T09:21:52.4477794+00:00", @@ -21101,11 +21101,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 54638, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 639 }" }, "fileCreated": "2025-06-21T09:21:52.4477797+00:00", "fileLastModified": "2025-07-14T09:21:52.4477798+00:00", @@ -21134,11 +21134,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 20270, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 640 }" }, "fileCreated": "2025-06-21T09:21:52.44778+00:00", "fileLastModified": "2025-07-14T09:21:52.4477801+00:00", @@ -21167,11 +21167,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 88346, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 641 }" }, "fileCreated": "2025-06-21T09:21:52.4477964+00:00", "fileLastModified": "2025-07-14T09:21:52.4477965+00:00", @@ -21200,11 +21200,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90897, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 642 }" }, "fileCreated": "2025-06-21T09:21:52.447797+00:00", "fileLastModified": "2025-07-14T09:21:52.4477971+00:00", @@ -21233,11 +21233,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77731, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 643 }" }, "fileCreated": "2025-06-21T09:21:52.4477974+00:00", "fileLastModified": "2025-07-14T09:21:52.4477974+00:00", @@ -21266,11 +21266,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 74551, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 644 }" }, "fileCreated": "2025-06-21T09:21:52.4477977+00:00", "fileLastModified": "2025-07-14T09:21:52.4477978+00:00", @@ -21299,11 +21299,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 75728, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 645 }" }, "fileCreated": "2025-06-21T09:21:52.4477981+00:00", "fileLastModified": "2025-07-14T09:21:52.4477981+00:00", @@ -21332,11 +21332,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47480, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 646 }" }, "fileCreated": "2025-06-21T09:21:52.4477984+00:00", "fileLastModified": "2025-07-14T09:21:52.4477985+00:00", @@ -21365,11 +21365,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 85215, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 647 }" }, "fileCreated": "2025-06-21T09:21:52.4477988+00:00", "fileLastModified": "2025-07-14T09:21:52.4477989+00:00", @@ -21398,11 +21398,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48676, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 648 }" }, "fileCreated": "2025-06-21T09:21:52.4477993+00:00", "fileLastModified": "2025-07-14T09:21:52.4477993+00:00", @@ -21431,11 +21431,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94681, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 649 }" }, "fileCreated": "2025-06-21T09:21:52.4477997+00:00", "fileLastModified": "2025-07-14T09:21:52.4477997+00:00", @@ -21464,11 +21464,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 89105, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 650 }" }, "fileCreated": "2025-06-21T09:21:52.4478001+00:00", "fileLastModified": "2025-07-14T09:21:52.4478001+00:00", @@ -21497,11 +21497,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 89355, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 651 }" }, "fileCreated": "2025-06-21T09:21:52.4478004+00:00", "fileLastModified": "2025-07-14T09:21:52.4478005+00:00", @@ -21530,11 +21530,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 75911, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 652 }" }, "fileCreated": "2025-06-21T09:21:52.4478008+00:00", "fileLastModified": "2025-07-14T09:21:52.4478009+00:00", @@ -21563,11 +21563,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 74981, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 653 }" }, "fileCreated": "2025-06-21T09:21:52.4478012+00:00", "fileLastModified": "2025-07-14T09:21:52.4478013+00:00", @@ -21596,11 +21596,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34998, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 654 }" }, "fileCreated": "2025-06-21T09:21:52.4478016+00:00", "fileLastModified": "2025-07-14T09:21:52.4478016+00:00", @@ -21629,11 +21629,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 54763, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 655 }" }, "fileCreated": "2025-06-21T09:21:52.4478039+00:00", "fileLastModified": "2025-07-14T09:21:52.447804+00:00", @@ -21662,11 +21662,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80056, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 656 }" }, "fileCreated": "2025-06-21T09:21:52.4478043+00:00", "fileLastModified": "2025-07-14T09:21:52.4478044+00:00", @@ -21695,11 +21695,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76819, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 657 }" }, "fileCreated": "2025-06-21T09:21:52.4478047+00:00", "fileLastModified": "2025-07-14T09:21:52.4478047+00:00", @@ -21728,11 +21728,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87530, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 658 }" }, "fileCreated": "2025-06-21T09:21:52.4478051+00:00", "fileLastModified": "2025-07-14T09:21:52.4478051+00:00", @@ -21761,11 +21761,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 87456, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 659 }" }, "fileCreated": "2025-06-21T09:21:52.4478054+00:00", "fileLastModified": "2025-07-14T09:21:52.4478055+00:00", @@ -21794,11 +21794,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 36669, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 660 }" }, "fileCreated": "2025-06-21T09:21:52.4478057+00:00", "fileLastModified": "2025-07-14T09:21:52.4478058+00:00", @@ -21827,11 +21827,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 78429, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 661 }" }, "fileCreated": "2025-06-21T09:21:52.4478061+00:00", "fileLastModified": "2025-07-14T09:21:52.4478062+00:00", @@ -21860,11 +21860,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53191, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 662 }" }, "fileCreated": "2025-06-21T09:21:52.4478065+00:00", "fileLastModified": "2025-07-14T09:21:52.4478066+00:00", @@ -21893,11 +21893,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 40092, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 663 }" }, "fileCreated": "2025-06-21T09:21:52.4478069+00:00", "fileLastModified": "2025-07-14T09:21:52.447807+00:00", @@ -21926,11 +21926,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73963, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 664 }" }, "fileCreated": "2025-06-21T09:21:52.4478073+00:00", "fileLastModified": "2025-07-14T09:21:52.4478074+00:00", @@ -21959,11 +21959,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 53946, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 665 }" }, "fileCreated": "2025-06-21T09:21:52.4478077+00:00", "fileLastModified": "2025-07-14T09:21:52.4478077+00:00", @@ -21992,11 +21992,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 62881, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 666 }" }, "fileCreated": "2025-06-21T09:21:52.447808+00:00", "fileLastModified": "2025-07-14T09:21:52.4478081+00:00", @@ -22025,11 +22025,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 80518, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 667 }" }, "fileCreated": "2025-06-21T09:21:52.4478084+00:00", "fileLastModified": "2025-07-14T09:21:52.4478085+00:00", @@ -22058,11 +22058,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44717, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 668 }" }, "fileCreated": "2025-06-21T09:21:52.4478127+00:00", "fileLastModified": "2025-07-14T09:21:52.4478128+00:00", @@ -22091,11 +22091,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38496, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 669 }" }, "fileCreated": "2025-06-21T09:21:52.4478132+00:00", "fileLastModified": "2025-07-14T09:21:52.4478132+00:00", @@ -22124,11 +22124,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 75233, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 670 }" }, "fileCreated": "2025-06-21T09:21:52.4478136+00:00", "fileLastModified": "2025-07-14T09:21:52.4478136+00:00", @@ -22157,11 +22157,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22265, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 671 }" }, "fileCreated": "2025-06-21T09:21:52.4478139+00:00", "fileLastModified": "2025-07-14T09:21:52.447814+00:00", @@ -22190,11 +22190,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 47241, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 672 }" }, "fileCreated": "2025-06-21T09:21:52.4478143+00:00", "fileLastModified": "2025-07-14T09:21:52.4478144+00:00", @@ -22223,11 +22223,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 36338, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 673 }" }, "fileCreated": "2025-06-21T09:21:52.4478147+00:00", "fileLastModified": "2025-07-14T09:21:52.4478147+00:00", @@ -22256,11 +22256,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27969, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 674 }" }, "fileCreated": "2025-06-21T09:21:52.447815+00:00", "fileLastModified": "2025-07-14T09:21:52.4478151+00:00", @@ -22289,11 +22289,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 51443, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 675 }" }, "fileCreated": "2025-06-21T09:21:52.4478154+00:00", "fileLastModified": "2025-07-14T09:21:52.4478155+00:00", @@ -22322,11 +22322,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 20418, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 676 }" }, "fileCreated": "2025-06-21T09:21:52.4478158+00:00", "fileLastModified": "2025-07-14T09:21:52.4478159+00:00", @@ -22355,11 +22355,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 52533, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 677 }" }, "fileCreated": "2025-06-21T09:21:52.4478161+00:00", "fileLastModified": "2025-07-14T09:21:52.4478162+00:00", @@ -22388,11 +22388,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 56608, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 678 }" }, "fileCreated": "2025-06-21T09:21:52.4478165+00:00", "fileLastModified": "2025-07-14T09:21:52.4478166+00:00", @@ -22421,11 +22421,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 54026, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 679 }" }, "fileCreated": "2025-06-21T09:21:52.4478169+00:00", "fileLastModified": "2025-07-14T09:21:52.4478169+00:00", @@ -22454,11 +22454,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34879, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 680 }" }, "fileCreated": "2025-06-21T09:21:52.4478172+00:00", "fileLastModified": "2025-07-14T09:21:52.4478173+00:00", @@ -22487,11 +22487,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47817, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 681 }" }, "fileCreated": "2025-06-21T09:21:52.4478176+00:00", "fileLastModified": "2025-07-14T09:21:52.4478176+00:00", @@ -22520,11 +22520,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 74257, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 682 }" }, "fileCreated": "2025-06-21T09:21:52.4478213+00:00", "fileLastModified": "2025-07-14T09:21:52.4478213+00:00", @@ -22553,11 +22553,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72973, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 683 }" }, "fileCreated": "2025-06-21T09:21:52.4478217+00:00", "fileLastModified": "2025-07-14T09:21:52.4478217+00:00", @@ -22586,11 +22586,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98373, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 684 }" }, "fileCreated": "2025-06-21T09:21:52.447822+00:00", "fileLastModified": "2025-07-14T09:21:52.4478221+00:00", @@ -22619,11 +22619,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 84924, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 685 }" }, "fileCreated": "2025-06-21T09:21:52.4478224+00:00", "fileLastModified": "2025-07-14T09:21:52.4478225+00:00", @@ -22652,11 +22652,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 38911, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 686 }" }, "fileCreated": "2025-06-21T09:21:52.4478228+00:00", "fileLastModified": "2025-07-14T09:21:52.4478229+00:00", @@ -22685,11 +22685,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 40489, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 687 }" }, "fileCreated": "2025-06-21T09:21:52.4478232+00:00", "fileLastModified": "2025-07-14T09:21:52.4478232+00:00", @@ -22718,11 +22718,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40083, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 688 }" }, "fileCreated": "2025-06-21T09:21:52.4478236+00:00", "fileLastModified": "2025-07-14T09:21:52.4478236+00:00", @@ -22751,11 +22751,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 99011, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 689 }" }, "fileCreated": "2025-06-21T09:21:52.447824+00:00", "fileLastModified": "2025-07-14T09:21:52.447824+00:00", @@ -22784,11 +22784,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 53452, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 690 }" }, "fileCreated": "2025-06-21T09:21:52.4478243+00:00", "fileLastModified": "2025-07-14T09:21:52.4478244+00:00", @@ -22817,11 +22817,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 75961, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 691 }" }, "fileCreated": "2025-06-21T09:21:52.4478247+00:00", "fileLastModified": "2025-07-14T09:21:52.4478248+00:00", @@ -22850,11 +22850,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69003, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 692 }" }, "fileCreated": "2025-06-21T09:21:52.4478251+00:00", "fileLastModified": "2025-07-14T09:21:52.4478251+00:00", @@ -22883,11 +22883,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 89971, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 693 }" }, "fileCreated": "2025-06-21T09:21:52.4478254+00:00", "fileLastModified": "2025-07-14T09:21:52.4478254+00:00", @@ -22916,11 +22916,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 34142, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 694 }" }, "fileCreated": "2025-06-21T09:21:52.4478258+00:00", "fileLastModified": "2025-07-14T09:21:52.4478258+00:00", @@ -22949,11 +22949,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 53209, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 695 }" }, "fileCreated": "2025-06-21T09:21:52.4478261+00:00", "fileLastModified": "2025-07-14T09:21:52.4478262+00:00", @@ -22982,11 +22982,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90401, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 696 }" }, "fileCreated": "2025-06-21T09:21:52.4478288+00:00", "fileLastModified": "2025-07-14T09:21:52.4478289+00:00", @@ -23015,11 +23015,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55079, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 697 }" }, "fileCreated": "2025-06-21T09:21:52.4478291+00:00", "fileLastModified": "2025-07-14T09:21:52.4478292+00:00", @@ -23048,11 +23048,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 32421, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 698 }" }, "fileCreated": "2025-06-21T09:21:52.4478295+00:00", "fileLastModified": "2025-07-14T09:21:52.4478296+00:00", @@ -23081,11 +23081,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98494, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 699 }" }, "fileCreated": "2025-06-21T09:21:52.44783+00:00", "fileLastModified": "2025-07-14T09:21:52.44783+00:00", @@ -23114,11 +23114,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 82748, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 700 }" }, "fileCreated": "2025-06-21T09:21:52.4478303+00:00", "fileLastModified": "2025-07-14T09:21:52.4478304+00:00", @@ -23147,11 +23147,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82732, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 701 }" }, "fileCreated": "2025-06-21T09:21:52.4478307+00:00", "fileLastModified": "2025-07-14T09:21:52.4478307+00:00", @@ -23180,11 +23180,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 21254, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 702 }" }, "fileCreated": "2025-06-21T09:21:52.4478311+00:00", "fileLastModified": "2025-07-14T09:21:52.4478311+00:00", @@ -23213,11 +23213,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 35803, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 703 }" }, "fileCreated": "2025-06-21T09:21:52.4478314+00:00", "fileLastModified": "2025-07-14T09:21:52.4478315+00:00", @@ -23246,11 +23246,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31426, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 704 }" }, "fileCreated": "2025-06-21T09:21:52.4478318+00:00", "fileLastModified": "2025-07-14T09:21:52.4478319+00:00", @@ -23279,11 +23279,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 80350, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 705 }" }, "fileCreated": "2025-06-21T09:21:52.4478322+00:00", "fileLastModified": "2025-07-14T09:21:52.4478323+00:00", @@ -23312,11 +23312,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57523, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 706 }" }, "fileCreated": "2025-06-21T09:21:52.4478326+00:00", "fileLastModified": "2025-07-14T09:21:52.4478327+00:00", @@ -23345,11 +23345,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 96231, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 707 }" }, "fileCreated": "2025-06-21T09:21:52.447833+00:00", "fileLastModified": "2025-07-14T09:21:52.4478331+00:00", @@ -23378,11 +23378,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46122, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 708 }" }, "fileCreated": "2025-06-21T09:21:52.4478334+00:00", "fileLastModified": "2025-07-14T09:21:52.4478335+00:00", @@ -23411,11 +23411,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86641, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 709 }" }, "fileCreated": "2025-06-21T09:21:52.4478364+00:00", "fileLastModified": "2025-07-14T09:21:52.4478365+00:00", @@ -23444,11 +23444,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 38719, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 710 }" }, "fileCreated": "2025-06-21T09:21:52.4478368+00:00", "fileLastModified": "2025-07-14T09:21:52.4478369+00:00", @@ -23477,11 +23477,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33043, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 711 }" }, "fileCreated": "2025-06-21T09:21:52.4478372+00:00", "fileLastModified": "2025-07-14T09:21:52.4478373+00:00", @@ -23510,11 +23510,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65681, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 712 }" }, "fileCreated": "2025-06-21T09:21:52.4478376+00:00", "fileLastModified": "2025-07-14T09:21:52.4478376+00:00", @@ -23543,11 +23543,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94224, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 713 }" }, "fileCreated": "2025-06-21T09:21:52.4478379+00:00", "fileLastModified": "2025-07-14T09:21:52.447838+00:00", @@ -23576,11 +23576,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 72606, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 714 }" }, "fileCreated": "2025-06-21T09:21:52.4478383+00:00", "fileLastModified": "2025-07-14T09:21:52.4478383+00:00", @@ -23609,11 +23609,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58982, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 715 }" }, "fileCreated": "2025-06-21T09:21:52.4478386+00:00", "fileLastModified": "2025-07-14T09:21:52.4478387+00:00", @@ -23642,11 +23642,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 93195, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 716 }" }, "fileCreated": "2025-06-21T09:21:52.447839+00:00", "fileLastModified": "2025-07-14T09:21:52.447839+00:00", @@ -23675,11 +23675,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 55953, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 717 }" }, "fileCreated": "2025-06-21T09:21:52.4478393+00:00", "fileLastModified": "2025-07-14T09:21:52.4478394+00:00", @@ -23708,11 +23708,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 48809, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 718 }" }, "fileCreated": "2025-06-21T09:21:52.4478397+00:00", "fileLastModified": "2025-07-14T09:21:52.4478397+00:00", @@ -23741,11 +23741,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63617, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 719 }" }, "fileCreated": "2025-06-21T09:21:52.44784+00:00", "fileLastModified": "2025-07-14T09:21:52.4478401+00:00", @@ -23774,11 +23774,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34078, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 720 }" }, "fileCreated": "2025-06-21T09:21:52.4478404+00:00", "fileLastModified": "2025-07-14T09:21:52.4478405+00:00", @@ -23807,11 +23807,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 74144, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 721 }" }, "fileCreated": "2025-06-21T09:21:52.4478408+00:00", "fileLastModified": "2025-07-14T09:21:52.4478408+00:00", @@ -23840,11 +23840,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 78998, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 722 }" }, "fileCreated": "2025-06-21T09:21:52.4478412+00:00", "fileLastModified": "2025-07-14T09:21:52.4478412+00:00", @@ -23873,11 +23873,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59449, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 723 }" }, "fileCreated": "2025-06-21T09:21:52.4478439+00:00", "fileLastModified": "2025-07-14T09:21:52.4478439+00:00", @@ -23906,11 +23906,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 54028, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 724 }" }, "fileCreated": "2025-06-21T09:21:52.4478443+00:00", "fileLastModified": "2025-07-14T09:21:52.4478445+00:00", @@ -23939,11 +23939,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 47153, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 725 }" }, "fileCreated": "2025-06-21T09:21:52.4478448+00:00", "fileLastModified": "2025-07-14T09:21:52.4478449+00:00", @@ -23972,11 +23972,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 67995, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 726 }" }, "fileCreated": "2025-06-21T09:21:52.4478452+00:00", "fileLastModified": "2025-07-14T09:21:52.4478452+00:00", @@ -24005,11 +24005,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 99773, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 727 }" }, "fileCreated": "2025-06-21T09:21:52.4478455+00:00", "fileLastModified": "2025-07-14T09:21:52.4478455+00:00", @@ -24038,11 +24038,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69357, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 728 }" }, "fileCreated": "2025-06-21T09:21:52.4478458+00:00", "fileLastModified": "2025-07-14T09:21:52.4478459+00:00", @@ -24071,11 +24071,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 93396, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 729 }" }, "fileCreated": "2025-06-21T09:21:52.4478462+00:00", "fileLastModified": "2025-07-14T09:21:52.4478462+00:00", @@ -24104,11 +24104,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60855, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 730 }" }, "fileCreated": "2025-06-21T09:21:52.4478466+00:00", "fileLastModified": "2025-07-14T09:21:52.4478466+00:00", @@ -24137,11 +24137,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 52371, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 731 }" }, "fileCreated": "2025-06-21T09:21:52.447847+00:00", "fileLastModified": "2025-07-14T09:21:52.447847+00:00", @@ -24170,11 +24170,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 20641, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 732 }" }, "fileCreated": "2025-06-21T09:21:52.4478473+00:00", "fileLastModified": "2025-07-14T09:21:52.4478474+00:00", @@ -24203,11 +24203,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 35247, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 733 }" }, "fileCreated": "2025-06-21T09:21:52.4478477+00:00", "fileLastModified": "2025-07-14T09:21:52.4478478+00:00", @@ -24236,11 +24236,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61927, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 734 }" }, "fileCreated": "2025-06-21T09:21:52.4478481+00:00", "fileLastModified": "2025-07-14T09:21:52.4478481+00:00", @@ -24269,11 +24269,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 57255, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 735 }" }, "fileCreated": "2025-06-21T09:21:52.4478485+00:00", "fileLastModified": "2025-07-14T09:21:52.4478485+00:00", @@ -24302,11 +24302,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53278, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 736 }" }, "fileCreated": "2025-06-21T09:21:52.4478489+00:00", "fileLastModified": "2025-07-14T09:21:52.4478489+00:00", @@ -24335,11 +24335,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72449, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 737 }" }, "fileCreated": "2025-06-21T09:21:52.4478516+00:00", "fileLastModified": "2025-07-14T09:21:52.4478517+00:00", @@ -24368,11 +24368,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 93173, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 738 }" }, "fileCreated": "2025-06-21T09:21:52.447852+00:00", "fileLastModified": "2025-07-14T09:21:52.4478521+00:00", @@ -24401,11 +24401,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 80722, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 739 }" }, "fileCreated": "2025-06-21T09:21:52.4478524+00:00", "fileLastModified": "2025-07-14T09:21:52.4478524+00:00", @@ -24434,11 +24434,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64744, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 740 }" }, "fileCreated": "2025-06-21T09:21:52.4478527+00:00", "fileLastModified": "2025-07-14T09:21:52.4478528+00:00", @@ -24467,11 +24467,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 26156, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 741 }" }, "fileCreated": "2025-06-21T09:21:52.4478531+00:00", "fileLastModified": "2025-07-14T09:21:52.4478532+00:00", @@ -24500,11 +24500,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 98301, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 742 }" }, "fileCreated": "2025-06-21T09:21:52.4478535+00:00", "fileLastModified": "2025-07-14T09:21:52.4478535+00:00", @@ -24533,11 +24533,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33513, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 743 }" }, "fileCreated": "2025-06-21T09:21:52.4478538+00:00", "fileLastModified": "2025-07-14T09:21:52.4478539+00:00", @@ -24566,11 +24566,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 51640, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 744 }" }, "fileCreated": "2025-06-21T09:21:52.4478542+00:00", "fileLastModified": "2025-07-14T09:21:52.4478543+00:00", @@ -24599,11 +24599,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 47429, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 745 }" }, "fileCreated": "2025-06-21T09:21:52.4478546+00:00", "fileLastModified": "2025-07-14T09:21:52.4478547+00:00", @@ -24632,11 +24632,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 94151, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 746 }" }, "fileCreated": "2025-06-21T09:21:52.4478569+00:00", "fileLastModified": "2025-07-14T09:21:52.447857+00:00", @@ -24665,11 +24665,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 79842, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 747 }" }, "fileCreated": "2025-06-21T09:21:52.4478575+00:00", "fileLastModified": "2025-07-14T09:21:52.4478575+00:00", @@ -24698,11 +24698,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70714, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 748 }" }, "fileCreated": "2025-06-21T09:21:52.447858+00:00", "fileLastModified": "2025-07-14T09:21:52.4478581+00:00", @@ -24731,11 +24731,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 21357, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 749 }" }, "fileCreated": "2025-06-21T09:21:52.4478585+00:00", "fileLastModified": "2025-07-14T09:21:52.4478585+00:00", @@ -24764,11 +24764,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 28500, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 750 }" }, "fileCreated": "2025-06-21T09:21:52.4478622+00:00", "fileLastModified": "2025-07-14T09:21:52.4478622+00:00", @@ -24797,11 +24797,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44674, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 751 }" }, "fileCreated": "2025-06-21T09:21:52.4478627+00:00", "fileLastModified": "2025-07-14T09:21:52.4478628+00:00", @@ -24830,11 +24830,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83599, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 752 }" }, "fileCreated": "2025-06-21T09:21:52.4478632+00:00", "fileLastModified": "2025-07-14T09:21:52.4478633+00:00", @@ -24863,11 +24863,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 56949, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 753 }" }, "fileCreated": "2025-06-21T09:21:52.4478637+00:00", "fileLastModified": "2025-07-14T09:21:52.4478638+00:00", @@ -24896,11 +24896,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92596, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 754 }" }, "fileCreated": "2025-06-21T09:21:52.4478642+00:00", "fileLastModified": "2025-07-14T09:21:52.4478643+00:00", @@ -24929,11 +24929,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 70789, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 755 }" }, "fileCreated": "2025-06-21T09:21:52.4478647+00:00", "fileLastModified": "2025-07-14T09:21:52.4478648+00:00", @@ -24962,11 +24962,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69869, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 756 }" }, "fileCreated": "2025-06-21T09:21:52.4478652+00:00", "fileLastModified": "2025-07-14T09:21:52.4478653+00:00", @@ -24995,11 +24995,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 28221, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 757 }" }, "fileCreated": "2025-06-21T09:21:52.4478657+00:00", "fileLastModified": "2025-07-14T09:21:52.4478658+00:00", @@ -25028,11 +25028,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 89822, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 758 }" }, "fileCreated": "2025-06-21T09:21:52.4478662+00:00", "fileLastModified": "2025-07-14T09:21:52.4478663+00:00", @@ -25061,11 +25061,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 27110, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 759 }" }, "fileCreated": "2025-06-21T09:21:52.4478669+00:00", "fileLastModified": "2025-07-14T09:21:52.4478669+00:00", @@ -25094,11 +25094,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 79351, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 760 }" }, "fileCreated": "2025-06-21T09:21:52.4478674+00:00", "fileLastModified": "2025-07-14T09:21:52.4478675+00:00", @@ -25127,11 +25127,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 34276, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 761 }" }, "fileCreated": "2025-06-21T09:21:52.447868+00:00", "fileLastModified": "2025-07-14T09:21:52.447868+00:00", @@ -25160,11 +25160,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94161, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 762 }" }, "fileCreated": "2025-06-21T09:21:52.4478685+00:00", "fileLastModified": "2025-07-14T09:21:52.4478686+00:00", @@ -25193,11 +25193,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 29701, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 763 }" }, "fileCreated": "2025-06-21T09:21:52.4478691+00:00", "fileLastModified": "2025-07-14T09:21:52.4478692+00:00", @@ -25226,11 +25226,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 68289, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 764 }" }, "fileCreated": "2025-06-21T09:21:52.4478731+00:00", "fileLastModified": "2025-07-14T09:21:52.4478732+00:00", @@ -25259,11 +25259,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 22682, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 765 }" }, "fileCreated": "2025-06-21T09:21:52.4478737+00:00", "fileLastModified": "2025-07-14T09:21:52.4478737+00:00", @@ -25292,11 +25292,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60414, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 766 }" }, "fileCreated": "2025-06-21T09:21:52.4478743+00:00", "fileLastModified": "2025-07-14T09:21:52.4478744+00:00", @@ -25325,11 +25325,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 67533, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 767 }" }, "fileCreated": "2025-06-21T09:21:52.4478748+00:00", "fileLastModified": "2025-07-14T09:21:52.4478748+00:00", @@ -25358,11 +25358,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50381, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 768 }" }, "fileCreated": "2025-06-21T09:21:52.4478751+00:00", "fileLastModified": "2025-07-14T09:21:52.4478752+00:00", @@ -25391,11 +25391,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 60202, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 769 }" }, "fileCreated": "2025-06-21T09:21:52.4478755+00:00", "fileLastModified": "2025-07-14T09:21:52.4478756+00:00", @@ -25424,11 +25424,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 56160, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 770 }" }, "fileCreated": "2025-06-21T09:21:52.4478759+00:00", "fileLastModified": "2025-07-14T09:21:52.447876+00:00", @@ -25457,11 +25457,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 77864, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 771 }" }, "fileCreated": "2025-06-21T09:21:52.4478763+00:00", "fileLastModified": "2025-07-14T09:21:52.4478763+00:00", @@ -25490,11 +25490,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60902, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 772 }" }, "fileCreated": "2025-06-21T09:21:52.4478767+00:00", "fileLastModified": "2025-07-14T09:21:52.4478767+00:00", @@ -25523,11 +25523,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 93836, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 773 }" }, "fileCreated": "2025-06-21T09:21:52.447877+00:00", "fileLastModified": "2025-07-14T09:21:52.4478771+00:00", @@ -25556,11 +25556,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43651, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 774 }" }, "fileCreated": "2025-06-21T09:21:52.4478774+00:00", "fileLastModified": "2025-07-14T09:21:52.4478775+00:00", @@ -25589,11 +25589,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 41522, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 775 }" }, "fileCreated": "2025-06-21T09:21:52.4478778+00:00", "fileLastModified": "2025-07-14T09:21:52.4478779+00:00", @@ -25622,11 +25622,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91566, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 776 }" }, "fileCreated": "2025-06-21T09:21:52.4478782+00:00", "fileLastModified": "2025-07-14T09:21:52.4478782+00:00", @@ -25655,11 +25655,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 28331, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 777 }" }, "fileCreated": "2025-06-21T09:21:52.4478823+00:00", "fileLastModified": "2025-07-14T09:21:52.4478824+00:00", @@ -25688,11 +25688,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73079, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 778 }" }, "fileCreated": "2025-06-21T09:21:52.4478827+00:00", "fileLastModified": "2025-07-14T09:21:52.4478828+00:00", @@ -25721,11 +25721,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 41689, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 779 }" }, "fileCreated": "2025-06-21T09:21:52.4478831+00:00", "fileLastModified": "2025-07-14T09:21:52.4478832+00:00", @@ -25754,11 +25754,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58785, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 780 }" }, "fileCreated": "2025-06-21T09:21:52.4478835+00:00", "fileLastModified": "2025-07-14T09:21:52.4478836+00:00", @@ -25787,11 +25787,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82388, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 781 }" }, "fileCreated": "2025-06-21T09:21:52.4478839+00:00", "fileLastModified": "2025-07-14T09:21:52.447884+00:00", @@ -25820,11 +25820,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 64845, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 782 }" }, "fileCreated": "2025-06-21T09:21:52.4478843+00:00", "fileLastModified": "2025-07-14T09:21:52.4478843+00:00", @@ -25853,11 +25853,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64850, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 783 }" }, "fileCreated": "2025-06-21T09:21:52.4478846+00:00", "fileLastModified": "2025-07-14T09:21:52.4478847+00:00", @@ -25886,11 +25886,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 48339, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 784 }" }, "fileCreated": "2025-06-21T09:21:52.447885+00:00", "fileLastModified": "2025-07-14T09:21:52.4478851+00:00", @@ -25919,11 +25919,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23192, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 785 }" }, "fileCreated": "2025-06-21T09:21:52.4478854+00:00", "fileLastModified": "2025-07-14T09:21:52.4478854+00:00", @@ -25952,11 +25952,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50203, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 786 }" }, "fileCreated": "2025-06-21T09:21:52.4478858+00:00", "fileLastModified": "2025-07-14T09:21:52.4478858+00:00", @@ -25985,11 +25985,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 46068, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 787 }" }, "fileCreated": "2025-06-21T09:21:52.4478861+00:00", "fileLastModified": "2025-07-14T09:21:52.4478862+00:00", @@ -26018,11 +26018,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97762, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 788 }" }, "fileCreated": "2025-06-21T09:21:52.4478866+00:00", "fileLastModified": "2025-07-14T09:21:52.4478866+00:00", @@ -26051,11 +26051,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 57924, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 789 }" }, "fileCreated": "2025-06-21T09:21:52.4478869+00:00", "fileLastModified": "2025-07-14T09:21:52.447887+00:00", @@ -26084,11 +26084,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 78280, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 790 }" }, "fileCreated": "2025-06-21T09:21:52.4478873+00:00", "fileLastModified": "2025-07-14T09:21:52.4478874+00:00", @@ -26117,11 +26117,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 22050, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 791 }" }, "fileCreated": "2025-06-21T09:21:52.4478912+00:00", "fileLastModified": "2025-07-14T09:21:52.4478913+00:00", @@ -26150,11 +26150,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 22279, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 792 }" }, "fileCreated": "2025-06-21T09:21:52.4478916+00:00", "fileLastModified": "2025-07-14T09:21:52.4478916+00:00", @@ -26183,11 +26183,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 52367, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 793 }" }, "fileCreated": "2025-06-21T09:21:52.4478919+00:00", "fileLastModified": "2025-07-14T09:21:52.447892+00:00", @@ -26216,11 +26216,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 22766, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 794 }" }, "fileCreated": "2025-06-21T09:21:52.4478923+00:00", "fileLastModified": "2025-07-14T09:21:52.4478924+00:00", @@ -26249,11 +26249,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32034, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 795 }" }, "fileCreated": "2025-06-21T09:21:52.4478927+00:00", "fileLastModified": "2025-07-14T09:21:52.4478927+00:00", @@ -26282,11 +26282,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40139, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 796 }" }, "fileCreated": "2025-06-21T09:21:52.447893+00:00", "fileLastModified": "2025-07-14T09:21:52.4478931+00:00", @@ -26315,11 +26315,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77873, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 797 }" }, "fileCreated": "2025-06-21T09:21:52.4478934+00:00", "fileLastModified": "2025-07-14T09:21:52.4478935+00:00", @@ -26348,11 +26348,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 81837, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 798 }" }, "fileCreated": "2025-06-21T09:21:52.4478938+00:00", "fileLastModified": "2025-07-14T09:21:52.4478939+00:00", @@ -26381,11 +26381,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 38173, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 799 }" }, "fileCreated": "2025-06-21T09:21:52.4478941+00:00", "fileLastModified": "2025-07-14T09:21:52.4478942+00:00", @@ -26414,11 +26414,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 71716, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 800 }" }, "fileCreated": "2025-06-21T09:21:52.4478945+00:00", "fileLastModified": "2025-07-14T09:21:52.4478946+00:00", @@ -26447,11 +26447,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 88198, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 801 }" }, "fileCreated": "2025-06-21T09:21:52.4478949+00:00", "fileLastModified": "2025-07-14T09:21:52.4478949+00:00", @@ -26480,11 +26480,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82665, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 802 }" }, "fileCreated": "2025-06-21T09:21:52.4478952+00:00", "fileLastModified": "2025-07-14T09:21:52.4478953+00:00", @@ -26513,11 +26513,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 91389, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 803 }" }, "fileCreated": "2025-06-21T09:21:52.4478956+00:00", "fileLastModified": "2025-07-14T09:21:52.4478957+00:00", @@ -26546,11 +26546,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 83653, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 804 }" }, "fileCreated": "2025-06-21T09:21:52.4478989+00:00", "fileLastModified": "2025-07-14T09:21:52.447899+00:00", @@ -26579,11 +26579,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46151, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 805 }" }, "fileCreated": "2025-06-21T09:21:52.4478994+00:00", "fileLastModified": "2025-07-14T09:21:52.4478994+00:00", @@ -26612,11 +26612,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 54150, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 806 }" }, "fileCreated": "2025-06-21T09:21:52.4478998+00:00", "fileLastModified": "2025-07-14T09:21:52.4478998+00:00", @@ -26645,11 +26645,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 96829, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 807 }" }, "fileCreated": "2025-06-21T09:21:52.4479001+00:00", "fileLastModified": "2025-07-14T09:21:52.4479002+00:00", @@ -26678,11 +26678,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 86291, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 808 }" }, "fileCreated": "2025-06-21T09:21:52.4479005+00:00", "fileLastModified": "2025-07-14T09:21:52.4479006+00:00", @@ -26711,11 +26711,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83232, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 809 }" }, "fileCreated": "2025-06-21T09:21:52.4479009+00:00", "fileLastModified": "2025-07-14T09:21:52.4479009+00:00", @@ -26744,11 +26744,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 95158, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 810 }" }, "fileCreated": "2025-06-21T09:21:52.4479012+00:00", "fileLastModified": "2025-07-14T09:21:52.4479013+00:00", @@ -26777,11 +26777,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59212, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 811 }" }, "fileCreated": "2025-06-21T09:21:52.4479016+00:00", "fileLastModified": "2025-07-14T09:21:52.4479016+00:00", @@ -26810,11 +26810,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 90495, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 812 }" }, "fileCreated": "2025-06-21T09:21:52.4479019+00:00", "fileLastModified": "2025-07-14T09:21:52.447902+00:00", @@ -26843,11 +26843,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 61252, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 813 }" }, "fileCreated": "2025-06-21T09:21:52.4479023+00:00", "fileLastModified": "2025-07-14T09:21:52.4479023+00:00", @@ -26876,11 +26876,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80006, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 814 }" }, "fileCreated": "2025-06-21T09:21:52.4479026+00:00", "fileLastModified": "2025-07-14T09:21:52.4479027+00:00", @@ -26909,11 +26909,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 38627, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 815 }" }, "fileCreated": "2025-06-21T09:21:52.447903+00:00", "fileLastModified": "2025-07-14T09:21:52.447903+00:00", @@ -26942,11 +26942,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 89401, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 816 }" }, "fileCreated": "2025-06-21T09:21:52.4479034+00:00", "fileLastModified": "2025-07-14T09:21:52.4479034+00:00", @@ -26975,11 +26975,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 74992, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 817 }" }, "fileCreated": "2025-06-21T09:21:52.4479038+00:00", "fileLastModified": "2025-07-14T09:21:52.4479038+00:00", @@ -27008,11 +27008,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 98077, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 818 }" }, "fileCreated": "2025-06-21T09:21:52.4479142+00:00", "fileLastModified": "2025-07-14T09:21:52.4479143+00:00", @@ -27041,11 +27041,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 92388, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 819 }" }, "fileCreated": "2025-06-21T09:21:52.4479146+00:00", "fileLastModified": "2025-07-14T09:21:52.4479147+00:00", @@ -27074,11 +27074,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 35271, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 820 }" }, "fileCreated": "2025-06-21T09:21:52.447915+00:00", "fileLastModified": "2025-07-14T09:21:52.4479151+00:00", @@ -27107,11 +27107,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89469, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 821 }" }, "fileCreated": "2025-06-21T09:21:52.4479153+00:00", "fileLastModified": "2025-07-14T09:21:52.4479154+00:00", @@ -27140,11 +27140,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50233, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 822 }" }, "fileCreated": "2025-06-21T09:21:52.4479158+00:00", "fileLastModified": "2025-07-14T09:21:52.4479158+00:00", @@ -27173,11 +27173,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 78341, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 823 }" }, "fileCreated": "2025-06-21T09:21:52.4479162+00:00", "fileLastModified": "2025-07-14T09:21:52.4479162+00:00", @@ -27206,11 +27206,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97072, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 824 }" }, "fileCreated": "2025-06-21T09:21:52.4479166+00:00", "fileLastModified": "2025-07-14T09:21:52.4479166+00:00", @@ -27239,11 +27239,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 48198, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 825 }" }, "fileCreated": "2025-06-21T09:21:52.4479169+00:00", "fileLastModified": "2025-07-14T09:21:52.447917+00:00", @@ -27272,11 +27272,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 49652, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 826 }" }, "fileCreated": "2025-06-21T09:21:52.4479173+00:00", "fileLastModified": "2025-07-14T09:21:52.4479174+00:00", @@ -27305,11 +27305,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59703, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 827 }" }, "fileCreated": "2025-06-21T09:21:52.4479177+00:00", "fileLastModified": "2025-07-14T09:21:52.4479177+00:00", @@ -27338,11 +27338,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34007, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 828 }" }, "fileCreated": "2025-06-21T09:21:52.447918+00:00", "fileLastModified": "2025-07-14T09:21:52.4479181+00:00", @@ -27371,11 +27371,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82160, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 829 }" }, "fileCreated": "2025-06-21T09:21:52.4479184+00:00", "fileLastModified": "2025-07-14T09:21:52.4479184+00:00", @@ -27404,11 +27404,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 90181, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 830 }" }, "fileCreated": "2025-06-21T09:21:52.4479188+00:00", "fileLastModified": "2025-07-14T09:21:52.4479188+00:00", @@ -27437,11 +27437,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 96847, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 831 }" }, "fileCreated": "2025-06-21T09:21:52.4479192+00:00", "fileLastModified": "2025-07-14T09:21:52.4479192+00:00", @@ -27470,11 +27470,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 55755, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 832 }" }, "fileCreated": "2025-06-21T09:21:52.4479223+00:00", "fileLastModified": "2025-07-14T09:21:52.4479224+00:00", @@ -27503,11 +27503,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 27044, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 833 }" }, "fileCreated": "2025-06-21T09:21:52.4479227+00:00", "fileLastModified": "2025-07-14T09:21:52.4479227+00:00", @@ -27536,11 +27536,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 57208, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 834 }" }, "fileCreated": "2025-06-21T09:21:52.447923+00:00", "fileLastModified": "2025-07-14T09:21:52.4479231+00:00", @@ -27569,11 +27569,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 31206, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 835 }" }, "fileCreated": "2025-06-21T09:21:52.4479234+00:00", "fileLastModified": "2025-07-14T09:21:52.4479235+00:00", @@ -27602,11 +27602,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87048, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 836 }" }, "fileCreated": "2025-06-21T09:21:52.4479238+00:00", "fileLastModified": "2025-07-14T09:21:52.4479239+00:00", @@ -27635,11 +27635,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80955, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 837 }" }, "fileCreated": "2025-06-21T09:21:52.4479242+00:00", "fileLastModified": "2025-07-14T09:21:52.4479242+00:00", @@ -27668,11 +27668,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35613, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 838 }" }, "fileCreated": "2025-06-21T09:21:52.4479246+00:00", "fileLastModified": "2025-07-14T09:21:52.4479246+00:00", @@ -27701,11 +27701,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73427, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 839 }" }, "fileCreated": "2025-06-21T09:21:52.447925+00:00", "fileLastModified": "2025-07-14T09:21:52.4479251+00:00", @@ -27734,11 +27734,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 41909, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 840 }" }, "fileCreated": "2025-06-21T09:21:52.4479254+00:00", "fileLastModified": "2025-07-14T09:21:52.4479254+00:00", @@ -27767,11 +27767,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 81103, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 841 }" }, "fileCreated": "2025-06-21T09:21:52.4479257+00:00", "fileLastModified": "2025-07-14T09:21:52.4479258+00:00", @@ -27800,11 +27800,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 52558, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 842 }" }, "fileCreated": "2025-06-21T09:21:52.4479261+00:00", "fileLastModified": "2025-07-14T09:21:52.4479262+00:00", @@ -27833,11 +27833,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94909, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 843 }" }, "fileCreated": "2025-06-21T09:21:52.4479265+00:00", "fileLastModified": "2025-07-14T09:21:52.4479265+00:00", @@ -27866,11 +27866,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 88480, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 844 }" }, "fileCreated": "2025-06-21T09:21:52.4479269+00:00", "fileLastModified": "2025-07-14T09:21:52.4479269+00:00", @@ -27899,11 +27899,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 83978, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 845 }" }, "fileCreated": "2025-06-21T09:21:52.4479303+00:00", "fileLastModified": "2025-07-14T09:21:52.4479304+00:00", @@ -27932,11 +27932,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38827, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 846 }" }, "fileCreated": "2025-06-21T09:21:52.4479308+00:00", "fileLastModified": "2025-07-14T09:21:52.4479308+00:00", @@ -27965,11 +27965,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 67837, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 847 }" }, "fileCreated": "2025-06-21T09:21:52.4479312+00:00", "fileLastModified": "2025-07-14T09:21:52.4479312+00:00", @@ -27998,11 +27998,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 62983, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 848 }" }, "fileCreated": "2025-06-21T09:21:52.4479315+00:00", "fileLastModified": "2025-07-14T09:21:52.4479316+00:00", @@ -28031,11 +28031,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82205, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 849 }" }, "fileCreated": "2025-06-21T09:21:52.4479319+00:00", "fileLastModified": "2025-07-14T09:21:52.4479319+00:00", @@ -28064,11 +28064,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 21549, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 850 }" }, "fileCreated": "2025-06-21T09:21:52.4479323+00:00", "fileLastModified": "2025-07-14T09:21:52.4479323+00:00", @@ -28097,11 +28097,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 43799, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 851 }" }, "fileCreated": "2025-06-21T09:21:52.4479327+00:00", "fileLastModified": "2025-07-14T09:21:52.4479327+00:00", @@ -28130,11 +28130,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47914, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 852 }" }, "fileCreated": "2025-06-21T09:21:52.447933+00:00", "fileLastModified": "2025-07-14T09:21:52.4479331+00:00", @@ -28163,11 +28163,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 71083, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 853 }" }, "fileCreated": "2025-06-21T09:21:52.4479334+00:00", "fileLastModified": "2025-07-14T09:21:52.4479335+00:00", @@ -28196,11 +28196,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 88455, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 854 }" }, "fileCreated": "2025-06-21T09:21:52.4479338+00:00", "fileLastModified": "2025-07-14T09:21:52.4479339+00:00", @@ -28229,11 +28229,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 84601, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 855 }" }, "fileCreated": "2025-06-21T09:21:52.4479342+00:00", "fileLastModified": "2025-07-14T09:21:52.4479343+00:00", @@ -28262,11 +28262,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91034, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 856 }" }, "fileCreated": "2025-06-21T09:21:52.4479346+00:00", "fileLastModified": "2025-07-14T09:21:52.4479346+00:00", @@ -28295,11 +28295,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 28412, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 857 }" }, "fileCreated": "2025-06-21T09:21:52.4479349+00:00", "fileLastModified": "2025-07-14T09:21:52.447935+00:00", @@ -28328,11 +28328,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37505, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 858 }" }, "fileCreated": "2025-06-21T09:21:52.4479353+00:00", "fileLastModified": "2025-07-14T09:21:52.4479353+00:00", @@ -28361,11 +28361,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 87145, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 859 }" }, "fileCreated": "2025-06-21T09:21:52.4479385+00:00", "fileLastModified": "2025-07-14T09:21:52.4479385+00:00", @@ -28394,11 +28394,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 26468, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 860 }" }, "fileCreated": "2025-06-21T09:21:52.4479388+00:00", "fileLastModified": "2025-07-14T09:21:52.4479389+00:00", @@ -28427,11 +28427,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 22425, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 861 }" }, "fileCreated": "2025-06-21T09:21:52.4479392+00:00", "fileLastModified": "2025-07-14T09:21:52.4479392+00:00", @@ -28460,11 +28460,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61465, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 862 }" }, "fileCreated": "2025-06-21T09:21:52.4479396+00:00", "fileLastModified": "2025-07-14T09:21:52.4479396+00:00", @@ -28493,11 +28493,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 57405, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 863 }" }, "fileCreated": "2025-06-21T09:21:52.44794+00:00", "fileLastModified": "2025-07-14T09:21:52.44794+00:00", @@ -28526,11 +28526,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86717, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 864 }" }, "fileCreated": "2025-06-21T09:21:52.4479403+00:00", "fileLastModified": "2025-07-14T09:21:52.4479404+00:00", @@ -28559,11 +28559,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 59098, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 865 }" }, "fileCreated": "2025-06-21T09:21:52.4479407+00:00", "fileLastModified": "2025-07-14T09:21:52.4479408+00:00", @@ -28592,11 +28592,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70224, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 866 }" }, "fileCreated": "2025-06-21T09:21:52.4479411+00:00", "fileLastModified": "2025-07-14T09:21:52.4479411+00:00", @@ -28625,11 +28625,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 91087, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 867 }" }, "fileCreated": "2025-06-21T09:21:52.4479415+00:00", "fileLastModified": "2025-07-14T09:21:52.4479415+00:00", @@ -28658,11 +28658,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 30526, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 868 }" }, "fileCreated": "2025-06-21T09:21:52.4479418+00:00", "fileLastModified": "2025-07-14T09:21:52.4479419+00:00", @@ -28691,11 +28691,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73114, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 869 }" }, "fileCreated": "2025-06-21T09:21:52.4479422+00:00", "fileLastModified": "2025-07-14T09:21:52.4479422+00:00", @@ -28724,11 +28724,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 39897, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 870 }" }, "fileCreated": "2025-06-21T09:21:52.4479425+00:00", "fileLastModified": "2025-07-14T09:21:52.4479426+00:00", @@ -28757,11 +28757,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 69647, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 871 }" }, "fileCreated": "2025-06-21T09:21:52.4479429+00:00", "fileLastModified": "2025-07-14T09:21:52.447943+00:00", @@ -28790,11 +28790,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 88249, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 872 }" }, "fileCreated": "2025-06-21T09:21:52.4479432+00:00", "fileLastModified": "2025-07-14T09:21:52.4479433+00:00", @@ -28823,11 +28823,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34215, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 873 }" }, "fileCreated": "2025-06-21T09:21:52.4479455+00:00", "fileLastModified": "2025-07-14T09:21:52.4479455+00:00", @@ -28856,11 +28856,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24738, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 874 }" }, "fileCreated": "2025-06-21T09:21:52.4479458+00:00", "fileLastModified": "2025-07-14T09:21:52.4479459+00:00", @@ -28889,11 +28889,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 99029, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 875 }" }, "fileCreated": "2025-06-21T09:21:52.4479462+00:00", "fileLastModified": "2025-07-14T09:21:52.4479463+00:00", @@ -28922,11 +28922,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 78776, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 876 }" }, "fileCreated": "2025-06-21T09:21:52.4479466+00:00", "fileLastModified": "2025-07-14T09:21:52.4479467+00:00", @@ -28955,11 +28955,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 38876, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 877 }" }, "fileCreated": "2025-06-21T09:21:52.447947+00:00", "fileLastModified": "2025-07-14T09:21:52.447947+00:00", @@ -28988,11 +28988,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24069, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 878 }" }, "fileCreated": "2025-06-21T09:21:52.4479473+00:00", "fileLastModified": "2025-07-14T09:21:52.4479474+00:00", @@ -29021,11 +29021,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 42529, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 879 }" }, "fileCreated": "2025-06-21T09:21:52.4479477+00:00", "fileLastModified": "2025-07-14T09:21:52.4479477+00:00", @@ -29054,11 +29054,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 83980, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 880 }" }, "fileCreated": "2025-06-21T09:21:52.4479481+00:00", "fileLastModified": "2025-07-14T09:21:52.4479481+00:00", @@ -29087,11 +29087,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 64104, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 881 }" }, "fileCreated": "2025-06-21T09:21:52.4479485+00:00", "fileLastModified": "2025-07-14T09:21:52.4479485+00:00", @@ -29120,11 +29120,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46047, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 882 }" }, "fileCreated": "2025-06-21T09:21:52.4479489+00:00", "fileLastModified": "2025-07-14T09:21:52.4479489+00:00", @@ -29153,11 +29153,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76561, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 883 }" }, "fileCreated": "2025-06-21T09:21:52.4479492+00:00", "fileLastModified": "2025-07-14T09:21:52.4479493+00:00", @@ -29186,11 +29186,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 88136, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 884 }" }, "fileCreated": "2025-06-21T09:21:52.4479496+00:00", "fileLastModified": "2025-07-14T09:21:52.4479497+00:00", @@ -29219,11 +29219,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 31909, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 885 }" }, "fileCreated": "2025-06-21T09:21:52.44795+00:00", "fileLastModified": "2025-07-14T09:21:52.44795+00:00", @@ -29252,11 +29252,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60500, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 886 }" }, "fileCreated": "2025-06-21T09:21:52.4479547+00:00", "fileLastModified": "2025-07-14T09:21:52.4479547+00:00", @@ -29285,11 +29285,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 53366, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 887 }" }, "fileCreated": "2025-06-21T09:21:52.4479551+00:00", "fileLastModified": "2025-07-14T09:21:52.4479551+00:00", @@ -29318,11 +29318,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 49525, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 888 }" }, "fileCreated": "2025-06-21T09:21:52.4479555+00:00", "fileLastModified": "2025-07-14T09:21:52.4479555+00:00", @@ -29351,11 +29351,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 30676, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 889 }" }, "fileCreated": "2025-06-21T09:21:52.4479558+00:00", "fileLastModified": "2025-07-14T09:21:52.4479559+00:00", @@ -29384,11 +29384,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 49527, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 890 }" }, "fileCreated": "2025-06-21T09:21:52.4479562+00:00", "fileLastModified": "2025-07-14T09:21:52.4479563+00:00", @@ -29417,11 +29417,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 87593, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 891 }" }, "fileCreated": "2025-06-21T09:21:52.4479566+00:00", "fileLastModified": "2025-07-14T09:21:52.4479566+00:00", @@ -29450,11 +29450,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40329, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 892 }" }, "fileCreated": "2025-06-21T09:21:52.4479569+00:00", "fileLastModified": "2025-07-14T09:21:52.447957+00:00", @@ -29483,11 +29483,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63495, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 893 }" }, "fileCreated": "2025-06-21T09:21:52.4479573+00:00", "fileLastModified": "2025-07-14T09:21:52.4479574+00:00", @@ -29516,11 +29516,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75043, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 894 }" }, "fileCreated": "2025-06-21T09:21:52.4479577+00:00", "fileLastModified": "2025-07-14T09:21:52.4479578+00:00", @@ -29549,11 +29549,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88468, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 895 }" }, "fileCreated": "2025-06-21T09:21:52.4479581+00:00", "fileLastModified": "2025-07-14T09:21:52.4479581+00:00", @@ -29582,11 +29582,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 79737, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 896 }" }, "fileCreated": "2025-06-21T09:21:52.4479584+00:00", "fileLastModified": "2025-07-14T09:21:52.4479585+00:00", @@ -29615,11 +29615,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23572, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 897 }" }, "fileCreated": "2025-06-21T09:21:52.4479588+00:00", "fileLastModified": "2025-07-14T09:21:52.4479588+00:00", @@ -29648,11 +29648,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67602, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 898 }" }, "fileCreated": "2025-06-21T09:21:52.4479592+00:00", "fileLastModified": "2025-07-14T09:21:52.4479592+00:00", @@ -29681,11 +29681,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 58483, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 899 }" }, "fileCreated": "2025-06-21T09:21:52.4479596+00:00", "fileLastModified": "2025-07-14T09:21:52.4479596+00:00", @@ -29714,11 +29714,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 96903, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 900 }" }, "fileCreated": "2025-06-21T09:21:52.4479644+00:00", "fileLastModified": "2025-07-14T09:21:52.4479645+00:00", @@ -29747,11 +29747,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 99889, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 901 }" }, "fileCreated": "2025-06-21T09:21:52.4479648+00:00", "fileLastModified": "2025-07-14T09:21:52.4479649+00:00", @@ -29780,11 +29780,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 34076, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 902 }" }, "fileCreated": "2025-06-21T09:21:52.4479652+00:00", "fileLastModified": "2025-07-14T09:21:52.4479653+00:00", @@ -29813,11 +29813,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77637, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 903 }" }, "fileCreated": "2025-06-21T09:21:52.4479656+00:00", "fileLastModified": "2025-07-14T09:21:52.4479657+00:00", @@ -29846,11 +29846,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 76526, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 904 }" }, "fileCreated": "2025-06-21T09:21:52.447966+00:00", "fileLastModified": "2025-07-14T09:21:52.447966+00:00", @@ -29879,11 +29879,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 91603, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 905 }" }, "fileCreated": "2025-06-21T09:21:52.4479663+00:00", "fileLastModified": "2025-07-14T09:21:52.4479664+00:00", @@ -29912,11 +29912,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23773, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 906 }" }, "fileCreated": "2025-06-21T09:21:52.4479667+00:00", "fileLastModified": "2025-07-14T09:21:52.4479667+00:00", @@ -29945,11 +29945,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45122, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 907 }" }, "fileCreated": "2025-06-21T09:21:52.4479671+00:00", "fileLastModified": "2025-07-14T09:21:52.4479671+00:00", @@ -29978,11 +29978,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 68636, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 908 }" }, "fileCreated": "2025-06-21T09:21:52.4479674+00:00", "fileLastModified": "2025-07-14T09:21:52.4479675+00:00", @@ -30011,11 +30011,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33962, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 909 }" }, "fileCreated": "2025-06-21T09:21:52.4479678+00:00", "fileLastModified": "2025-07-14T09:21:52.4479679+00:00", @@ -30044,11 +30044,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 57242, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 910 }" }, "fileCreated": "2025-06-21T09:21:52.4479682+00:00", "fileLastModified": "2025-07-14T09:21:52.4479683+00:00", @@ -30077,11 +30077,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 42482, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 911 }" }, "fileCreated": "2025-06-21T09:21:52.4479686+00:00", "fileLastModified": "2025-07-14T09:21:52.4479686+00:00", @@ -30110,11 +30110,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 88194, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 912 }" }, "fileCreated": "2025-06-21T09:21:52.4479704+00:00", "fileLastModified": "2025-07-14T09:21:52.4479705+00:00", @@ -30143,11 +30143,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 50243, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 913 }" }, "fileCreated": "2025-06-21T09:21:52.4479735+00:00", "fileLastModified": "2025-07-14T09:21:52.4479736+00:00", @@ -30176,11 +30176,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58663, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 914 }" }, "fileCreated": "2025-06-21T09:21:52.4479739+00:00", "fileLastModified": "2025-07-14T09:21:52.447974+00:00", @@ -30209,11 +30209,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 56304, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 915 }" }, "fileCreated": "2025-06-21T09:21:52.4479743+00:00", "fileLastModified": "2025-07-14T09:21:52.4479744+00:00", @@ -30242,11 +30242,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37236, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 916 }" }, "fileCreated": "2025-06-21T09:21:52.4479747+00:00", "fileLastModified": "2025-07-14T09:21:52.4479747+00:00", @@ -30275,11 +30275,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 49848, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 917 }" }, "fileCreated": "2025-06-21T09:21:52.447975+00:00", "fileLastModified": "2025-07-14T09:21:52.4479751+00:00", @@ -30308,11 +30308,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75222, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 918 }" }, "fileCreated": "2025-06-21T09:21:52.4479754+00:00", "fileLastModified": "2025-07-14T09:21:52.4479755+00:00", @@ -30341,11 +30341,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 81018, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 919 }" }, "fileCreated": "2025-06-21T09:21:52.4479758+00:00", "fileLastModified": "2025-07-14T09:21:52.4479759+00:00", @@ -30374,11 +30374,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 65117, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 920 }" }, "fileCreated": "2025-06-21T09:21:52.4479762+00:00", "fileLastModified": "2025-07-14T09:21:52.4479763+00:00", @@ -30407,11 +30407,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23237, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 921 }" }, "fileCreated": "2025-06-21T09:21:52.4479766+00:00", "fileLastModified": "2025-07-14T09:21:52.4479767+00:00", @@ -30440,11 +30440,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95117, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 922 }" }, "fileCreated": "2025-06-21T09:21:52.447977+00:00", "fileLastModified": "2025-07-14T09:21:52.4479771+00:00", @@ -30473,11 +30473,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37228, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 923 }" }, "fileCreated": "2025-06-21T09:21:52.4479774+00:00", "fileLastModified": "2025-07-14T09:21:52.4479775+00:00", @@ -30506,11 +30506,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 44834, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 924 }" }, "fileCreated": "2025-06-21T09:21:52.4479778+00:00", "fileLastModified": "2025-07-14T09:21:52.4479778+00:00", @@ -30539,11 +30539,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 63486, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 925 }" }, "fileCreated": "2025-06-21T09:21:52.4479782+00:00", "fileLastModified": "2025-07-14T09:21:52.4479782+00:00", @@ -30572,11 +30572,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44826, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 926 }" }, "fileCreated": "2025-06-21T09:21:52.4479785+00:00", "fileLastModified": "2025-07-14T09:21:52.4479785+00:00", @@ -30605,11 +30605,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 51601, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 927 }" }, "fileCreated": "2025-06-21T09:21:52.4479818+00:00", "fileLastModified": "2025-07-14T09:21:52.4479819+00:00", @@ -30638,11 +30638,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 86569, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 928 }" }, "fileCreated": "2025-06-21T09:21:52.4479822+00:00", "fileLastModified": "2025-07-14T09:21:52.4479822+00:00", @@ -30671,11 +30671,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 27141, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 929 }" }, "fileCreated": "2025-06-21T09:21:52.4479826+00:00", "fileLastModified": "2025-07-14T09:21:52.4479826+00:00", @@ -30704,11 +30704,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 73422, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 930 }" }, "fileCreated": "2025-06-21T09:21:52.447983+00:00", "fileLastModified": "2025-07-14T09:21:52.447983+00:00", @@ -30737,11 +30737,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 51826, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 931 }" }, "fileCreated": "2025-06-21T09:21:52.4479833+00:00", "fileLastModified": "2025-07-14T09:21:52.4479834+00:00", @@ -30770,11 +30770,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92809, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 932 }" }, "fileCreated": "2025-06-21T09:21:52.4479837+00:00", "fileLastModified": "2025-07-14T09:21:52.4479838+00:00", @@ -30803,11 +30803,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75233, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 933 }" }, "fileCreated": "2025-06-21T09:21:52.4479841+00:00", "fileLastModified": "2025-07-14T09:21:52.4479842+00:00", @@ -30836,11 +30836,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24519, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 934 }" }, "fileCreated": "2025-06-21T09:21:52.4479845+00:00", "fileLastModified": "2025-07-14T09:21:52.4479845+00:00", @@ -30869,11 +30869,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 98079, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 935 }" }, "fileCreated": "2025-06-21T09:21:52.4479848+00:00", "fileLastModified": "2025-07-14T09:21:52.4479849+00:00", @@ -30902,11 +30902,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43083, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 936 }" }, "fileCreated": "2025-06-21T09:21:52.4479852+00:00", "fileLastModified": "2025-07-14T09:21:52.4479853+00:00", @@ -30935,11 +30935,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61563, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 937 }" }, "fileCreated": "2025-06-21T09:21:52.4479856+00:00", "fileLastModified": "2025-07-14T09:21:52.4479856+00:00", @@ -30968,11 +30968,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 54292, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 938 }" }, "fileCreated": "2025-06-21T09:21:52.447986+00:00", "fileLastModified": "2025-07-14T09:21:52.447986+00:00", @@ -31001,11 +31001,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33300, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 939 }" }, "fileCreated": "2025-06-21T09:21:52.4479864+00:00", "fileLastModified": "2025-07-14T09:21:52.4479864+00:00", @@ -31034,11 +31034,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 90482, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 940 }" }, "fileCreated": "2025-06-21T09:21:52.4479868+00:00", "fileLastModified": "2025-07-14T09:21:52.4479868+00:00", @@ -31067,11 +31067,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 64514, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 941 }" }, "fileCreated": "2025-06-21T09:21:52.4479901+00:00", "fileLastModified": "2025-07-14T09:21:52.4479901+00:00", @@ -31100,11 +31100,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 63092, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 942 }" }, "fileCreated": "2025-06-21T09:21:52.4479905+00:00", "fileLastModified": "2025-07-14T09:21:52.4479905+00:00", @@ -31133,11 +31133,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 42957, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 943 }" }, "fileCreated": "2025-06-21T09:21:52.4479908+00:00", "fileLastModified": "2025-07-14T09:21:52.4479909+00:00", @@ -31166,11 +31166,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 48250, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 944 }" }, "fileCreated": "2025-06-21T09:21:52.4479912+00:00", "fileLastModified": "2025-07-14T09:21:52.4479912+00:00", @@ -31199,11 +31199,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77085, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 945 }" }, "fileCreated": "2025-06-21T09:21:52.4479915+00:00", "fileLastModified": "2025-07-14T09:21:52.4479916+00:00", @@ -31232,11 +31232,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37862, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 946 }" }, "fileCreated": "2025-06-21T09:21:52.4479919+00:00", "fileLastModified": "2025-07-14T09:21:52.447992+00:00", @@ -31265,11 +31265,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89531, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 947 }" }, "fileCreated": "2025-06-21T09:21:52.4479923+00:00", "fileLastModified": "2025-07-14T09:21:52.4479924+00:00", @@ -31298,11 +31298,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43611, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 948 }" }, "fileCreated": "2025-06-21T09:21:52.4479927+00:00", "fileLastModified": "2025-07-14T09:21:52.4479928+00:00", @@ -31331,11 +31331,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77659, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 949 }" }, "fileCreated": "2025-06-21T09:21:52.4479931+00:00", "fileLastModified": "2025-07-14T09:21:52.4479931+00:00", @@ -31364,11 +31364,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 33498, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 950 }" }, "fileCreated": "2025-06-21T09:21:52.4479934+00:00", "fileLastModified": "2025-07-14T09:21:52.4479935+00:00", @@ -31397,11 +31397,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70650, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 951 }" }, "fileCreated": "2025-06-21T09:21:52.4479938+00:00", "fileLastModified": "2025-07-14T09:21:52.4479938+00:00", @@ -31430,11 +31430,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 35220, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 952 }" }, "fileCreated": "2025-06-21T09:21:52.4479942+00:00", "fileLastModified": "2025-07-14T09:21:52.4479942+00:00", @@ -31463,11 +31463,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 66300, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 953 }" }, "fileCreated": "2025-06-21T09:21:52.4479945+00:00", "fileLastModified": "2025-07-14T09:21:52.4479946+00:00", @@ -31496,11 +31496,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80342, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 954 }" }, "fileCreated": "2025-06-21T09:21:52.4479978+00:00", "fileLastModified": "2025-07-14T09:21:52.4479978+00:00", @@ -31529,11 +31529,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 33696, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 955 }" }, "fileCreated": "2025-06-21T09:21:52.4479982+00:00", "fileLastModified": "2025-07-14T09:21:52.4479983+00:00", @@ -31562,11 +31562,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92450, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 956 }" }, "fileCreated": "2025-06-21T09:21:52.4479986+00:00", "fileLastModified": "2025-07-14T09:21:52.4479986+00:00", @@ -31595,11 +31595,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 24110, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 957 }" }, "fileCreated": "2025-06-21T09:21:52.4479989+00:00", "fileLastModified": "2025-07-14T09:21:52.447999+00:00", @@ -31628,11 +31628,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85217, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 958 }" }, "fileCreated": "2025-06-21T09:21:52.4479993+00:00", "fileLastModified": "2025-07-14T09:21:52.4479994+00:00", @@ -31661,11 +31661,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70625, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 959 }" }, "fileCreated": "2025-06-21T09:21:52.4479997+00:00", "fileLastModified": "2025-07-14T09:21:52.4479997+00:00", @@ -31694,11 +31694,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 42038, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 960 }" }, "fileCreated": "2025-06-21T09:21:52.448+00:00", "fileLastModified": "2025-07-14T09:21:52.4480001+00:00", @@ -31727,11 +31727,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 98089, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 961 }" }, "fileCreated": "2025-06-21T09:21:52.4480004+00:00", "fileLastModified": "2025-07-14T09:21:52.4480005+00:00", @@ -31760,11 +31760,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53902, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 962 }" }, "fileCreated": "2025-06-21T09:21:52.4480008+00:00", "fileLastModified": "2025-07-14T09:21:52.4480009+00:00", @@ -31793,11 +31793,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 20234, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 963 }" }, "fileCreated": "2025-06-21T09:21:52.4480012+00:00", "fileLastModified": "2025-07-14T09:21:52.4480012+00:00", @@ -31826,11 +31826,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 94317, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 964 }" }, "fileCreated": "2025-06-21T09:21:52.4480016+00:00", "fileLastModified": "2025-07-14T09:21:52.4480016+00:00", @@ -31859,11 +31859,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 25650, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 965 }" }, "fileCreated": "2025-06-21T09:21:52.4480019+00:00", "fileLastModified": "2025-07-14T09:21:52.4480019+00:00", @@ -31892,11 +31892,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 26586, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 966 }" }, "fileCreated": "2025-06-21T09:21:52.4480022+00:00", "fileLastModified": "2025-07-14T09:21:52.4480023+00:00", @@ -31925,11 +31925,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22655, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 967 }" }, "fileCreated": "2025-06-21T09:21:52.4480027+00:00", "fileLastModified": "2025-07-14T09:21:52.4480027+00:00", @@ -31958,11 +31958,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 62355, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 968 }" }, "fileCreated": "2025-06-21T09:21:52.4480056+00:00", "fileLastModified": "2025-07-14T09:21:52.4480057+00:00", @@ -31991,11 +31991,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 51291, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 969 }" }, "fileCreated": "2025-06-21T09:21:52.448006+00:00", "fileLastModified": "2025-07-14T09:21:52.4480061+00:00", @@ -32024,11 +32024,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 22218, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 970 }" }, "fileCreated": "2025-06-21T09:21:52.4480064+00:00", "fileLastModified": "2025-07-14T09:21:52.4480065+00:00", @@ -32057,11 +32057,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 60085, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 971 }" }, "fileCreated": "2025-06-21T09:21:52.4480068+00:00", "fileLastModified": "2025-07-14T09:21:52.4480068+00:00", @@ -32090,11 +32090,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 97642, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 972 }" }, "fileCreated": "2025-06-21T09:21:52.4480072+00:00", "fileLastModified": "2025-07-14T09:21:52.4480072+00:00", @@ -32123,11 +32123,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 24522, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 973 }" }, "fileCreated": "2025-06-21T09:21:52.4480075+00:00", "fileLastModified": "2025-07-14T09:21:52.4480076+00:00", @@ -32156,11 +32156,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 23905, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 974 }" }, "fileCreated": "2025-06-21T09:21:52.4480079+00:00", "fileLastModified": "2025-07-14T09:21:52.448008+00:00", @@ -32189,11 +32189,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 55342, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 975 }" }, "fileCreated": "2025-06-21T09:21:52.4480083+00:00", "fileLastModified": "2025-07-14T09:21:52.4480084+00:00", @@ -32222,11 +32222,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 68669, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 976 }" }, "fileCreated": "2025-06-21T09:21:52.4480087+00:00", "fileLastModified": "2025-07-14T09:21:52.4480087+00:00", @@ -32255,11 +32255,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 62192, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 977 }" }, "fileCreated": "2025-06-21T09:21:52.4480091+00:00", "fileLastModified": "2025-07-14T09:21:52.4480091+00:00", @@ -32288,11 +32288,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70960, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 978 }" }, "fileCreated": "2025-06-21T09:21:52.4480094+00:00", "fileLastModified": "2025-07-14T09:21:52.4480095+00:00", @@ -32321,11 +32321,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37929, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 979 }" }, "fileCreated": "2025-06-21T09:21:52.4480098+00:00", "fileLastModified": "2025-07-14T09:21:52.4480098+00:00", @@ -32354,11 +32354,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46873, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 980 }" }, "fileCreated": "2025-06-21T09:21:52.4480102+00:00", "fileLastModified": "2025-07-14T09:21:52.4480102+00:00", @@ -32387,11 +32387,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48977, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 981 }" }, "fileCreated": "2025-06-21T09:21:52.4480106+00:00", "fileLastModified": "2025-07-14T09:21:52.4480106+00:00", @@ -32420,11 +32420,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 89029, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 982 }" }, "fileCreated": "2025-06-21T09:21:52.4480126+00:00", "fileLastModified": "2025-07-14T09:21:52.4480126+00:00", @@ -32453,11 +32453,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76357, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 983 }" }, "fileCreated": "2025-06-21T09:21:52.448013+00:00", "fileLastModified": "2025-07-14T09:21:52.448013+00:00", @@ -32486,11 +32486,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 26136, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 984 }" }, "fileCreated": "2025-06-21T09:21:52.4480133+00:00", "fileLastModified": "2025-07-14T09:21:52.4480134+00:00", @@ -32519,11 +32519,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 77748, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 985 }" }, "fileCreated": "2025-06-21T09:21:52.4480137+00:00", "fileLastModified": "2025-07-14T09:21:52.4480137+00:00", @@ -32552,11 +32552,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83491, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 986 }" }, "fileCreated": "2025-06-21T09:21:52.448014+00:00", "fileLastModified": "2025-07-14T09:21:52.4480141+00:00", @@ -32585,11 +32585,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 52737, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 987 }" }, "fileCreated": "2025-06-21T09:21:52.4480144+00:00", "fileLastModified": "2025-07-14T09:21:52.4480145+00:00", @@ -32618,11 +32618,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27391, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 988 }" }, "fileCreated": "2025-06-21T09:21:52.4480148+00:00", "fileLastModified": "2025-07-14T09:21:52.4480148+00:00", @@ -32651,11 +32651,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 74014, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 989 }" }, "fileCreated": "2025-06-21T09:21:52.4480151+00:00", "fileLastModified": "2025-07-14T09:21:52.4480152+00:00", @@ -32684,11 +32684,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 89524, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 990 }" }, "fileCreated": "2025-06-21T09:21:52.4480155+00:00", "fileLastModified": "2025-07-14T09:21:52.4480156+00:00", @@ -32717,11 +32717,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 56257, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 991 }" }, "fileCreated": "2025-06-21T09:21:52.4480159+00:00", "fileLastModified": "2025-07-14T09:21:52.448016+00:00", @@ -32750,11 +32750,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 25245, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 992 }" }, "fileCreated": "2025-06-21T09:21:52.4480163+00:00", "fileLastModified": "2025-07-14T09:21:52.4480164+00:00", @@ -32783,11 +32783,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 89399, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 993 }" }, "fileCreated": "2025-06-21T09:21:52.4480167+00:00", "fileLastModified": "2025-07-14T09:21:52.4480168+00:00", @@ -32816,11 +32816,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 42340, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 994 }" }, "fileCreated": "2025-06-21T09:21:52.4480171+00:00", "fileLastModified": "2025-07-14T09:21:52.4480171+00:00", @@ -32849,11 +32849,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23564, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 995 }" }, "fileCreated": "2025-06-21T09:21:52.4480275+00:00", "fileLastModified": "2025-07-14T09:21:52.4480275+00:00", @@ -32882,11 +32882,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98293, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 996 }" }, "fileCreated": "2025-06-21T09:21:52.4480279+00:00", "fileLastModified": "2025-07-14T09:21:52.4480279+00:00", @@ -32915,11 +32915,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24960, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 997 }" }, "fileCreated": "2025-06-21T09:21:52.4480282+00:00", "fileLastModified": "2025-07-14T09:21:52.4480283+00:00", @@ -32948,11 +32948,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24595, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 998 }" }, "fileCreated": "2025-06-21T09:21:52.4480286+00:00", "fileLastModified": "2025-07-14T09:21:52.4480286+00:00", @@ -32981,11 +32981,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86511, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 999 }" }, "fileCreated": "2025-06-21T09:21:52.4480289+00:00", "fileLastModified": "2025-07-14T09:21:52.448029+00:00", @@ -33014,11 +33014,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34395, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1000 }" }, "fileCreated": "2025-06-21T09:21:52.4480293+00:00", "fileLastModified": "2025-07-14T09:21:52.4480294+00:00", @@ -33047,11 +33047,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70536, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1001 }" }, "fileCreated": "2025-06-21T09:30:58.5467016+00:00", "fileLastModified": "2025-07-14T09:30:58.5468244+00:00", @@ -33080,11 +33080,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92492, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1002 }" }, "fileCreated": "2025-06-21T09:30:59.9888929+00:00", "fileLastModified": "2025-07-14T09:30:59.9888935+00:00", @@ -33113,11 +33113,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 21377, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1003 }" }, "fileCreated": "2025-06-21T09:30:59.9939582+00:00", "fileLastModified": "2025-07-14T09:30:59.9939586+00:00", @@ -33146,11 +33146,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63796, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1004 }" }, "fileCreated": "2025-06-21T09:30:59.9958338+00:00", "fileLastModified": "2025-07-14T09:30:59.9958342+00:00", @@ -33179,11 +33179,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32415, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1005 }" }, "fileCreated": "2025-06-21T09:30:59.9973138+00:00", "fileLastModified": "2025-07-14T09:30:59.9973141+00:00", @@ -33212,11 +33212,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95562, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1006 }" }, "fileCreated": "2025-06-21T09:30:59.9980958+00:00", "fileLastModified": "2025-07-14T09:30:59.998096+00:00", @@ -33245,11 +33245,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94121, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1007 }" }, "fileCreated": "2025-06-21T09:30:59.9992021+00:00", "fileLastModified": "2025-07-14T09:30:59.9992026+00:00", @@ -33278,11 +33278,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 58711, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1008 }" }, "fileCreated": "2025-06-21T09:31:00.001137+00:00", "fileLastModified": "2025-07-14T09:31:00.0011374+00:00", @@ -33311,11 +33311,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 58551, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1009 }" }, "fileCreated": "2025-06-21T09:31:00.0022985+00:00", "fileLastModified": "2025-07-14T09:31:00.0022988+00:00", @@ -33344,11 +33344,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 95346, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1010 }" }, "fileCreated": "2025-06-21T09:31:00.0031049+00:00", "fileLastModified": "2025-07-14T09:31:00.0031052+00:00", @@ -33377,11 +33377,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47501, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1011 }" }, "fileCreated": "2025-06-21T09:31:00.0039203+00:00", "fileLastModified": "2025-07-14T09:31:00.0039205+00:00", @@ -33410,11 +33410,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 76696, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1012 }" }, "fileCreated": "2025-06-21T09:31:00.0049828+00:00", "fileLastModified": "2025-07-14T09:31:00.0049831+00:00", @@ -33443,11 +33443,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 67270, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1013 }" }, "fileCreated": "2025-06-21T09:31:00.0058364+00:00", "fileLastModified": "2025-07-14T09:31:00.0058367+00:00", @@ -33476,11 +33476,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80124, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1014 }" }, "fileCreated": "2025-06-21T09:31:00.0066703+00:00", "fileLastModified": "2025-07-14T09:31:00.0066706+00:00", @@ -33509,11 +33509,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 89714, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1015 }" }, "fileCreated": "2025-06-21T09:31:00.0075245+00:00", "fileLastModified": "2025-07-14T09:31:00.0075248+00:00", @@ -33542,11 +33542,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 59160, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1016 }" }, "fileCreated": "2025-06-21T09:31:00.0085472+00:00", "fileLastModified": "2025-07-14T09:31:00.0085474+00:00", @@ -33575,11 +33575,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 22392, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1017 }" }, "fileCreated": "2025-06-21T09:31:00.0094203+00:00", "fileLastModified": "2025-07-14T09:31:00.0094206+00:00", @@ -33608,11 +33608,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 20556, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1018 }" }, "fileCreated": "2025-06-21T09:31:00.0102942+00:00", "fileLastModified": "2025-07-14T09:31:00.0102945+00:00", @@ -33641,11 +33641,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 49238, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1019 }" }, "fileCreated": "2025-06-21T09:31:00.0111694+00:00", "fileLastModified": "2025-07-14T09:31:00.0111697+00:00", @@ -33674,11 +33674,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 46236, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1020 }" }, "fileCreated": "2025-06-21T09:31:00.0123239+00:00", "fileLastModified": "2025-07-14T09:31:00.0123242+00:00", @@ -33707,11 +33707,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72006, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1021 }" }, "fileCreated": "2025-06-21T09:31:00.0132146+00:00", "fileLastModified": "2025-07-14T09:31:00.0132149+00:00", @@ -33740,11 +33740,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 21291, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1022 }" }, "fileCreated": "2025-06-21T09:31:00.0141537+00:00", "fileLastModified": "2025-07-14T09:31:00.014154+00:00", @@ -33773,11 +33773,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68633, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1023 }" }, "fileCreated": "2025-06-21T09:31:00.0154821+00:00", "fileLastModified": "2025-07-14T09:31:00.0154828+00:00", @@ -33806,11 +33806,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70815, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1024 }" }, "fileCreated": "2025-06-21T09:31:00.0180405+00:00", "fileLastModified": "2025-07-14T09:31:00.0180413+00:00", @@ -33839,11 +33839,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 54323, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1025 }" }, "fileCreated": "2025-06-21T09:31:00.0198061+00:00", "fileLastModified": "2025-07-14T09:31:00.0198068+00:00", @@ -33872,11 +33872,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 22174, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1026 }" }, "fileCreated": "2025-06-21T09:31:00.0213932+00:00", "fileLastModified": "2025-07-14T09:31:00.0213938+00:00", @@ -33905,11 +33905,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 28526, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1027 }" }, "fileCreated": "2025-06-21T09:31:00.023592+00:00", "fileLastModified": "2025-07-14T09:31:00.0235925+00:00", @@ -33938,11 +33938,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24991, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1028 }" }, "fileCreated": "2025-06-21T09:31:00.0253962+00:00", "fileLastModified": "2025-07-14T09:31:00.0254108+00:00", @@ -33971,11 +33971,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 58163, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1029 }" }, "fileCreated": "2025-06-21T09:31:00.0272132+00:00", "fileLastModified": "2025-07-14T09:31:00.0272137+00:00", @@ -34004,11 +34004,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 72000, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1030 }" }, "fileCreated": "2025-06-21T09:31:00.0290013+00:00", "fileLastModified": "2025-07-14T09:31:00.0290018+00:00", @@ -34037,11 +34037,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44954, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1031 }" }, "fileCreated": "2025-06-21T09:31:00.0308119+00:00", "fileLastModified": "2025-07-14T09:31:00.0308125+00:00", @@ -34070,11 +34070,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 77496, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1032 }" }, "fileCreated": "2025-06-21T09:31:00.0325523+00:00", "fileLastModified": "2025-07-14T09:31:00.032553+00:00", @@ -34103,11 +34103,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 80475, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1033 }" }, "fileCreated": "2025-06-21T09:31:00.0339112+00:00", "fileLastModified": "2025-07-14T09:31:00.0339116+00:00", @@ -34136,11 +34136,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53661, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1034 }" }, "fileCreated": "2025-06-21T09:31:00.0353714+00:00", "fileLastModified": "2025-07-14T09:31:00.0353719+00:00", @@ -34169,11 +34169,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 22057, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1035 }" }, "fileCreated": "2025-06-21T09:31:00.0368129+00:00", "fileLastModified": "2025-07-14T09:31:00.0368134+00:00", @@ -34202,11 +34202,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 99661, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1036 }" }, "fileCreated": "2025-06-21T09:31:00.0384123+00:00", "fileLastModified": "2025-07-14T09:31:00.0384129+00:00", @@ -34235,11 +34235,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89811, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1037 }" }, "fileCreated": "2025-06-21T09:31:00.0399648+00:00", "fileLastModified": "2025-07-14T09:31:00.0399652+00:00", @@ -34268,11 +34268,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80828, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1038 }" }, "fileCreated": "2025-06-21T09:31:00.0413269+00:00", "fileLastModified": "2025-07-14T09:31:00.0413274+00:00", @@ -34301,11 +34301,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 47507, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1039 }" }, "fileCreated": "2025-06-21T09:31:00.042884+00:00", "fileLastModified": "2025-07-14T09:31:00.0428844+00:00", @@ -34334,11 +34334,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 50957, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1040 }" }, "fileCreated": "2025-06-21T09:31:00.0441284+00:00", "fileLastModified": "2025-07-14T09:31:00.0441288+00:00", @@ -34367,11 +34367,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53462, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1041 }" }, "fileCreated": "2025-06-21T09:31:00.045314+00:00", "fileLastModified": "2025-07-14T09:31:00.0453144+00:00", @@ -34400,11 +34400,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 54298, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1042 }" }, "fileCreated": "2025-06-21T09:31:00.0471037+00:00", "fileLastModified": "2025-07-14T09:31:00.0471042+00:00", @@ -34433,11 +34433,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 49483, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1043 }" }, "fileCreated": "2025-06-21T09:31:00.0484079+00:00", "fileLastModified": "2025-07-14T09:31:00.0484087+00:00", @@ -34466,11 +34466,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 29219, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1044 }" }, "fileCreated": "2025-06-21T09:31:00.0496537+00:00", "fileLastModified": "2025-07-14T09:31:00.0496541+00:00", @@ -34499,11 +34499,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 45107, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1045 }" }, "fileCreated": "2025-06-21T09:31:00.0510851+00:00", "fileLastModified": "2025-07-14T09:31:00.0510855+00:00", @@ -34532,11 +34532,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 50004, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1046 }" }, "fileCreated": "2025-06-21T09:31:00.0522911+00:00", "fileLastModified": "2025-07-14T09:31:00.0522914+00:00", @@ -34565,11 +34565,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80073, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1047 }" }, "fileCreated": "2025-06-21T09:31:00.0534399+00:00", "fileLastModified": "2025-07-14T09:31:00.0534403+00:00", @@ -34598,11 +34598,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 34867, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1048 }" }, "fileCreated": "2025-06-21T09:31:00.0549296+00:00", "fileLastModified": "2025-07-14T09:31:00.05493+00:00", @@ -34631,11 +34631,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89997, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1049 }" }, "fileCreated": "2025-06-21T09:31:00.0562024+00:00", "fileLastModified": "2025-07-14T09:31:00.0562028+00:00", @@ -34664,11 +34664,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70191, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1050 }" }, "fileCreated": "2025-06-21T09:31:00.0577627+00:00", "fileLastModified": "2025-07-14T09:31:00.0577631+00:00", @@ -34697,11 +34697,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 21051, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1051 }" }, "fileCreated": "2025-06-21T09:31:00.0598275+00:00", "fileLastModified": "2025-07-14T09:31:00.0598279+00:00", @@ -34730,11 +34730,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 96534, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1052 }" }, "fileCreated": "2025-06-21T09:31:00.0614315+00:00", "fileLastModified": "2025-07-14T09:31:00.0614319+00:00", @@ -34763,11 +34763,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74610, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1053 }" }, "fileCreated": "2025-06-21T09:31:00.0630541+00:00", "fileLastModified": "2025-07-14T09:31:00.0630545+00:00", @@ -34796,11 +34796,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 29218, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1054 }" }, "fileCreated": "2025-06-21T09:31:00.0643772+00:00", "fileLastModified": "2025-07-14T09:31:00.0643776+00:00", @@ -34829,11 +34829,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32081, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1055 }" }, "fileCreated": "2025-06-21T09:31:00.0656925+00:00", "fileLastModified": "2025-07-14T09:31:00.0656928+00:00", @@ -34862,11 +34862,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 28890, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1056 }" }, "fileCreated": "2025-06-21T09:31:00.0672829+00:00", "fileLastModified": "2025-07-14T09:31:00.0672832+00:00", @@ -34895,11 +34895,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 28984, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1057 }" }, "fileCreated": "2025-06-21T09:31:00.068702+00:00", "fileLastModified": "2025-07-14T09:31:00.0687024+00:00", @@ -34928,11 +34928,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95554, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1058 }" }, "fileCreated": "2025-06-21T09:31:00.0768322+00:00", "fileLastModified": "2025-07-14T09:31:00.0768328+00:00", @@ -34961,11 +34961,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60982, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1059 }" }, "fileCreated": "2025-06-21T09:31:00.0790976+00:00", "fileLastModified": "2025-07-14T09:31:00.0790981+00:00", @@ -34994,11 +34994,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64836, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1060 }" }, "fileCreated": "2025-06-21T09:31:00.0810017+00:00", "fileLastModified": "2025-07-14T09:31:00.0810021+00:00", @@ -35027,11 +35027,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73554, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1061 }" }, "fileCreated": "2025-06-21T09:31:00.0823515+00:00", "fileLastModified": "2025-07-14T09:31:00.0823518+00:00", @@ -35060,11 +35060,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 93112, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1062 }" }, "fileCreated": "2025-06-21T09:31:00.0839432+00:00", "fileLastModified": "2025-07-14T09:31:00.0839435+00:00", @@ -35093,11 +35093,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96462, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1063 }" }, "fileCreated": "2025-06-21T09:31:00.0853283+00:00", "fileLastModified": "2025-07-14T09:31:00.0853285+00:00", @@ -35126,11 +35126,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 51923, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1064 }" }, "fileCreated": "2025-06-21T09:31:00.0870625+00:00", "fileLastModified": "2025-07-14T09:31:00.0870628+00:00", @@ -35159,11 +35159,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 52936, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1065 }" }, "fileCreated": "2025-06-21T09:31:00.0887119+00:00", "fileLastModified": "2025-07-14T09:31:00.0887123+00:00", @@ -35192,11 +35192,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87364, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1066 }" }, "fileCreated": "2025-06-21T09:31:00.0900225+00:00", "fileLastModified": "2025-07-14T09:31:00.0900228+00:00", @@ -35225,11 +35225,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 60116, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1067 }" }, "fileCreated": "2025-06-21T09:31:00.0918435+00:00", "fileLastModified": "2025-07-14T09:31:00.0918439+00:00", @@ -35258,11 +35258,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66092, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1068 }" }, "fileCreated": "2025-06-21T09:31:00.0932571+00:00", "fileLastModified": "2025-07-14T09:31:00.0932574+00:00", @@ -35291,11 +35291,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 81886, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1069 }" }, "fileCreated": "2025-06-21T09:31:00.0948902+00:00", "fileLastModified": "2025-07-14T09:31:00.0948905+00:00", @@ -35324,11 +35324,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 28306, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1070 }" }, "fileCreated": "2025-06-21T09:31:00.0963047+00:00", "fileLastModified": "2025-07-14T09:31:00.096305+00:00", @@ -35357,11 +35357,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 50347, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1071 }" }, "fileCreated": "2025-06-21T09:31:00.0977608+00:00", "fileLastModified": "2025-07-14T09:31:00.0977611+00:00", @@ -35390,11 +35390,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 64141, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1072 }" }, "fileCreated": "2025-06-21T09:31:00.0994052+00:00", "fileLastModified": "2025-07-14T09:31:00.0994056+00:00", @@ -35423,11 +35423,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 36906, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1073 }" }, "fileCreated": "2025-06-21T09:31:00.100825+00:00", "fileLastModified": "2025-07-14T09:31:00.1008253+00:00", @@ -35456,11 +35456,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94280, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1074 }" }, "fileCreated": "2025-06-21T09:31:00.1025834+00:00", "fileLastModified": "2025-07-14T09:31:00.1025837+00:00", @@ -35489,11 +35489,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 33261, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1075 }" }, "fileCreated": "2025-06-21T09:31:00.1043598+00:00", "fileLastModified": "2025-07-14T09:31:00.1043602+00:00", @@ -35522,11 +35522,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91125, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1076 }" }, "fileCreated": "2025-06-21T09:31:00.105956+00:00", "fileLastModified": "2025-07-14T09:31:00.1059564+00:00", @@ -35555,11 +35555,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64683, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1077 }" }, "fileCreated": "2025-06-21T09:31:00.1079109+00:00", "fileLastModified": "2025-07-14T09:31:00.1079113+00:00", @@ -35588,11 +35588,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69808, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1078 }" }, "fileCreated": "2025-06-21T09:31:00.1097238+00:00", "fileLastModified": "2025-07-14T09:31:00.1097242+00:00", @@ -35621,11 +35621,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23366, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1079 }" }, "fileCreated": "2025-06-21T09:31:00.1111303+00:00", "fileLastModified": "2025-07-14T09:31:00.1111306+00:00", @@ -35654,11 +35654,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 31695, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1080 }" }, "fileCreated": "2025-06-21T09:31:00.1128324+00:00", "fileLastModified": "2025-07-14T09:31:00.1128327+00:00", @@ -35687,11 +35687,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 58138, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1081 }" }, "fileCreated": "2025-06-21T09:31:00.1142745+00:00", "fileLastModified": "2025-07-14T09:31:00.1142747+00:00", @@ -35720,11 +35720,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 32779, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1082 }" }, "fileCreated": "2025-06-21T09:31:00.1156734+00:00", "fileLastModified": "2025-07-14T09:31:00.1156737+00:00", @@ -35753,11 +35753,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46215, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1083 }" }, "fileCreated": "2025-06-21T09:31:00.1176111+00:00", "fileLastModified": "2025-07-14T09:31:00.1176116+00:00", @@ -35786,11 +35786,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60649, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1084 }" }, "fileCreated": "2025-06-21T09:31:00.1194198+00:00", "fileLastModified": "2025-07-14T09:31:00.1194202+00:00", @@ -35819,11 +35819,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70285, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1085 }" }, "fileCreated": "2025-06-21T09:31:00.1208485+00:00", "fileLastModified": "2025-07-14T09:31:00.1208488+00:00", @@ -35852,11 +35852,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60815, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1086 }" }, "fileCreated": "2025-06-21T09:31:00.1224639+00:00", "fileLastModified": "2025-07-14T09:31:00.1224642+00:00", @@ -35885,11 +35885,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 97088, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1087 }" }, "fileCreated": "2025-06-21T09:31:00.1243925+00:00", "fileLastModified": "2025-07-14T09:31:00.1243933+00:00", @@ -35918,11 +35918,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 33683, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1088 }" }, "fileCreated": "2025-06-21T09:31:00.1262508+00:00", "fileLastModified": "2025-07-14T09:31:00.1262511+00:00", @@ -35951,11 +35951,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 79432, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1089 }" }, "fileCreated": "2025-06-21T09:31:00.1280221+00:00", "fileLastModified": "2025-07-14T09:31:00.1280224+00:00", @@ -35984,11 +35984,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 26900, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1090 }" }, "fileCreated": "2025-06-21T09:31:00.1298587+00:00", "fileLastModified": "2025-07-14T09:31:00.129859+00:00", @@ -36017,11 +36017,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 57428, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1091 }" }, "fileCreated": "2025-06-21T09:31:00.1313059+00:00", "fileLastModified": "2025-07-14T09:31:00.1313062+00:00", @@ -36050,11 +36050,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 80266, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1092 }" }, "fileCreated": "2025-06-21T09:31:00.1330796+00:00", "fileLastModified": "2025-07-14T09:31:00.1330799+00:00", @@ -36083,11 +36083,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 36723, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1093 }" }, "fileCreated": "2025-06-21T09:31:00.1347925+00:00", "fileLastModified": "2025-07-14T09:31:00.1347928+00:00", @@ -36116,11 +36116,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91787, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1094 }" }, "fileCreated": "2025-06-21T09:31:00.1366642+00:00", "fileLastModified": "2025-07-14T09:31:00.1366645+00:00", @@ -36149,11 +36149,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 37544, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1095 }" }, "fileCreated": "2025-06-21T09:31:00.1381134+00:00", "fileLastModified": "2025-07-14T09:31:00.1381137+00:00", @@ -36182,11 +36182,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37222, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1096 }" }, "fileCreated": "2025-06-21T09:31:00.1398001+00:00", "fileLastModified": "2025-07-14T09:31:00.1398005+00:00", @@ -36215,11 +36215,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 87582, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1097 }" }, "fileCreated": "2025-06-21T09:31:00.1416069+00:00", "fileLastModified": "2025-07-14T09:31:00.1416071+00:00", @@ -36248,11 +36248,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60106, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1098 }" }, "fileCreated": "2025-06-21T09:31:00.1431524+00:00", "fileLastModified": "2025-07-14T09:31:00.1431527+00:00", @@ -36281,11 +36281,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 37549, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1099 }" }, "fileCreated": "2025-06-21T09:31:00.1448353+00:00", "fileLastModified": "2025-07-14T09:31:00.1448356+00:00", @@ -36314,11 +36314,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 56279, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1100 }" }, "fileCreated": "2025-06-21T09:31:00.1478042+00:00", "fileLastModified": "2025-07-14T09:31:00.1478045+00:00", @@ -36347,11 +36347,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 26578, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1101 }" }, "fileCreated": "2025-06-21T09:31:00.1492717+00:00", "fileLastModified": "2025-07-14T09:31:00.149272+00:00", @@ -36380,11 +36380,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70154, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1102 }" }, "fileCreated": "2025-06-21T09:31:00.1508769+00:00", "fileLastModified": "2025-07-14T09:31:00.1508772+00:00", @@ -36413,11 +36413,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45430, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1103 }" }, "fileCreated": "2025-06-21T09:31:00.1523218+00:00", "fileLastModified": "2025-07-14T09:31:00.1523221+00:00", @@ -36446,11 +36446,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31679, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1104 }" }, "fileCreated": "2025-06-21T09:31:00.1541135+00:00", "fileLastModified": "2025-07-14T09:31:00.1541138+00:00", @@ -36479,11 +36479,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 53708, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1105 }" }, "fileCreated": "2025-06-21T09:31:00.155968+00:00", "fileLastModified": "2025-07-14T09:31:00.1559683+00:00", @@ -36512,11 +36512,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 53840, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1106 }" }, "fileCreated": "2025-06-21T09:31:00.1574456+00:00", "fileLastModified": "2025-07-14T09:31:00.1574459+00:00", @@ -36545,11 +36545,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38721, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1107 }" }, "fileCreated": "2025-06-21T09:31:00.1591828+00:00", "fileLastModified": "2025-07-14T09:31:00.1591831+00:00", @@ -36578,11 +36578,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70801, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1108 }" }, "fileCreated": "2025-06-21T09:31:00.16059+00:00", "fileLastModified": "2025-07-14T09:31:00.1605904+00:00", @@ -36611,11 +36611,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 69315, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1109 }" }, "fileCreated": "2025-06-21T09:31:00.1622093+00:00", "fileLastModified": "2025-07-14T09:31:00.1622095+00:00", @@ -36644,11 +36644,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 39718, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1110 }" }, "fileCreated": "2025-06-21T09:31:00.1635797+00:00", "fileLastModified": "2025-07-14T09:31:00.1635799+00:00", @@ -36677,11 +36677,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79071, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1111 }" }, "fileCreated": "2025-06-21T09:31:00.1653005+00:00", "fileLastModified": "2025-07-14T09:31:00.1653007+00:00", @@ -36710,11 +36710,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87117, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1112 }" }, "fileCreated": "2025-06-21T09:31:00.1667772+00:00", "fileLastModified": "2025-07-14T09:31:00.1667775+00:00", @@ -36743,11 +36743,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 31812, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1113 }" }, "fileCreated": "2025-06-21T09:31:00.1684543+00:00", "fileLastModified": "2025-07-14T09:31:00.1684546+00:00", @@ -36776,11 +36776,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82906, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1114 }" }, "fileCreated": "2025-06-21T09:31:00.1702435+00:00", "fileLastModified": "2025-07-14T09:31:00.1702439+00:00", @@ -36809,11 +36809,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 21484, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1115 }" }, "fileCreated": "2025-06-21T09:31:00.1720837+00:00", "fileLastModified": "2025-07-14T09:31:00.172084+00:00", @@ -36842,11 +36842,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 91548, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1116 }" }, "fileCreated": "2025-06-21T09:31:00.1737458+00:00", "fileLastModified": "2025-07-14T09:31:00.1737461+00:00", @@ -36875,11 +36875,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29503, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1117 }" }, "fileCreated": "2025-06-21T09:31:00.1753858+00:00", "fileLastModified": "2025-07-14T09:31:00.1753862+00:00", @@ -36908,11 +36908,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60948, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1118 }" }, "fileCreated": "2025-06-21T09:31:00.1769328+00:00", "fileLastModified": "2025-07-14T09:31:00.1769331+00:00", @@ -36941,11 +36941,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 97017, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1119 }" }, "fileCreated": "2025-06-21T09:31:00.1787328+00:00", "fileLastModified": "2025-07-14T09:31:00.1787331+00:00", @@ -36974,11 +36974,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77458, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1120 }" }, "fileCreated": "2025-06-21T09:31:00.1802904+00:00", "fileLastModified": "2025-07-14T09:31:00.1802907+00:00", @@ -37007,11 +37007,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76961, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1121 }" }, "fileCreated": "2025-06-21T09:31:00.1820861+00:00", "fileLastModified": "2025-07-14T09:31:00.1820864+00:00", @@ -37040,11 +37040,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 29781, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1122 }" }, "fileCreated": "2025-06-21T09:31:00.1836606+00:00", "fileLastModified": "2025-07-14T09:31:00.183661+00:00", @@ -37073,11 +37073,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55189, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1123 }" }, "fileCreated": "2025-06-21T09:31:00.1857624+00:00", "fileLastModified": "2025-07-14T09:31:00.1857627+00:00", @@ -37106,11 +37106,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 48140, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1124 }" }, "fileCreated": "2025-06-21T09:31:00.1875137+00:00", "fileLastModified": "2025-07-14T09:31:00.187514+00:00", @@ -37139,11 +37139,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 42768, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1125 }" }, "fileCreated": "2025-06-21T09:31:00.1895407+00:00", "fileLastModified": "2025-07-14T09:31:00.189541+00:00", @@ -37172,11 +37172,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21208, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1126 }" }, "fileCreated": "2025-06-21T09:31:00.191196+00:00", "fileLastModified": "2025-07-14T09:31:00.1911963+00:00", @@ -37205,11 +37205,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 36263, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1127 }" }, "fileCreated": "2025-06-21T09:31:00.1931545+00:00", "fileLastModified": "2025-07-14T09:31:00.1931549+00:00", @@ -37238,11 +37238,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86704, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1128 }" }, "fileCreated": "2025-06-21T09:31:00.194902+00:00", "fileLastModified": "2025-07-14T09:31:00.1949023+00:00", @@ -37271,11 +37271,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 75334, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1129 }" }, "fileCreated": "2025-06-21T09:31:00.1968832+00:00", "fileLastModified": "2025-07-14T09:31:00.1968835+00:00", @@ -37304,11 +37304,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88678, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1130 }" }, "fileCreated": "2025-06-21T09:31:00.1985852+00:00", "fileLastModified": "2025-07-14T09:31:00.1985855+00:00", @@ -37337,11 +37337,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47775, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1131 }" }, "fileCreated": "2025-06-21T09:31:00.2007902+00:00", "fileLastModified": "2025-07-14T09:31:00.2007905+00:00", @@ -37370,11 +37370,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58165, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1132 }" }, "fileCreated": "2025-06-21T09:31:00.2073218+00:00", "fileLastModified": "2025-07-14T09:31:00.2073221+00:00", @@ -37403,11 +37403,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 74385, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1133 }" }, "fileCreated": "2025-06-21T09:31:00.20913+00:00", "fileLastModified": "2025-07-14T09:31:00.2091302+00:00", @@ -37436,11 +37436,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 42575, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1134 }" }, "fileCreated": "2025-06-21T09:31:00.211147+00:00", "fileLastModified": "2025-07-14T09:31:00.2111473+00:00", @@ -37469,11 +37469,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88791, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1135 }" }, "fileCreated": "2025-06-21T09:31:00.212869+00:00", "fileLastModified": "2025-07-14T09:31:00.2128693+00:00", @@ -37502,11 +37502,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 81112, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1136 }" }, "fileCreated": "2025-06-21T09:31:00.2148097+00:00", "fileLastModified": "2025-07-14T09:31:00.21481+00:00", @@ -37535,11 +37535,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 99314, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1137 }" }, "fileCreated": "2025-06-21T09:31:00.2287314+00:00", "fileLastModified": "2025-07-14T09:31:00.2287319+00:00", @@ -37568,11 +37568,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85153, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1138 }" }, "fileCreated": "2025-06-21T09:31:00.2316977+00:00", "fileLastModified": "2025-07-14T09:31:00.2316993+00:00", @@ -37601,11 +37601,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 31005, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1139 }" }, "fileCreated": "2025-06-21T09:31:00.2348121+00:00", "fileLastModified": "2025-07-14T09:31:00.2348128+00:00", @@ -37634,11 +37634,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64295, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1140 }" }, "fileCreated": "2025-06-21T09:31:00.237086+00:00", "fileLastModified": "2025-07-14T09:31:00.2370867+00:00", @@ -37667,11 +37667,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 72157, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1141 }" }, "fileCreated": "2025-06-21T09:31:00.2390863+00:00", "fileLastModified": "2025-07-14T09:31:00.2390867+00:00", @@ -37700,11 +37700,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60795, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1142 }" }, "fileCreated": "2025-06-21T09:31:00.2412721+00:00", "fileLastModified": "2025-07-14T09:31:00.2412724+00:00", @@ -37733,11 +37733,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38703, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1143 }" }, "fileCreated": "2025-06-21T09:31:00.2433419+00:00", "fileLastModified": "2025-07-14T09:31:00.2433423+00:00", @@ -37766,11 +37766,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 68196, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1144 }" }, "fileCreated": "2025-06-21T09:31:00.2452855+00:00", "fileLastModified": "2025-07-14T09:31:00.2452858+00:00", @@ -37799,11 +37799,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23900, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1145 }" }, "fileCreated": "2025-06-21T09:31:00.247775+00:00", "fileLastModified": "2025-07-14T09:31:00.2477754+00:00", @@ -37832,11 +37832,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 21289, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1146 }" }, "fileCreated": "2025-06-21T09:31:00.249669+00:00", "fileLastModified": "2025-07-14T09:31:00.2496693+00:00", @@ -37865,11 +37865,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23997, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1147 }" }, "fileCreated": "2025-06-21T09:31:00.2518434+00:00", "fileLastModified": "2025-07-14T09:31:00.2518437+00:00", @@ -37898,11 +37898,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 35727, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1148 }" }, "fileCreated": "2025-06-21T09:31:00.254016+00:00", "fileLastModified": "2025-07-14T09:31:00.2540172+00:00", @@ -37931,11 +37931,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 27586, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1149 }" }, "fileCreated": "2025-06-21T09:31:00.2559271+00:00", "fileLastModified": "2025-07-14T09:31:00.2559274+00:00", @@ -37964,11 +37964,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 50888, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1150 }" }, "fileCreated": "2025-06-21T09:31:00.2580797+00:00", "fileLastModified": "2025-07-14T09:31:00.2580801+00:00", @@ -37997,11 +37997,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77917, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1151 }" }, "fileCreated": "2025-06-21T09:31:00.2601132+00:00", "fileLastModified": "2025-07-14T09:31:00.2601136+00:00", @@ -38030,11 +38030,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 25503, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1152 }" }, "fileCreated": "2025-06-21T09:31:00.2624904+00:00", "fileLastModified": "2025-07-14T09:31:00.2624907+00:00", @@ -38063,11 +38063,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 34099, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1153 }" }, "fileCreated": "2025-06-21T09:31:00.2647034+00:00", "fileLastModified": "2025-07-14T09:31:00.2647038+00:00", @@ -38096,11 +38096,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70608, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1154 }" }, "fileCreated": "2025-06-21T09:31:00.2666982+00:00", "fileLastModified": "2025-07-14T09:31:00.2666985+00:00", @@ -38129,11 +38129,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 30475, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1155 }" }, "fileCreated": "2025-06-21T09:31:00.268814+00:00", "fileLastModified": "2025-07-14T09:31:00.2688143+00:00", @@ -38162,11 +38162,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85908, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1156 }" }, "fileCreated": "2025-06-21T09:31:00.2707156+00:00", "fileLastModified": "2025-07-14T09:31:00.270716+00:00", @@ -38195,11 +38195,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 60211, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1157 }" }, "fileCreated": "2025-06-21T09:31:00.272769+00:00", "fileLastModified": "2025-07-14T09:31:00.2727693+00:00", @@ -38228,11 +38228,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 57963, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1158 }" }, "fileCreated": "2025-06-21T09:31:00.2748813+00:00", "fileLastModified": "2025-07-14T09:31:00.274882+00:00", @@ -38261,11 +38261,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22667, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1159 }" }, "fileCreated": "2025-06-21T09:31:00.2774965+00:00", "fileLastModified": "2025-07-14T09:31:00.2774968+00:00", @@ -38294,11 +38294,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 86132, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1160 }" }, "fileCreated": "2025-06-21T09:31:00.2797476+00:00", "fileLastModified": "2025-07-14T09:31:00.2797479+00:00", @@ -38327,11 +38327,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43720, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1161 }" }, "fileCreated": "2025-06-21T09:31:00.2818163+00:00", "fileLastModified": "2025-07-14T09:31:00.2818166+00:00", @@ -38360,11 +38360,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 23034, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1162 }" }, "fileCreated": "2025-06-21T09:31:00.283664+00:00", "fileLastModified": "2025-07-14T09:31:00.2836644+00:00", @@ -38393,11 +38393,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 90135, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1163 }" }, "fileCreated": "2025-06-21T09:31:00.2857253+00:00", "fileLastModified": "2025-07-14T09:31:00.2857257+00:00", @@ -38426,11 +38426,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 72353, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1164 }" }, "fileCreated": "2025-06-21T09:31:00.2880276+00:00", "fileLastModified": "2025-07-14T09:31:00.288028+00:00", @@ -38459,11 +38459,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 38408, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1165 }" }, "fileCreated": "2025-06-21T09:31:00.2901087+00:00", "fileLastModified": "2025-07-14T09:31:00.2901092+00:00", @@ -38492,11 +38492,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 90457, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1166 }" }, "fileCreated": "2025-06-21T09:31:00.2925971+00:00", "fileLastModified": "2025-07-14T09:31:00.2925981+00:00", @@ -38525,11 +38525,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92642, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1167 }" }, "fileCreated": "2025-06-21T09:31:00.2953375+00:00", "fileLastModified": "2025-07-14T09:31:00.2953381+00:00", @@ -38558,11 +38558,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 68443, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1168 }" }, "fileCreated": "2025-06-21T09:31:00.2978185+00:00", "fileLastModified": "2025-07-14T09:31:00.2978189+00:00", @@ -38591,11 +38591,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 67592, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1169 }" }, "fileCreated": "2025-06-21T09:31:00.2998239+00:00", "fileLastModified": "2025-07-14T09:31:00.2998243+00:00", @@ -38624,11 +38624,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 76264, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1170 }" }, "fileCreated": "2025-06-21T09:31:00.3020941+00:00", "fileLastModified": "2025-07-14T09:31:00.3020945+00:00", @@ -38657,11 +38657,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89248, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1171 }" }, "fileCreated": "2025-06-21T09:31:00.3042249+00:00", "fileLastModified": "2025-07-14T09:31:00.3042256+00:00", @@ -38690,11 +38690,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69600, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1172 }" }, "fileCreated": "2025-06-21T09:31:00.3062531+00:00", "fileLastModified": "2025-07-14T09:31:00.3062534+00:00", @@ -38723,11 +38723,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 61702, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1173 }" }, "fileCreated": "2025-06-21T09:31:00.3083941+00:00", "fileLastModified": "2025-07-14T09:31:00.3083943+00:00", @@ -38756,11 +38756,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 29468, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1174 }" }, "fileCreated": "2025-06-21T09:31:00.3107674+00:00", "fileLastModified": "2025-07-14T09:31:00.3107677+00:00", @@ -38789,11 +38789,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 71525, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1175 }" }, "fileCreated": "2025-06-21T09:31:00.3131363+00:00", "fileLastModified": "2025-07-14T09:31:00.3131366+00:00", @@ -38822,11 +38822,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 33914, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1176 }" }, "fileCreated": "2025-06-21T09:31:00.3155042+00:00", "fileLastModified": "2025-07-14T09:31:00.3155045+00:00", @@ -38855,11 +38855,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 42451, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1177 }" }, "fileCreated": "2025-06-21T09:31:00.3175252+00:00", "fileLastModified": "2025-07-14T09:31:00.3175255+00:00", @@ -38888,11 +38888,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 25603, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1178 }" }, "fileCreated": "2025-06-21T09:31:00.319731+00:00", "fileLastModified": "2025-07-14T09:31:00.3197313+00:00", @@ -38921,11 +38921,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 40121, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1179 }" }, "fileCreated": "2025-06-21T09:31:00.3219397+00:00", "fileLastModified": "2025-07-14T09:31:00.32194+00:00", @@ -38954,11 +38954,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60270, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1180 }" }, "fileCreated": "2025-06-21T09:31:00.3241287+00:00", "fileLastModified": "2025-07-14T09:31:00.324129+00:00", @@ -38987,11 +38987,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 48113, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1181 }" }, "fileCreated": "2025-06-21T09:31:00.3265368+00:00", "fileLastModified": "2025-07-14T09:31:00.3265371+00:00", @@ -39020,11 +39020,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31727, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1182 }" }, "fileCreated": "2025-06-21T09:31:00.3289821+00:00", "fileLastModified": "2025-07-14T09:31:00.3289824+00:00", @@ -39053,11 +39053,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 27477, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1183 }" }, "fileCreated": "2025-06-21T09:31:00.3315379+00:00", "fileLastModified": "2025-07-14T09:31:00.3315382+00:00", @@ -39086,11 +39086,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 43335, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1184 }" }, "fileCreated": "2025-06-21T09:31:00.3338751+00:00", "fileLastModified": "2025-07-14T09:31:00.3338754+00:00", @@ -39119,11 +39119,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 92721, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1185 }" }, "fileCreated": "2025-06-21T09:31:00.3364235+00:00", "fileLastModified": "2025-07-14T09:31:00.3364238+00:00", @@ -39152,11 +39152,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65762, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1186 }" }, "fileCreated": "2025-06-21T09:31:00.3390188+00:00", "fileLastModified": "2025-07-14T09:31:00.3390192+00:00", @@ -39185,11 +39185,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24353, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1187 }" }, "fileCreated": "2025-06-21T09:31:00.341686+00:00", "fileLastModified": "2025-07-14T09:31:00.3416864+00:00", @@ -39218,11 +39218,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92826, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1188 }" }, "fileCreated": "2025-06-21T09:31:00.3441774+00:00", "fileLastModified": "2025-07-14T09:31:00.3441778+00:00", @@ -39251,11 +39251,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 75968, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1189 }" }, "fileCreated": "2025-06-21T09:31:00.3467+00:00", "fileLastModified": "2025-07-14T09:31:00.3467003+00:00", @@ -39284,11 +39284,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 49815, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1190 }" }, "fileCreated": "2025-06-21T09:31:00.350004+00:00", "fileLastModified": "2025-07-14T09:31:00.3500043+00:00", @@ -39317,11 +39317,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 55545, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1191 }" }, "fileCreated": "2025-06-21T09:31:00.352809+00:00", "fileLastModified": "2025-07-14T09:31:00.3528094+00:00", @@ -39350,11 +39350,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 64227, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1192 }" }, "fileCreated": "2025-06-21T09:31:00.3552572+00:00", "fileLastModified": "2025-07-14T09:31:00.3552576+00:00", @@ -39383,11 +39383,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95455, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1193 }" }, "fileCreated": "2025-06-21T09:31:00.3590068+00:00", "fileLastModified": "2025-07-14T09:31:00.3590072+00:00", @@ -39416,11 +39416,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 81506, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1194 }" }, "fileCreated": "2025-06-21T09:31:00.3616475+00:00", "fileLastModified": "2025-07-14T09:31:00.3616478+00:00", @@ -39449,11 +39449,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 62523, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1195 }" }, "fileCreated": "2025-06-21T09:31:00.3640579+00:00", "fileLastModified": "2025-07-14T09:31:00.3640582+00:00", @@ -39482,11 +39482,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61304, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1196 }" }, "fileCreated": "2025-06-21T09:31:00.3664298+00:00", "fileLastModified": "2025-07-14T09:31:00.3664302+00:00", @@ -39515,11 +39515,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 98041, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1197 }" }, "fileCreated": "2025-06-21T09:31:00.3688505+00:00", "fileLastModified": "2025-07-14T09:31:00.3688509+00:00", @@ -39548,11 +39548,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57995, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1198 }" }, "fileCreated": "2025-06-21T09:31:00.3711906+00:00", "fileLastModified": "2025-07-14T09:31:00.371191+00:00", @@ -39581,11 +39581,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76627, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1199 }" }, "fileCreated": "2025-06-21T09:31:00.3737665+00:00", "fileLastModified": "2025-07-14T09:31:00.3737669+00:00", @@ -39614,11 +39614,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 51334, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1200 }" }, "fileCreated": "2025-06-21T09:31:00.3762999+00:00", "fileLastModified": "2025-07-14T09:31:00.3763003+00:00", @@ -39647,11 +39647,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 47160, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1201 }" }, "fileCreated": "2025-06-21T09:31:00.3785424+00:00", "fileLastModified": "2025-07-14T09:31:00.3785427+00:00", @@ -39680,11 +39680,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53338, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1202 }" }, "fileCreated": "2025-06-21T09:31:00.381288+00:00", "fileLastModified": "2025-07-14T09:31:00.3812887+00:00", @@ -39713,11 +39713,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 58600, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1203 }" }, "fileCreated": "2025-06-21T09:31:00.3838152+00:00", "fileLastModified": "2025-07-14T09:31:00.3838155+00:00", @@ -39746,11 +39746,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 26782, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1204 }" }, "fileCreated": "2025-06-21T09:31:00.387352+00:00", "fileLastModified": "2025-07-14T09:31:00.3873527+00:00", @@ -39779,11 +39779,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 91337, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1205 }" }, "fileCreated": "2025-06-21T09:31:00.3898034+00:00", "fileLastModified": "2025-07-14T09:31:00.3898037+00:00", @@ -39812,11 +39812,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90399, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1206 }" }, "fileCreated": "2025-06-21T09:31:00.3922744+00:00", "fileLastModified": "2025-07-14T09:31:00.3922746+00:00", @@ -39845,11 +39845,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86877, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1207 }" }, "fileCreated": "2025-06-21T09:31:00.3946418+00:00", "fileLastModified": "2025-07-14T09:31:00.394642+00:00", @@ -39878,11 +39878,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 52855, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1208 }" }, "fileCreated": "2025-06-21T09:31:00.3967591+00:00", "fileLastModified": "2025-07-14T09:31:00.3967594+00:00", @@ -39911,11 +39911,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 56179, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1209 }" }, "fileCreated": "2025-06-21T09:31:00.3992679+00:00", "fileLastModified": "2025-07-14T09:31:00.3992682+00:00", @@ -39944,11 +39944,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60307, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1210 }" }, "fileCreated": "2025-06-21T09:31:00.401938+00:00", "fileLastModified": "2025-07-14T09:31:00.4019383+00:00", @@ -39977,11 +39977,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 84313, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1211 }" }, "fileCreated": "2025-06-21T09:31:00.4044598+00:00", "fileLastModified": "2025-07-14T09:31:00.4044601+00:00", @@ -40010,11 +40010,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47444, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1212 }" }, "fileCreated": "2025-06-21T09:31:00.4067231+00:00", "fileLastModified": "2025-07-14T09:31:00.4067233+00:00", @@ -40043,11 +40043,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96541, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1213 }" }, "fileCreated": "2025-06-21T09:31:00.4092417+00:00", "fileLastModified": "2025-07-14T09:31:00.4092421+00:00", @@ -40076,11 +40076,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27065, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1214 }" }, "fileCreated": "2025-06-21T09:31:00.4117373+00:00", "fileLastModified": "2025-07-14T09:31:00.4117376+00:00", @@ -40109,11 +40109,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 72118, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1215 }" }, "fileCreated": "2025-06-21T09:31:00.414161+00:00", "fileLastModified": "2025-07-14T09:31:00.4141614+00:00", @@ -40142,11 +40142,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28092, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1216 }" }, "fileCreated": "2025-06-21T09:31:00.4165699+00:00", "fileLastModified": "2025-07-14T09:31:00.4165702+00:00", @@ -40175,11 +40175,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 88140, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1217 }" }, "fileCreated": "2025-06-21T09:31:00.4189252+00:00", "fileLastModified": "2025-07-14T09:31:00.4189255+00:00", @@ -40208,11 +40208,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 33290, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1218 }" }, "fileCreated": "2025-06-21T09:31:00.4214407+00:00", "fileLastModified": "2025-07-14T09:31:00.4214409+00:00", @@ -40241,11 +40241,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 69560, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1219 }" }, "fileCreated": "2025-06-21T09:31:00.4238521+00:00", "fileLastModified": "2025-07-14T09:31:00.4238524+00:00", @@ -40274,11 +40274,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 45309, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1220 }" }, "fileCreated": "2025-06-21T09:31:00.4259553+00:00", "fileLastModified": "2025-07-14T09:31:00.4259556+00:00", @@ -40307,11 +40307,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59500, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1221 }" }, "fileCreated": "2025-06-21T09:31:00.4283515+00:00", "fileLastModified": "2025-07-14T09:31:00.4283517+00:00", @@ -40340,11 +40340,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 55128, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1222 }" }, "fileCreated": "2025-06-21T09:31:00.4310352+00:00", "fileLastModified": "2025-07-14T09:31:00.4310355+00:00", @@ -40373,11 +40373,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 84920, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1223 }" }, "fileCreated": "2025-06-21T09:31:00.4338826+00:00", "fileLastModified": "2025-07-14T09:31:00.433883+00:00", @@ -40406,11 +40406,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 71821, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1224 }" }, "fileCreated": "2025-06-21T09:31:00.4365825+00:00", "fileLastModified": "2025-07-14T09:31:00.4365828+00:00", @@ -40439,11 +40439,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 78038, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1225 }" }, "fileCreated": "2025-06-21T09:31:00.4391038+00:00", "fileLastModified": "2025-07-14T09:31:00.4391042+00:00", @@ -40472,11 +40472,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95371, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1226 }" }, "fileCreated": "2025-06-21T09:31:00.4416149+00:00", "fileLastModified": "2025-07-14T09:31:00.4416151+00:00", @@ -40505,11 +40505,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 73622, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1227 }" }, "fileCreated": "2025-06-21T09:31:00.4440254+00:00", "fileLastModified": "2025-07-14T09:31:00.4440257+00:00", @@ -40538,11 +40538,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 59117, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1228 }" }, "fileCreated": "2025-06-21T09:31:00.4461965+00:00", "fileLastModified": "2025-07-14T09:31:00.4461968+00:00", @@ -40571,11 +40571,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77463, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1229 }" }, "fileCreated": "2025-06-21T09:31:00.4492007+00:00", "fileLastModified": "2025-07-14T09:31:00.449201+00:00", @@ -40604,11 +40604,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 94205, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1230 }" }, "fileCreated": "2025-06-21T09:31:00.4523671+00:00", "fileLastModified": "2025-07-14T09:31:00.4523674+00:00", @@ -40637,11 +40637,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 48107, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1231 }" }, "fileCreated": "2025-06-21T09:31:00.4550677+00:00", "fileLastModified": "2025-07-14T09:31:00.455068+00:00", @@ -40670,11 +40670,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87933, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1232 }" }, "fileCreated": "2025-06-21T09:31:00.4574349+00:00", "fileLastModified": "2025-07-14T09:31:00.4574353+00:00", @@ -40703,11 +40703,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 40242, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1233 }" }, "fileCreated": "2025-06-21T09:31:00.460026+00:00", "fileLastModified": "2025-07-14T09:31:00.4600263+00:00", @@ -40736,11 +40736,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 78869, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1234 }" }, "fileCreated": "2025-06-21T09:31:00.4625478+00:00", "fileLastModified": "2025-07-14T09:31:00.4625481+00:00", @@ -40769,11 +40769,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 43261, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1235 }" }, "fileCreated": "2025-06-21T09:31:00.4656233+00:00", "fileLastModified": "2025-07-14T09:31:00.4656237+00:00", @@ -40802,11 +40802,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 29282, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1236 }" }, "fileCreated": "2025-06-21T09:31:00.4681146+00:00", "fileLastModified": "2025-07-14T09:31:00.4681149+00:00", @@ -40835,11 +40835,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 66539, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1237 }" }, "fileCreated": "2025-06-21T09:31:00.4706842+00:00", "fileLastModified": "2025-07-14T09:31:00.4706845+00:00", @@ -40868,11 +40868,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58260, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1238 }" }, "fileCreated": "2025-06-21T09:31:00.4731341+00:00", "fileLastModified": "2025-07-14T09:31:00.4731344+00:00", @@ -40901,11 +40901,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 40021, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1239 }" }, "fileCreated": "2025-06-21T09:31:00.475619+00:00", "fileLastModified": "2025-07-14T09:31:00.4756193+00:00", @@ -40934,11 +40934,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 46068, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1240 }" }, "fileCreated": "2025-06-21T09:31:00.477878+00:00", "fileLastModified": "2025-07-14T09:31:00.4778783+00:00", @@ -40967,11 +40967,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77021, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1241 }" }, "fileCreated": "2025-06-21T09:31:00.4808133+00:00", "fileLastModified": "2025-07-14T09:31:00.4808137+00:00", @@ -41000,11 +41000,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74128, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1242 }" }, "fileCreated": "2025-06-21T09:31:00.4837719+00:00", "fileLastModified": "2025-07-14T09:31:00.4837722+00:00", @@ -41033,11 +41033,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 65370, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1243 }" }, "fileCreated": "2025-06-21T09:31:00.4863009+00:00", "fileLastModified": "2025-07-14T09:31:00.4863012+00:00", @@ -41066,11 +41066,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73535, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1244 }" }, "fileCreated": "2025-06-21T09:31:00.4887704+00:00", "fileLastModified": "2025-07-14T09:31:00.4887706+00:00", @@ -41099,11 +41099,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 55942, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1245 }" }, "fileCreated": "2025-06-21T09:31:00.4913394+00:00", "fileLastModified": "2025-07-14T09:31:00.4913397+00:00", @@ -41132,11 +41132,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 75678, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1246 }" }, "fileCreated": "2025-06-21T09:31:00.4939858+00:00", "fileLastModified": "2025-07-14T09:31:00.4939861+00:00", @@ -41165,11 +41165,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 27702, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1247 }" }, "fileCreated": "2025-06-21T09:31:00.4969608+00:00", "fileLastModified": "2025-07-14T09:31:00.4969612+00:00", @@ -41198,11 +41198,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46704, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1248 }" }, "fileCreated": "2025-06-21T09:31:00.4997544+00:00", "fileLastModified": "2025-07-14T09:31:00.4997548+00:00", @@ -41231,11 +41231,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77070, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1249 }" }, "fileCreated": "2025-06-21T09:31:00.5026299+00:00", "fileLastModified": "2025-07-14T09:31:00.5026303+00:00", @@ -41264,11 +41264,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 74061, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1250 }" }, "fileCreated": "2025-06-21T09:31:00.5053469+00:00", "fileLastModified": "2025-07-14T09:31:00.5053473+00:00", @@ -41297,11 +41297,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33220, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1251 }" }, "fileCreated": "2025-06-21T09:31:00.5082181+00:00", "fileLastModified": "2025-07-14T09:31:00.5082185+00:00", @@ -41330,11 +41330,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 33737, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1252 }" }, "fileCreated": "2025-06-21T09:31:00.5110208+00:00", "fileLastModified": "2025-07-14T09:31:00.5110211+00:00", @@ -41363,11 +41363,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 95338, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1253 }" }, "fileCreated": "2025-06-21T09:31:00.5142178+00:00", "fileLastModified": "2025-07-14T09:31:00.5142183+00:00", @@ -41396,11 +41396,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 79321, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1254 }" }, "fileCreated": "2025-06-21T09:31:00.5168832+00:00", "fileLastModified": "2025-07-14T09:31:00.5168835+00:00", @@ -41429,11 +41429,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 29298, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1255 }" }, "fileCreated": "2025-06-21T09:31:00.5198008+00:00", "fileLastModified": "2025-07-14T09:31:00.5198011+00:00", @@ -41462,11 +41462,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91666, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1256 }" }, "fileCreated": "2025-06-21T09:31:00.5227508+00:00", "fileLastModified": "2025-07-14T09:31:00.5227512+00:00", @@ -41495,11 +41495,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53140, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1257 }" }, "fileCreated": "2025-06-21T09:31:00.5261084+00:00", "fileLastModified": "2025-07-14T09:31:00.5261087+00:00", @@ -41528,11 +41528,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 81172, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1258 }" }, "fileCreated": "2025-06-21T09:31:00.5295831+00:00", "fileLastModified": "2025-07-14T09:31:00.5295835+00:00", @@ -41561,11 +41561,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55334, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1259 }" }, "fileCreated": "2025-06-21T09:31:00.5329638+00:00", "fileLastModified": "2025-07-14T09:31:00.5329642+00:00", @@ -41594,11 +41594,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 21536, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1260 }" }, "fileCreated": "2025-06-21T09:31:00.5357894+00:00", "fileLastModified": "2025-07-14T09:31:00.5357902+00:00", @@ -41627,11 +41627,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 40134, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1261 }" }, "fileCreated": "2025-06-21T09:31:00.538682+00:00", "fileLastModified": "2025-07-14T09:31:00.5386823+00:00", @@ -41660,11 +41660,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28300, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1262 }" }, "fileCreated": "2025-06-21T09:31:00.5413561+00:00", "fileLastModified": "2025-07-14T09:31:00.5413564+00:00", @@ -41693,11 +41693,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 52651, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1263 }" }, "fileCreated": "2025-06-21T09:31:00.5452862+00:00", "fileLastModified": "2025-07-14T09:31:00.5452866+00:00", @@ -41726,11 +41726,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73977, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1264 }" }, "fileCreated": "2025-06-21T09:31:00.5487745+00:00", "fileLastModified": "2025-07-14T09:31:00.5487749+00:00", @@ -41759,11 +41759,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87706, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1265 }" }, "fileCreated": "2025-06-21T09:31:00.5519965+00:00", "fileLastModified": "2025-07-14T09:31:00.5519969+00:00", @@ -41792,11 +41792,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86289, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1266 }" }, "fileCreated": "2025-06-21T09:31:00.5548568+00:00", "fileLastModified": "2025-07-14T09:31:00.5548571+00:00", @@ -41825,11 +41825,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 92511, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1267 }" }, "fileCreated": "2025-06-21T09:31:00.5582336+00:00", "fileLastModified": "2025-07-14T09:31:00.558234+00:00", @@ -41858,11 +41858,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 48413, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1268 }" }, "fileCreated": "2025-06-21T09:31:00.5614614+00:00", "fileLastModified": "2025-07-14T09:31:00.5614618+00:00", @@ -41891,11 +41891,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98033, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1269 }" }, "fileCreated": "2025-06-21T09:31:00.5645581+00:00", "fileLastModified": "2025-07-14T09:31:00.5645585+00:00", @@ -41924,11 +41924,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 62475, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1270 }" }, "fileCreated": "2025-06-21T09:31:00.5672507+00:00", "fileLastModified": "2025-07-14T09:31:00.5672509+00:00", @@ -41957,11 +41957,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76554, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1271 }" }, "fileCreated": "2025-06-21T09:31:00.5702412+00:00", "fileLastModified": "2025-07-14T09:31:00.5702416+00:00", @@ -41990,11 +41990,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70096, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1272 }" }, "fileCreated": "2025-06-21T09:31:00.5730917+00:00", "fileLastModified": "2025-07-14T09:31:00.5730921+00:00", @@ -42023,11 +42023,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96323, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1273 }" }, "fileCreated": "2025-06-21T09:31:00.576561+00:00", "fileLastModified": "2025-07-14T09:31:00.5765615+00:00", @@ -42056,11 +42056,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 25851, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1274 }" }, "fileCreated": "2025-06-21T09:31:00.5804079+00:00", "fileLastModified": "2025-07-14T09:31:00.5804082+00:00", @@ -42089,11 +42089,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 46707, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1275 }" }, "fileCreated": "2025-06-21T09:31:00.5843961+00:00", "fileLastModified": "2025-07-14T09:31:00.5843966+00:00", @@ -42122,11 +42122,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35962, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1276 }" }, "fileCreated": "2025-06-21T09:31:00.5883606+00:00", "fileLastModified": "2025-07-14T09:31:00.588361+00:00", @@ -42155,11 +42155,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73522, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1277 }" }, "fileCreated": "2025-06-21T09:31:00.5927028+00:00", "fileLastModified": "2025-07-14T09:31:00.5927035+00:00", @@ -42188,11 +42188,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 87963, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1278 }" }, "fileCreated": "2025-06-21T09:31:00.5961446+00:00", "fileLastModified": "2025-07-14T09:31:00.596145+00:00", @@ -42221,11 +42221,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95722, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1279 }" }, "fileCreated": "2025-06-21T09:31:00.5996408+00:00", "fileLastModified": "2025-07-14T09:31:00.5996412+00:00", @@ -42254,11 +42254,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 51101, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1280 }" }, "fileCreated": "2025-06-21T09:31:00.6033373+00:00", "fileLastModified": "2025-07-14T09:31:00.6033377+00:00", @@ -42287,11 +42287,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 78261, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1281 }" }, "fileCreated": "2025-06-21T09:31:00.6080225+00:00", "fileLastModified": "2025-07-14T09:31:00.6080229+00:00", @@ -42320,11 +42320,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53707, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1282 }" }, "fileCreated": "2025-06-21T09:31:00.6115827+00:00", "fileLastModified": "2025-07-14T09:31:00.6115834+00:00", @@ -42353,11 +42353,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 58704, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1283 }" }, "fileCreated": "2025-06-21T09:31:00.6151167+00:00", "fileLastModified": "2025-07-14T09:31:00.6151171+00:00", @@ -42386,11 +42386,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34225, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1284 }" }, "fileCreated": "2025-06-21T09:31:00.618595+00:00", "fileLastModified": "2025-07-14T09:31:00.6185955+00:00", @@ -42419,11 +42419,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 54173, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1285 }" }, "fileCreated": "2025-06-21T09:31:00.6226747+00:00", "fileLastModified": "2025-07-14T09:31:00.6226751+00:00", @@ -42452,11 +42452,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 99223, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1286 }" }, "fileCreated": "2025-06-21T09:31:00.6264606+00:00", "fileLastModified": "2025-07-14T09:31:00.626461+00:00", @@ -42485,11 +42485,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 62004, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1287 }" }, "fileCreated": "2025-06-21T09:31:00.6299448+00:00", "fileLastModified": "2025-07-14T09:31:00.6299452+00:00", @@ -42518,11 +42518,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 22839, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1288 }" }, "fileCreated": "2025-06-21T09:31:00.633376+00:00", "fileLastModified": "2025-07-14T09:31:00.6333763+00:00", @@ -42551,11 +42551,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 25283, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1289 }" }, "fileCreated": "2025-06-21T09:31:00.6400075+00:00", "fileLastModified": "2025-07-14T09:31:00.6400079+00:00", @@ -42584,11 +42584,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60752, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1290 }" }, "fileCreated": "2025-06-21T09:31:00.6478951+00:00", "fileLastModified": "2025-07-14T09:31:00.6478956+00:00", @@ -42617,11 +42617,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96813, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1291 }" }, "fileCreated": "2025-06-21T09:31:00.6550236+00:00", "fileLastModified": "2025-07-14T09:31:00.655024+00:00", @@ -42650,11 +42650,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21250, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1292 }" }, "fileCreated": "2025-06-21T09:31:00.6614244+00:00", "fileLastModified": "2025-07-14T09:31:00.6614248+00:00", @@ -42683,11 +42683,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75377, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1293 }" }, "fileCreated": "2025-06-21T09:31:00.6685559+00:00", "fileLastModified": "2025-07-14T09:31:00.6685563+00:00", @@ -42716,11 +42716,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 51636, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1294 }" }, "fileCreated": "2025-06-21T09:31:00.6750232+00:00", "fileLastModified": "2025-07-14T09:31:00.6750237+00:00", @@ -42749,11 +42749,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46421, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1295 }" }, "fileCreated": "2025-06-21T09:31:00.6811408+00:00", "fileLastModified": "2025-07-14T09:31:00.6811412+00:00", @@ -42782,11 +42782,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68424, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1296 }" }, "fileCreated": "2025-06-21T09:31:00.687395+00:00", "fileLastModified": "2025-07-14T09:31:00.6873954+00:00", @@ -42815,11 +42815,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26338, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1297 }" }, "fileCreated": "2025-06-21T09:31:00.6937709+00:00", "fileLastModified": "2025-07-14T09:31:00.6937713+00:00", @@ -42848,11 +42848,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 62091, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1298 }" }, "fileCreated": "2025-06-21T09:31:00.7012058+00:00", "fileLastModified": "2025-07-14T09:31:00.7012062+00:00", @@ -42881,11 +42881,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 72689, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1299 }" }, "fileCreated": "2025-06-21T09:31:00.7079681+00:00", "fileLastModified": "2025-07-14T09:31:00.7079686+00:00", @@ -42914,11 +42914,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 46246, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1300 }" }, "fileCreated": "2025-06-21T09:31:00.7149977+00:00", "fileLastModified": "2025-07-14T09:31:00.7149987+00:00", @@ -42947,11 +42947,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 56152, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1301 }" }, "fileCreated": "2025-06-21T09:31:00.7211641+00:00", "fileLastModified": "2025-07-14T09:31:00.7211645+00:00", @@ -42980,11 +42980,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 66915, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1302 }" }, "fileCreated": "2025-06-21T09:31:00.7278346+00:00", "fileLastModified": "2025-07-14T09:31:00.727835+00:00", @@ -43013,11 +43013,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 87685, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1303 }" }, "fileCreated": "2025-06-21T09:31:00.734071+00:00", "fileLastModified": "2025-07-14T09:31:00.7340715+00:00", @@ -43046,11 +43046,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61602, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1304 }" }, "fileCreated": "2025-06-21T09:31:00.7404692+00:00", "fileLastModified": "2025-07-14T09:31:00.7404697+00:00", @@ -43079,11 +43079,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 43898, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1305 }" }, "fileCreated": "2025-06-21T09:31:00.7477196+00:00", "fileLastModified": "2025-07-14T09:31:00.7477201+00:00", @@ -43112,11 +43112,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83847, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1306 }" }, "fileCreated": "2025-06-21T09:31:00.7540693+00:00", "fileLastModified": "2025-07-14T09:31:00.7540703+00:00", @@ -43145,11 +43145,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96456, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1307 }" }, "fileCreated": "2025-06-21T09:31:00.7609063+00:00", "fileLastModified": "2025-07-14T09:31:00.7609071+00:00", @@ -43178,11 +43178,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98330, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1308 }" }, "fileCreated": "2025-06-21T09:31:00.7667748+00:00", "fileLastModified": "2025-07-14T09:31:00.7667753+00:00", @@ -43211,11 +43211,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 59426, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1309 }" }, "fileCreated": "2025-06-21T09:31:00.7728907+00:00", "fileLastModified": "2025-07-14T09:31:00.7728912+00:00", @@ -43244,11 +43244,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 98068, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1310 }" }, "fileCreated": "2025-06-21T09:31:00.779127+00:00", "fileLastModified": "2025-07-14T09:31:00.7791276+00:00", @@ -43277,11 +43277,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37194, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1311 }" }, "fileCreated": "2025-06-21T09:31:00.7850913+00:00", "fileLastModified": "2025-07-14T09:31:00.7850917+00:00", @@ -43310,11 +43310,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 98926, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1312 }" }, "fileCreated": "2025-06-21T09:31:00.7914644+00:00", "fileLastModified": "2025-07-14T09:31:00.7914651+00:00", @@ -43343,11 +43343,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 58255, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1313 }" }, "fileCreated": "2025-06-21T09:31:00.7974867+00:00", "fileLastModified": "2025-07-14T09:31:00.797487+00:00", @@ -43376,11 +43376,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37072, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1314 }" }, "fileCreated": "2025-06-21T09:31:00.8036916+00:00", "fileLastModified": "2025-07-14T09:31:00.8036928+00:00", @@ -43409,11 +43409,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 29999, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1315 }" }, "fileCreated": "2025-06-21T09:31:00.8106182+00:00", "fileLastModified": "2025-07-14T09:31:00.8106189+00:00", @@ -43442,11 +43442,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 96249, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1316 }" }, "fileCreated": "2025-06-21T09:31:00.8167433+00:00", "fileLastModified": "2025-07-14T09:31:00.8167438+00:00", @@ -43475,11 +43475,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82887, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1317 }" }, "fileCreated": "2025-06-21T09:31:00.8229027+00:00", "fileLastModified": "2025-07-14T09:31:00.8229034+00:00", @@ -43508,11 +43508,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 22761, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1318 }" }, "fileCreated": "2025-06-21T09:31:00.8290142+00:00", "fileLastModified": "2025-07-14T09:31:00.8290147+00:00", @@ -43541,11 +43541,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63709, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1319 }" }, "fileCreated": "2025-06-21T09:31:00.8359956+00:00", "fileLastModified": "2025-07-14T09:31:00.8359963+00:00", @@ -43574,11 +43574,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 42600, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1320 }" }, "fileCreated": "2025-06-21T09:31:00.8423398+00:00", "fileLastModified": "2025-07-14T09:31:00.8423403+00:00", @@ -43607,11 +43607,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 88438, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1321 }" }, "fileCreated": "2025-06-21T09:31:00.8487068+00:00", "fileLastModified": "2025-07-14T09:31:00.8487074+00:00", @@ -43640,11 +43640,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28325, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1322 }" }, "fileCreated": "2025-06-21T09:31:00.8555772+00:00", "fileLastModified": "2025-07-14T09:31:00.8555779+00:00", @@ -43673,11 +43673,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 21041, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1323 }" }, "fileCreated": "2025-06-21T09:31:00.8618194+00:00", "fileLastModified": "2025-07-14T09:31:00.8618199+00:00", @@ -43706,11 +43706,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91453, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1324 }" }, "fileCreated": "2025-06-21T09:31:00.8685746+00:00", "fileLastModified": "2025-07-14T09:31:00.8685759+00:00", @@ -43739,11 +43739,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 24356, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1325 }" }, "fileCreated": "2025-06-21T09:31:00.8749886+00:00", "fileLastModified": "2025-07-14T09:31:00.874989+00:00", @@ -43772,11 +43772,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 79542, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1326 }" }, "fileCreated": "2025-06-21T09:31:00.8817687+00:00", "fileLastModified": "2025-07-14T09:31:00.8817694+00:00", @@ -43805,11 +43805,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45601, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1327 }" }, "fileCreated": "2025-06-21T09:31:00.8879214+00:00", "fileLastModified": "2025-07-14T09:31:00.8879217+00:00", @@ -43838,11 +43838,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47193, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1328 }" }, "fileCreated": "2025-06-21T09:31:00.8939891+00:00", "fileLastModified": "2025-07-14T09:31:00.8939894+00:00", @@ -43871,11 +43871,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75547, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1329 }" }, "fileCreated": "2025-06-21T09:31:00.9003141+00:00", "fileLastModified": "2025-07-14T09:31:00.9003144+00:00", @@ -43904,11 +43904,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 54621, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1330 }" }, "fileCreated": "2025-06-21T09:31:00.9066579+00:00", "fileLastModified": "2025-07-14T09:31:00.9066583+00:00", @@ -43937,11 +43937,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 42791, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1331 }" }, "fileCreated": "2025-06-21T09:31:00.9131531+00:00", "fileLastModified": "2025-07-14T09:31:00.9131536+00:00", @@ -43970,11 +43970,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65639, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1332 }" }, "fileCreated": "2025-06-21T09:31:00.9196668+00:00", "fileLastModified": "2025-07-14T09:31:00.9196673+00:00", @@ -44003,11 +44003,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 57875, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1333 }" }, "fileCreated": "2025-06-21T09:31:00.9265241+00:00", "fileLastModified": "2025-07-14T09:31:00.9265245+00:00", @@ -44036,11 +44036,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53805, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1334 }" }, "fileCreated": "2025-06-21T09:31:00.9329865+00:00", "fileLastModified": "2025-07-14T09:31:00.932987+00:00", @@ -44069,11 +44069,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 49877, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1335 }" }, "fileCreated": "2025-06-21T09:31:00.9388692+00:00", "fileLastModified": "2025-07-14T09:31:00.9388696+00:00", @@ -44102,11 +44102,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 98724, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1336 }" }, "fileCreated": "2025-06-21T09:31:00.9451253+00:00", "fileLastModified": "2025-07-14T09:31:00.9451257+00:00", @@ -44135,11 +44135,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 84499, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1337 }" }, "fileCreated": "2025-06-21T09:31:00.9511663+00:00", "fileLastModified": "2025-07-14T09:31:00.9511672+00:00", @@ -44168,11 +44168,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90061, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1338 }" }, "fileCreated": "2025-06-21T09:31:00.9571792+00:00", "fileLastModified": "2025-07-14T09:31:00.9571795+00:00", @@ -44201,11 +44201,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95028, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1339 }" }, "fileCreated": "2025-06-21T09:31:00.9650394+00:00", "fileLastModified": "2025-07-14T09:31:00.9650399+00:00", @@ -44234,11 +44234,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 27155, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1340 }" }, "fileCreated": "2025-06-21T09:31:00.9713152+00:00", "fileLastModified": "2025-07-14T09:31:00.9713155+00:00", @@ -44267,11 +44267,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70033, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1341 }" }, "fileCreated": "2025-06-21T09:31:00.9778808+00:00", "fileLastModified": "2025-07-14T09:31:00.9778811+00:00", @@ -44300,11 +44300,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 94171, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1342 }" }, "fileCreated": "2025-06-21T09:31:00.9843777+00:00", "fileLastModified": "2025-07-14T09:31:00.9843782+00:00", @@ -44333,11 +44333,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73073, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1343 }" }, "fileCreated": "2025-06-21T09:31:00.9909537+00:00", "fileLastModified": "2025-07-14T09:31:00.9909542+00:00", @@ -44366,11 +44366,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 96007, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1344 }" }, "fileCreated": "2025-06-21T09:31:00.9976808+00:00", "fileLastModified": "2025-07-14T09:31:00.9976812+00:00", @@ -44399,11 +44399,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 99050, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1345 }" }, "fileCreated": "2025-06-21T09:31:01.0039176+00:00", "fileLastModified": "2025-07-14T09:31:01.0039178+00:00", @@ -44432,11 +44432,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87624, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1346 }" }, "fileCreated": "2025-06-21T09:31:01.0109863+00:00", "fileLastModified": "2025-07-14T09:31:01.0109866+00:00", @@ -44465,11 +44465,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 38385, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1347 }" }, "fileCreated": "2025-06-21T09:31:01.017382+00:00", "fileLastModified": "2025-07-14T09:31:01.0173822+00:00", @@ -44498,11 +44498,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71069, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1348 }" }, "fileCreated": "2025-06-21T09:31:01.0240124+00:00", "fileLastModified": "2025-07-14T09:31:01.0240127+00:00", @@ -44531,11 +44531,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 64096, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1349 }" }, "fileCreated": "2025-06-21T09:31:01.0303057+00:00", "fileLastModified": "2025-07-14T09:31:01.0303059+00:00", @@ -44564,11 +44564,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 44385, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1350 }" }, "fileCreated": "2025-06-21T09:31:01.0367036+00:00", "fileLastModified": "2025-07-14T09:31:01.036704+00:00", @@ -44597,11 +44597,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70315, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1351 }" }, "fileCreated": "2025-06-21T09:31:01.0430525+00:00", "fileLastModified": "2025-07-14T09:31:01.0430527+00:00", @@ -44630,11 +44630,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67288, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1352 }" }, "fileCreated": "2025-06-21T09:31:01.0493824+00:00", "fileLastModified": "2025-07-14T09:31:01.0493827+00:00", @@ -44663,11 +44663,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94684, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1353 }" }, "fileCreated": "2025-06-21T09:31:01.0564162+00:00", "fileLastModified": "2025-07-14T09:31:01.0564165+00:00", @@ -44696,11 +44696,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97445, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1354 }" }, "fileCreated": "2025-06-21T09:31:01.0629936+00:00", "fileLastModified": "2025-07-14T09:31:01.0629939+00:00", @@ -44729,11 +44729,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 43077, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1355 }" }, "fileCreated": "2025-06-21T09:31:01.0699866+00:00", "fileLastModified": "2025-07-14T09:31:01.069987+00:00", @@ -44762,11 +44762,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50856, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1356 }" }, "fileCreated": "2025-06-21T09:31:01.0763355+00:00", "fileLastModified": "2025-07-14T09:31:01.0763358+00:00", @@ -44795,11 +44795,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73166, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1357 }" }, "fileCreated": "2025-06-21T09:31:01.0827191+00:00", "fileLastModified": "2025-07-14T09:31:01.0827194+00:00", @@ -44828,11 +44828,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 79199, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1358 }" }, "fileCreated": "2025-06-21T09:31:01.0895562+00:00", "fileLastModified": "2025-07-14T09:31:01.0895565+00:00", @@ -44861,11 +44861,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 21039, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1359 }" }, "fileCreated": "2025-06-21T09:31:01.095941+00:00", "fileLastModified": "2025-07-14T09:31:01.0959413+00:00", @@ -44894,11 +44894,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 95585, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1360 }" }, "fileCreated": "2025-06-21T09:31:01.1055431+00:00", "fileLastModified": "2025-07-14T09:31:01.1055438+00:00", @@ -44927,11 +44927,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95530, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1361 }" }, "fileCreated": "2025-06-21T09:31:01.1172077+00:00", "fileLastModified": "2025-07-14T09:31:01.1172089+00:00", @@ -44960,11 +44960,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 40918, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1362 }" }, "fileCreated": "2025-06-21T09:31:01.1273965+00:00", "fileLastModified": "2025-07-14T09:31:01.1273972+00:00", @@ -44993,11 +44993,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82293, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1363 }" }, "fileCreated": "2025-06-21T09:31:01.1376995+00:00", "fileLastModified": "2025-07-14T09:31:01.1377001+00:00", @@ -45026,11 +45026,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 89448, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1364 }" }, "fileCreated": "2025-06-21T09:31:01.1451671+00:00", "fileLastModified": "2025-07-14T09:31:01.1451677+00:00", @@ -45059,11 +45059,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 52508, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1365 }" }, "fileCreated": "2025-06-21T09:31:01.1523373+00:00", "fileLastModified": "2025-07-14T09:31:01.1523379+00:00", @@ -45092,11 +45092,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53526, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1366 }" }, "fileCreated": "2025-06-21T09:31:01.1591606+00:00", "fileLastModified": "2025-07-14T09:31:01.1591612+00:00", @@ -45125,11 +45125,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55286, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1367 }" }, "fileCreated": "2025-06-21T09:31:01.1667656+00:00", "fileLastModified": "2025-07-14T09:31:01.1667661+00:00", @@ -45158,11 +45158,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 42783, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1368 }" }, "fileCreated": "2025-06-21T09:31:01.1740262+00:00", "fileLastModified": "2025-07-14T09:31:01.1740269+00:00", @@ -45191,11 +45191,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 92637, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1369 }" }, "fileCreated": "2025-06-21T09:31:01.1811755+00:00", "fileLastModified": "2025-07-14T09:31:01.1811762+00:00", @@ -45224,11 +45224,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 52263, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1370 }" }, "fileCreated": "2025-06-21T09:31:01.1885064+00:00", "fileLastModified": "2025-07-14T09:31:01.188507+00:00", @@ -45257,11 +45257,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94368, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1371 }" }, "fileCreated": "2025-06-21T09:31:01.1963135+00:00", "fileLastModified": "2025-07-14T09:31:01.1963141+00:00", @@ -45290,11 +45290,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 34598, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1372 }" }, "fileCreated": "2025-06-21T09:31:01.2037873+00:00", "fileLastModified": "2025-07-14T09:31:01.203788+00:00", @@ -45323,11 +45323,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 41523, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1373 }" }, "fileCreated": "2025-06-21T09:31:01.2111224+00:00", "fileLastModified": "2025-07-14T09:31:01.211123+00:00", @@ -45356,11 +45356,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 55529, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1374 }" }, "fileCreated": "2025-06-21T09:31:01.2183841+00:00", "fileLastModified": "2025-07-14T09:31:01.2183847+00:00", @@ -45389,11 +45389,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 92592, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1375 }" }, "fileCreated": "2025-06-21T09:31:01.2258464+00:00", "fileLastModified": "2025-07-14T09:31:01.2258471+00:00", @@ -45422,11 +45422,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85022, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1376 }" }, "fileCreated": "2025-06-21T09:31:01.2330868+00:00", "fileLastModified": "2025-07-14T09:31:01.2330874+00:00", @@ -45455,11 +45455,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 78182, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1377 }" }, "fileCreated": "2025-06-21T09:31:01.2407248+00:00", "fileLastModified": "2025-07-14T09:31:01.2407257+00:00", @@ -45488,11 +45488,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24232, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1378 }" }, "fileCreated": "2025-06-21T09:31:01.2489588+00:00", "fileLastModified": "2025-07-14T09:31:01.2489595+00:00", @@ -45521,11 +45521,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 71976, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1379 }" }, "fileCreated": "2025-06-21T09:31:01.2592287+00:00", "fileLastModified": "2025-07-14T09:31:01.2592294+00:00", @@ -45554,11 +45554,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 53852, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1380 }" }, "fileCreated": "2025-06-21T09:31:01.2672748+00:00", "fileLastModified": "2025-07-14T09:31:01.2672754+00:00", @@ -45587,11 +45587,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96472, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1381 }" }, "fileCreated": "2025-06-21T09:31:01.277635+00:00", "fileLastModified": "2025-07-14T09:31:01.2776357+00:00", @@ -45620,11 +45620,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 46980, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1382 }" }, "fileCreated": "2025-06-21T09:31:01.2857745+00:00", "fileLastModified": "2025-07-14T09:31:01.2857753+00:00", @@ -45653,11 +45653,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 79064, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1383 }" }, "fileCreated": "2025-06-21T09:31:01.2938005+00:00", "fileLastModified": "2025-07-14T09:31:01.2938015+00:00", @@ -45686,11 +45686,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85122, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1384 }" }, "fileCreated": "2025-06-21T09:31:01.3022229+00:00", "fileLastModified": "2025-07-14T09:31:01.3022237+00:00", @@ -45719,11 +45719,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 35894, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1385 }" }, "fileCreated": "2025-06-21T09:31:01.310004+00:00", "fileLastModified": "2025-07-14T09:31:01.3100045+00:00", @@ -45752,11 +45752,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 64094, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1386 }" }, "fileCreated": "2025-06-21T09:31:01.317796+00:00", "fileLastModified": "2025-07-14T09:31:01.3177965+00:00", @@ -45785,11 +45785,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 60341, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1387 }" }, "fileCreated": "2025-06-21T09:31:01.3260415+00:00", "fileLastModified": "2025-07-14T09:31:01.3260566+00:00", @@ -45818,11 +45818,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 84562, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1388 }" }, "fileCreated": "2025-06-21T09:31:01.3337059+00:00", "fileLastModified": "2025-07-14T09:31:01.3337067+00:00", @@ -45851,11 +45851,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46817, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1389 }" }, "fileCreated": "2025-06-21T09:31:01.3406802+00:00", "fileLastModified": "2025-07-14T09:31:01.3406809+00:00", @@ -45884,11 +45884,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 51460, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1390 }" }, "fileCreated": "2025-06-21T09:31:01.3478627+00:00", "fileLastModified": "2025-07-14T09:31:01.347863+00:00", @@ -45917,11 +45917,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22159, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1391 }" }, "fileCreated": "2025-06-21T09:31:01.3566863+00:00", "fileLastModified": "2025-07-14T09:31:01.3566868+00:00", @@ -45950,11 +45950,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66082, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1392 }" }, "fileCreated": "2025-06-21T09:31:01.3638228+00:00", "fileLastModified": "2025-07-14T09:31:01.3638232+00:00", @@ -45983,11 +45983,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 36568, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1393 }" }, "fileCreated": "2025-06-21T09:31:01.3710244+00:00", "fileLastModified": "2025-07-14T09:31:01.3710247+00:00", @@ -46016,11 +46016,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 23549, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1394 }" }, "fileCreated": "2025-06-21T09:31:01.3784492+00:00", "fileLastModified": "2025-07-14T09:31:01.3784497+00:00", @@ -46049,11 +46049,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 63287, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1395 }" }, "fileCreated": "2025-06-21T09:31:01.3860917+00:00", "fileLastModified": "2025-07-14T09:31:01.3860921+00:00", @@ -46082,11 +46082,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 39374, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1396 }" }, "fileCreated": "2025-06-21T09:31:01.393003+00:00", "fileLastModified": "2025-07-14T09:31:01.3930033+00:00", @@ -46115,11 +46115,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 67055, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1397 }" }, "fileCreated": "2025-06-21T09:31:01.4004417+00:00", "fileLastModified": "2025-07-14T09:31:01.4004422+00:00", @@ -46148,11 +46148,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 26828, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1398 }" }, "fileCreated": "2025-06-21T09:31:01.4074621+00:00", "fileLastModified": "2025-07-14T09:31:01.4074624+00:00", @@ -46181,11 +46181,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79712, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1399 }" }, "fileCreated": "2025-06-21T09:31:01.4146444+00:00", "fileLastModified": "2025-07-14T09:31:01.4146448+00:00", @@ -46214,11 +46214,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 27955, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1400 }" }, "fileCreated": "2025-06-21T09:31:01.4216345+00:00", "fileLastModified": "2025-07-14T09:31:01.4216348+00:00", @@ -46247,11 +46247,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43869, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1401 }" }, "fileCreated": "2025-06-21T09:31:01.4292188+00:00", "fileLastModified": "2025-07-14T09:31:01.4292193+00:00", @@ -46280,11 +46280,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41227, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1402 }" }, "fileCreated": "2025-06-21T09:31:01.436503+00:00", "fileLastModified": "2025-07-14T09:31:01.4365034+00:00", @@ -46313,11 +46313,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59954, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1403 }" }, "fileCreated": "2025-06-21T09:31:01.444766+00:00", "fileLastModified": "2025-07-14T09:31:01.444767+00:00", @@ -46346,11 +46346,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 72590, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1404 }" }, "fileCreated": "2025-06-21T09:31:01.4521363+00:00", "fileLastModified": "2025-07-14T09:31:01.4521367+00:00", @@ -46379,11 +46379,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 77335, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1405 }" }, "fileCreated": "2025-06-21T09:31:01.4604837+00:00", "fileLastModified": "2025-07-14T09:31:01.4604842+00:00", @@ -46412,11 +46412,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70987, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1406 }" }, "fileCreated": "2025-06-21T09:31:01.468035+00:00", "fileLastModified": "2025-07-14T09:31:01.4680353+00:00", @@ -46445,11 +46445,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 66135, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1407 }" }, "fileCreated": "2025-06-21T09:31:01.4758509+00:00", "fileLastModified": "2025-07-14T09:31:01.4758514+00:00", @@ -46478,11 +46478,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58312, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1408 }" }, "fileCreated": "2025-06-21T09:31:01.4841045+00:00", "fileLastModified": "2025-07-14T09:31:01.4841052+00:00", @@ -46511,11 +46511,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23328, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1409 }" }, "fileCreated": "2025-06-21T09:31:01.491971+00:00", "fileLastModified": "2025-07-14T09:31:01.4919713+00:00", @@ -46544,11 +46544,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 72983, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1410 }" }, "fileCreated": "2025-06-21T09:31:01.4993854+00:00", "fileLastModified": "2025-07-14T09:31:01.4993856+00:00", @@ -46577,11 +46577,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 32284, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1411 }" }, "fileCreated": "2025-06-21T09:31:01.5075583+00:00", "fileLastModified": "2025-07-14T09:31:01.5075587+00:00", @@ -46610,11 +46610,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21799, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1412 }" }, "fileCreated": "2025-06-21T09:31:01.5147918+00:00", "fileLastModified": "2025-07-14T09:31:01.514792+00:00", @@ -46643,11 +46643,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75943, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1413 }" }, "fileCreated": "2025-06-21T09:31:01.5221819+00:00", "fileLastModified": "2025-07-14T09:31:01.5221822+00:00", @@ -46676,11 +46676,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 64171, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1414 }" }, "fileCreated": "2025-06-21T09:31:01.52817+00:00", "fileLastModified": "2025-07-14T09:31:01.5281702+00:00", @@ -46709,11 +46709,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34957, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1415 }" }, "fileCreated": "2025-06-21T09:31:01.5320539+00:00", "fileLastModified": "2025-07-14T09:31:01.5320541+00:00", @@ -46742,11 +46742,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44692, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1416 }" }, "fileCreated": "2025-06-21T09:31:01.536109+00:00", "fileLastModified": "2025-07-14T09:31:01.5361092+00:00", @@ -46775,11 +46775,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 98244, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1417 }" }, "fileCreated": "2025-06-21T09:31:01.5389153+00:00", "fileLastModified": "2025-07-14T09:31:01.5389155+00:00", @@ -46808,11 +46808,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82713, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1418 }" }, "fileCreated": "2025-06-21T09:31:01.5413219+00:00", "fileLastModified": "2025-07-14T09:31:01.5413221+00:00", @@ -46841,11 +46841,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 52509, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1419 }" }, "fileCreated": "2025-06-21T09:31:01.5438095+00:00", "fileLastModified": "2025-07-14T09:31:01.5438097+00:00", @@ -46874,11 +46874,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 75502, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1420 }" }, "fileCreated": "2025-06-21T09:31:01.5460528+00:00", "fileLastModified": "2025-07-14T09:31:01.5460531+00:00", @@ -46907,11 +46907,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 41048, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1421 }" }, "fileCreated": "2025-06-21T09:31:01.5484207+00:00", "fileLastModified": "2025-07-14T09:31:01.5484209+00:00", @@ -46940,11 +46940,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66113, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1422 }" }, "fileCreated": "2025-06-21T09:31:01.551342+00:00", "fileLastModified": "2025-07-14T09:31:01.5513423+00:00", @@ -46973,11 +46973,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 91544, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1423 }" }, "fileCreated": "2025-06-21T09:31:01.5538396+00:00", "fileLastModified": "2025-07-14T09:31:01.5538398+00:00", @@ -47006,11 +47006,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 96863, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1424 }" }, "fileCreated": "2025-06-21T09:31:01.5560157+00:00", "fileLastModified": "2025-07-14T09:31:01.5560159+00:00", @@ -47039,11 +47039,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88370, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1425 }" }, "fileCreated": "2025-06-21T09:31:01.5582017+00:00", "fileLastModified": "2025-07-14T09:31:01.5582019+00:00", @@ -47072,11 +47072,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28061, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1426 }" }, "fileCreated": "2025-06-21T09:31:01.560301+00:00", "fileLastModified": "2025-07-14T09:31:01.5603013+00:00", @@ -47105,11 +47105,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 28632, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1427 }" }, "fileCreated": "2025-06-21T09:31:01.5629036+00:00", "fileLastModified": "2025-07-14T09:31:01.5629039+00:00", @@ -47138,11 +47138,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46951, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1428 }" }, "fileCreated": "2025-06-21T09:31:01.5647476+00:00", "fileLastModified": "2025-07-14T09:31:01.5647479+00:00", @@ -47171,11 +47171,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 73762, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1429 }" }, "fileCreated": "2025-06-21T09:31:01.5672633+00:00", "fileLastModified": "2025-07-14T09:31:01.5672636+00:00", @@ -47204,11 +47204,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 57355, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1430 }" }, "fileCreated": "2025-06-21T09:31:01.5689894+00:00", "fileLastModified": "2025-07-14T09:31:01.5689897+00:00", @@ -47237,11 +47237,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 35221, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1431 }" }, "fileCreated": "2025-06-21T09:31:01.5707237+00:00", "fileLastModified": "2025-07-14T09:31:01.5707239+00:00", @@ -47270,11 +47270,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 89723, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1432 }" }, "fileCreated": "2025-06-21T09:31:01.5722618+00:00", "fileLastModified": "2025-07-14T09:31:01.5722621+00:00", @@ -47303,11 +47303,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 90443, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1433 }" }, "fileCreated": "2025-06-21T09:31:01.5738131+00:00", "fileLastModified": "2025-07-14T09:31:01.5738133+00:00", @@ -47336,11 +47336,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64501, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1434 }" }, "fileCreated": "2025-06-21T09:31:01.5753478+00:00", "fileLastModified": "2025-07-14T09:31:01.575348+00:00", @@ -47369,11 +47369,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 98409, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1435 }" }, "fileCreated": "2025-06-21T09:31:01.57695+00:00", "fileLastModified": "2025-07-14T09:31:01.5769502+00:00", @@ -47402,11 +47402,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 81603, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1436 }" }, "fileCreated": "2025-06-21T09:31:01.5784368+00:00", "fileLastModified": "2025-07-14T09:31:01.5784371+00:00", @@ -47435,11 +47435,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23230, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1437 }" }, "fileCreated": "2025-06-21T09:31:01.580545+00:00", "fileLastModified": "2025-07-14T09:31:01.5805452+00:00", @@ -47468,11 +47468,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91654, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1438 }" }, "fileCreated": "2025-06-21T09:31:01.5827306+00:00", "fileLastModified": "2025-07-14T09:31:01.5827312+00:00", @@ -47501,11 +47501,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 67962, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1439 }" }, "fileCreated": "2025-06-21T09:31:01.5847654+00:00", "fileLastModified": "2025-07-14T09:31:01.5847656+00:00", @@ -47534,11 +47534,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 62841, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1440 }" }, "fileCreated": "2025-06-21T09:31:01.5864032+00:00", "fileLastModified": "2025-07-14T09:31:01.5864035+00:00", @@ -47567,11 +47567,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 66661, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1441 }" }, "fileCreated": "2025-06-21T09:31:01.5879164+00:00", "fileLastModified": "2025-07-14T09:31:01.5879166+00:00", @@ -47600,11 +47600,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 25192, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1442 }" }, "fileCreated": "2025-06-21T09:31:01.5894467+00:00", "fileLastModified": "2025-07-14T09:31:01.589447+00:00", @@ -47633,11 +47633,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 32151, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1443 }" }, "fileCreated": "2025-06-21T09:31:01.5909151+00:00", "fileLastModified": "2025-07-14T09:31:01.5909153+00:00", @@ -47666,11 +47666,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 77305, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1444 }" }, "fileCreated": "2025-06-21T09:31:01.592378+00:00", "fileLastModified": "2025-07-14T09:31:01.5923782+00:00", @@ -47699,11 +47699,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 24944, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1445 }" }, "fileCreated": "2025-06-21T09:31:01.5937682+00:00", "fileLastModified": "2025-07-14T09:31:01.5937684+00:00", @@ -47732,11 +47732,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53561, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1446 }" }, "fileCreated": "2025-06-21T09:31:01.5952403+00:00", "fileLastModified": "2025-07-14T09:31:01.5952405+00:00", @@ -47765,11 +47765,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 91238, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1447 }" }, "fileCreated": "2025-06-21T09:31:01.5972747+00:00", "fileLastModified": "2025-07-14T09:31:01.5972749+00:00", @@ -47798,11 +47798,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83432, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1448 }" }, "fileCreated": "2025-06-21T09:31:01.5999728+00:00", "fileLastModified": "2025-07-14T09:31:01.5999731+00:00", @@ -47831,11 +47831,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 66105, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1449 }" }, "fileCreated": "2025-06-21T09:31:01.6021953+00:00", "fileLastModified": "2025-07-14T09:31:01.6021956+00:00", @@ -47864,11 +47864,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 51642, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1450 }" }, "fileCreated": "2025-06-21T09:31:01.6041334+00:00", "fileLastModified": "2025-07-14T09:31:01.6041336+00:00", @@ -47897,11 +47897,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33508, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1451 }" }, "fileCreated": "2025-06-21T09:31:01.6059386+00:00", "fileLastModified": "2025-07-14T09:31:01.6059388+00:00", @@ -47930,11 +47930,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 30135, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1452 }" }, "fileCreated": "2025-06-21T09:31:01.6077617+00:00", "fileLastModified": "2025-07-14T09:31:01.6077621+00:00", @@ -47963,11 +47963,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 49457, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1453 }" }, "fileCreated": "2025-06-21T09:31:01.6095624+00:00", "fileLastModified": "2025-07-14T09:31:01.6095626+00:00", @@ -47996,11 +47996,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 29979, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1454 }" }, "fileCreated": "2025-06-21T09:31:01.6112021+00:00", "fileLastModified": "2025-07-14T09:31:01.6112024+00:00", @@ -48029,11 +48029,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 93279, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1455 }" }, "fileCreated": "2025-06-21T09:31:01.6128519+00:00", "fileLastModified": "2025-07-14T09:31:01.6128524+00:00", @@ -48062,11 +48062,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 22352, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1456 }" }, "fileCreated": "2025-06-21T09:31:01.6153861+00:00", "fileLastModified": "2025-07-14T09:31:01.6153863+00:00", @@ -48095,11 +48095,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 74801, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1457 }" }, "fileCreated": "2025-06-21T09:31:01.6177618+00:00", "fileLastModified": "2025-07-14T09:31:01.617762+00:00", @@ -48128,11 +48128,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31348, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1458 }" }, "fileCreated": "2025-06-21T09:31:01.6194188+00:00", "fileLastModified": "2025-07-14T09:31:01.619419+00:00", @@ -48161,11 +48161,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59184, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1459 }" }, "fileCreated": "2025-06-21T09:31:01.6210414+00:00", "fileLastModified": "2025-07-14T09:31:01.6210416+00:00", @@ -48194,11 +48194,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23407, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1460 }" }, "fileCreated": "2025-06-21T09:31:01.6226358+00:00", "fileLastModified": "2025-07-14T09:31:01.622636+00:00", @@ -48227,11 +48227,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65806, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1461 }" }, "fileCreated": "2025-06-21T09:31:01.6242313+00:00", "fileLastModified": "2025-07-14T09:31:01.6242316+00:00", @@ -48260,11 +48260,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58126, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1462 }" }, "fileCreated": "2025-06-21T09:31:01.6257984+00:00", "fileLastModified": "2025-07-14T09:31:01.6257986+00:00", @@ -48293,11 +48293,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 52422, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1463 }" }, "fileCreated": "2025-06-21T09:31:01.6277565+00:00", "fileLastModified": "2025-07-14T09:31:01.6277568+00:00", @@ -48326,11 +48326,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68061, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1464 }" }, "fileCreated": "2025-06-21T09:31:01.6299199+00:00", "fileLastModified": "2025-07-14T09:31:01.6299201+00:00", @@ -48359,11 +48359,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 63921, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1465 }" }, "fileCreated": "2025-06-21T09:31:01.6317487+00:00", "fileLastModified": "2025-07-14T09:31:01.631749+00:00", @@ -48392,11 +48392,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 24089, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1466 }" }, "fileCreated": "2025-06-21T09:31:01.6334092+00:00", "fileLastModified": "2025-07-14T09:31:01.6334094+00:00", @@ -48425,11 +48425,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 24038, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1467 }" }, "fileCreated": "2025-06-21T09:31:01.6354106+00:00", "fileLastModified": "2025-07-14T09:31:01.6354108+00:00", @@ -48458,11 +48458,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 77201, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1468 }" }, "fileCreated": "2025-06-21T09:31:01.6369199+00:00", "fileLastModified": "2025-07-14T09:31:01.6369202+00:00", @@ -48491,11 +48491,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 49672, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1469 }" }, "fileCreated": "2025-06-21T09:31:01.6384288+00:00", "fileLastModified": "2025-07-14T09:31:01.638429+00:00", @@ -48524,11 +48524,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 50399, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1470 }" }, "fileCreated": "2025-06-21T09:31:01.6401739+00:00", "fileLastModified": "2025-07-14T09:31:01.6401741+00:00", @@ -48557,11 +48557,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 78860, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1471 }" }, "fileCreated": "2025-06-21T09:31:01.6417462+00:00", "fileLastModified": "2025-07-14T09:31:01.6417464+00:00", @@ -48590,11 +48590,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 29518, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1472 }" }, "fileCreated": "2025-06-21T09:31:01.6433056+00:00", "fileLastModified": "2025-07-14T09:31:01.6433058+00:00", @@ -48623,11 +48623,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 57318, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1473 }" }, "fileCreated": "2025-06-21T09:31:01.6454309+00:00", "fileLastModified": "2025-07-14T09:31:01.6454311+00:00", @@ -48656,11 +48656,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71255, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1474 }" }, "fileCreated": "2025-06-21T09:31:01.6473351+00:00", "fileLastModified": "2025-07-14T09:31:01.6473353+00:00", @@ -48689,11 +48689,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 91922, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1475 }" }, "fileCreated": "2025-06-21T09:31:01.6492089+00:00", "fileLastModified": "2025-07-14T09:31:01.6492091+00:00", @@ -48722,11 +48722,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 24721, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1476 }" }, "fileCreated": "2025-06-21T09:31:01.6507751+00:00", "fileLastModified": "2025-07-14T09:31:01.6507754+00:00", @@ -48755,11 +48755,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 53514, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1477 }" }, "fileCreated": "2025-06-21T09:31:01.6530565+00:00", "fileLastModified": "2025-07-14T09:31:01.6530568+00:00", @@ -48788,11 +48788,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 98674, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1478 }" }, "fileCreated": "2025-06-21T09:31:01.6546689+00:00", "fileLastModified": "2025-07-14T09:31:01.6546691+00:00", @@ -48821,11 +48821,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 55991, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1479 }" }, "fileCreated": "2025-06-21T09:31:01.6563685+00:00", "fileLastModified": "2025-07-14T09:31:01.6563687+00:00", @@ -48854,11 +48854,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 73987, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1480 }" }, "fileCreated": "2025-06-21T09:31:01.6579806+00:00", "fileLastModified": "2025-07-14T09:31:01.6579808+00:00", @@ -48887,11 +48887,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 54514, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1481 }" }, "fileCreated": "2025-06-21T09:31:01.659763+00:00", "fileLastModified": "2025-07-14T09:31:01.6597635+00:00", @@ -48920,11 +48920,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92581, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1482 }" }, "fileCreated": "2025-06-21T09:31:01.6620878+00:00", "fileLastModified": "2025-07-14T09:31:01.662088+00:00", @@ -48953,11 +48953,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 70584, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1483 }" }, "fileCreated": "2025-06-21T09:31:01.6637376+00:00", "fileLastModified": "2025-07-14T09:31:01.6637378+00:00", @@ -48986,11 +48986,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 73970, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1484 }" }, "fileCreated": "2025-06-21T09:31:01.6652896+00:00", "fileLastModified": "2025-07-14T09:31:01.6652898+00:00", @@ -49019,11 +49019,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 91019, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1485 }" }, "fileCreated": "2025-06-21T09:31:01.6667807+00:00", "fileLastModified": "2025-07-14T09:31:01.666781+00:00", @@ -49052,11 +49052,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40563, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1486 }" }, "fileCreated": "2025-06-21T09:31:01.6689738+00:00", "fileLastModified": "2025-07-14T09:31:01.668974+00:00", @@ -49085,11 +49085,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 43233, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1487 }" }, "fileCreated": "2025-06-21T09:31:01.670644+00:00", "fileLastModified": "2025-07-14T09:31:01.6706442+00:00", @@ -49118,11 +49118,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76457, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1488 }" }, "fileCreated": "2025-06-21T09:31:01.6722689+00:00", "fileLastModified": "2025-07-14T09:31:01.6722692+00:00", @@ -49151,11 +49151,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 65232, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1489 }" }, "fileCreated": "2025-06-21T09:31:01.6739496+00:00", "fileLastModified": "2025-07-14T09:31:01.6739499+00:00", @@ -49184,11 +49184,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 36187, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1490 }" }, "fileCreated": "2025-06-21T09:31:01.676358+00:00", "fileLastModified": "2025-07-14T09:31:01.6763583+00:00", @@ -49217,11 +49217,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 31169, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1491 }" }, "fileCreated": "2025-06-21T09:31:01.6782847+00:00", "fileLastModified": "2025-07-14T09:31:01.6782851+00:00", @@ -49250,11 +49250,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 32459, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1492 }" }, "fileCreated": "2025-06-21T09:31:01.6800053+00:00", "fileLastModified": "2025-07-14T09:31:01.6800056+00:00", @@ -49283,11 +49283,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63346, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1493 }" }, "fileCreated": "2025-06-21T09:31:01.6816916+00:00", "fileLastModified": "2025-07-14T09:31:01.6816922+00:00", @@ -49316,11 +49316,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 85687, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1494 }" }, "fileCreated": "2025-06-21T09:31:01.6833585+00:00", "fileLastModified": "2025-07-14T09:31:01.6833587+00:00", @@ -49349,11 +49349,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 48160, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1495 }" }, "fileCreated": "2025-06-21T09:31:01.6852303+00:00", "fileLastModified": "2025-07-14T09:31:01.6852305+00:00", @@ -49382,11 +49382,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 89282, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1496 }" }, "fileCreated": "2025-06-21T09:31:01.6876058+00:00", "fileLastModified": "2025-07-14T09:31:01.6876061+00:00", @@ -49415,11 +49415,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 99784, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1497 }" }, "fileCreated": "2025-06-21T09:31:01.6893584+00:00", "fileLastModified": "2025-07-14T09:31:01.6893587+00:00", @@ -49448,11 +49448,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 41710, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1498 }" }, "fileCreated": "2025-06-21T09:31:01.6916565+00:00", "fileLastModified": "2025-07-14T09:31:01.6916567+00:00", @@ -49481,11 +49481,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 30355, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1499 }" }, "fileCreated": "2025-06-21T09:31:01.6934837+00:00", "fileLastModified": "2025-07-14T09:31:01.6934839+00:00", @@ -49514,11 +49514,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88804, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1500 }" }, "fileCreated": "2025-06-21T09:31:01.695312+00:00", "fileLastModified": "2025-07-14T09:31:01.6953123+00:00", @@ -49547,11 +49547,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 84739, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1501 }" }, "fileCreated": "2025-06-21T09:31:01.6972476+00:00", "fileLastModified": "2025-07-14T09:31:01.6972479+00:00", @@ -49580,11 +49580,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 30987, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1502 }" }, "fileCreated": "2025-06-21T09:31:01.699312+00:00", "fileLastModified": "2025-07-14T09:31:01.6993122+00:00", @@ -49613,11 +49613,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53580, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1503 }" }, "fileCreated": "2025-06-21T09:31:01.7012502+00:00", "fileLastModified": "2025-07-14T09:31:01.7012504+00:00", @@ -49646,11 +49646,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 75135, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1504 }" }, "fileCreated": "2025-06-21T09:31:01.7030607+00:00", "fileLastModified": "2025-07-14T09:31:01.7030609+00:00", @@ -49679,11 +49679,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 34989, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1505 }" }, "fileCreated": "2025-06-21T09:31:01.7053357+00:00", "fileLastModified": "2025-07-14T09:31:01.7053359+00:00", @@ -49712,11 +49712,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44618, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1506 }" }, "fileCreated": "2025-06-21T09:31:01.7072566+00:00", "fileLastModified": "2025-07-14T09:31:01.7072568+00:00", @@ -49745,11 +49745,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 72684, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1507 }" }, "fileCreated": "2025-06-21T09:31:01.7090416+00:00", "fileLastModified": "2025-07-14T09:31:01.7090419+00:00", @@ -49778,11 +49778,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 61262, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1508 }" }, "fileCreated": "2025-06-21T09:31:01.7107631+00:00", "fileLastModified": "2025-07-14T09:31:01.7107634+00:00", @@ -49811,11 +49811,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94245, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1509 }" }, "fileCreated": "2025-06-21T09:31:01.7125827+00:00", "fileLastModified": "2025-07-14T09:31:01.7125831+00:00", @@ -49844,11 +49844,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 69019, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1510 }" }, "fileCreated": "2025-06-21T09:31:01.7143091+00:00", "fileLastModified": "2025-07-14T09:31:01.7143094+00:00", @@ -49877,11 +49877,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 77035, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1511 }" }, "fileCreated": "2025-06-21T09:31:01.7161602+00:00", "fileLastModified": "2025-07-14T09:31:01.7161604+00:00", @@ -49910,11 +49910,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87774, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1512 }" }, "fileCreated": "2025-06-21T09:31:01.717825+00:00", "fileLastModified": "2025-07-14T09:31:01.7178253+00:00", @@ -49943,11 +49943,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 84838, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1513 }" }, "fileCreated": "2025-06-21T09:31:01.7194565+00:00", "fileLastModified": "2025-07-14T09:31:01.7194567+00:00", @@ -49976,11 +49976,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80760, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1514 }" }, "fileCreated": "2025-06-21T09:31:01.7220051+00:00", "fileLastModified": "2025-07-14T09:31:01.7220052+00:00", @@ -50009,11 +50009,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 71760, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1515 }" }, "fileCreated": "2025-06-21T09:31:01.7235281+00:00", "fileLastModified": "2025-07-14T09:31:01.7235283+00:00", @@ -50042,11 +50042,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40298, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1516 }" }, "fileCreated": "2025-06-21T09:31:01.7249759+00:00", "fileLastModified": "2025-07-14T09:31:01.7249761+00:00", @@ -50075,11 +50075,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82654, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1517 }" }, "fileCreated": "2025-06-21T09:31:01.7263966+00:00", "fileLastModified": "2025-07-14T09:31:01.7263968+00:00", @@ -50108,11 +50108,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 56668, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1518 }" }, "fileCreated": "2025-06-21T09:31:01.7277967+00:00", "fileLastModified": "2025-07-14T09:31:01.7277969+00:00", @@ -50141,11 +50141,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 50460, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1519 }" }, "fileCreated": "2025-06-21T09:31:01.729171+00:00", "fileLastModified": "2025-07-14T09:31:01.7291712+00:00", @@ -50174,11 +50174,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 67943, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1520 }" }, "fileCreated": "2025-06-21T09:31:01.7305141+00:00", "fileLastModified": "2025-07-14T09:31:01.7305143+00:00", @@ -50207,11 +50207,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46868, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1521 }" }, "fileCreated": "2025-06-21T09:31:01.7319407+00:00", "fileLastModified": "2025-07-14T09:31:01.7319408+00:00", @@ -50240,11 +50240,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69769, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1522 }" }, "fileCreated": "2025-06-21T09:31:01.7332875+00:00", "fileLastModified": "2025-07-14T09:31:01.7332877+00:00", @@ -50273,11 +50273,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 81053, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1523 }" }, "fileCreated": "2025-06-21T09:31:01.7351438+00:00", "fileLastModified": "2025-07-14T09:31:01.735144+00:00", @@ -50306,11 +50306,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 62600, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1524 }" }, "fileCreated": "2025-06-21T09:31:01.7366842+00:00", "fileLastModified": "2025-07-14T09:31:01.7366845+00:00", @@ -50339,11 +50339,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 27106, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1525 }" }, "fileCreated": "2025-06-21T09:31:01.7389665+00:00", "fileLastModified": "2025-07-14T09:31:01.7389667+00:00", @@ -50372,11 +50372,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 28475, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1526 }" }, "fileCreated": "2025-06-21T09:31:01.740331+00:00", "fileLastModified": "2025-07-14T09:31:01.7403312+00:00", @@ -50405,11 +50405,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34325, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1527 }" }, "fileCreated": "2025-06-21T09:31:01.7416576+00:00", "fileLastModified": "2025-07-14T09:31:01.7416578+00:00", @@ -50438,11 +50438,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 84945, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1528 }" }, "fileCreated": "2025-06-21T09:31:01.742985+00:00", "fileLastModified": "2025-07-14T09:31:01.7429853+00:00", @@ -50471,11 +50471,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61693, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1529 }" }, "fileCreated": "2025-06-21T09:31:01.7442728+00:00", "fileLastModified": "2025-07-14T09:31:01.744273+00:00", @@ -50504,11 +50504,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 95335, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1530 }" }, "fileCreated": "2025-06-21T09:31:01.7455878+00:00", "fileLastModified": "2025-07-14T09:31:01.745588+00:00", @@ -50537,11 +50537,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 78676, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1531 }" }, "fileCreated": "2025-06-21T09:31:01.7473955+00:00", "fileLastModified": "2025-07-14T09:31:01.7473957+00:00", @@ -50570,11 +50570,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44247, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1532 }" }, "fileCreated": "2025-06-21T09:31:01.7487742+00:00", "fileLastModified": "2025-07-14T09:31:01.7487744+00:00", @@ -50603,11 +50603,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 63618, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1533 }" }, "fileCreated": "2025-06-21T09:31:01.7501334+00:00", "fileLastModified": "2025-07-14T09:31:01.7501335+00:00", @@ -50636,11 +50636,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71003, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1534 }" }, "fileCreated": "2025-06-21T09:31:01.7514439+00:00", "fileLastModified": "2025-07-14T09:31:01.7514441+00:00", @@ -50669,11 +50669,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 50453, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1535 }" }, "fileCreated": "2025-06-21T09:31:01.7530072+00:00", "fileLastModified": "2025-07-14T09:31:01.7530074+00:00", @@ -50702,11 +50702,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64733, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1536 }" }, "fileCreated": "2025-06-21T09:31:01.7545826+00:00", "fileLastModified": "2025-07-14T09:31:01.7545828+00:00", @@ -50735,11 +50735,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96819, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1537 }" }, "fileCreated": "2025-06-21T09:31:01.7559861+00:00", "fileLastModified": "2025-07-14T09:31:01.7559863+00:00", @@ -50768,11 +50768,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80119, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1538 }" }, "fileCreated": "2025-06-21T09:31:01.7573895+00:00", "fileLastModified": "2025-07-14T09:31:01.7573897+00:00", @@ -50801,11 +50801,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64213, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1539 }" }, "fileCreated": "2025-06-21T09:31:01.7587756+00:00", "fileLastModified": "2025-07-14T09:31:01.7587758+00:00", @@ -50834,11 +50834,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 44300, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1540 }" }, "fileCreated": "2025-06-21T09:31:01.760687+00:00", "fileLastModified": "2025-07-14T09:31:01.7606872+00:00", @@ -50867,11 +50867,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63445, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1541 }" }, "fileCreated": "2025-06-21T09:31:01.7620145+00:00", "fileLastModified": "2025-07-14T09:31:01.7620147+00:00", @@ -50900,11 +50900,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 81936, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1542 }" }, "fileCreated": "2025-06-21T09:31:01.7633837+00:00", "fileLastModified": "2025-07-14T09:31:01.7633839+00:00", @@ -50933,11 +50933,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45529, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1543 }" }, "fileCreated": "2025-06-21T09:31:01.7647125+00:00", "fileLastModified": "2025-07-14T09:31:01.7647127+00:00", @@ -50966,11 +50966,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 93614, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1544 }" }, "fileCreated": "2025-06-21T09:31:01.7660831+00:00", "fileLastModified": "2025-07-14T09:31:01.7660833+00:00", @@ -50999,11 +50999,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 94475, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1545 }" }, "fileCreated": "2025-06-21T09:31:01.7673489+00:00", "fileLastModified": "2025-07-14T09:31:01.767349+00:00", @@ -51032,11 +51032,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 45390, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1546 }" }, "fileCreated": "2025-06-21T09:31:01.7691739+00:00", "fileLastModified": "2025-07-14T09:31:01.7691741+00:00", @@ -51065,11 +51065,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 61147, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1547 }" }, "fileCreated": "2025-06-21T09:31:01.7705517+00:00", "fileLastModified": "2025-07-14T09:31:01.7705519+00:00", @@ -51098,11 +51098,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43289, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1548 }" }, "fileCreated": "2025-06-21T09:31:01.7723809+00:00", "fileLastModified": "2025-07-14T09:31:01.7723811+00:00", @@ -51131,11 +51131,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89508, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1549 }" }, "fileCreated": "2025-06-21T09:31:01.7739339+00:00", "fileLastModified": "2025-07-14T09:31:01.7739341+00:00", @@ -51164,11 +51164,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 85037, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1550 }" }, "fileCreated": "2025-06-21T09:31:01.7752969+00:00", "fileLastModified": "2025-07-14T09:31:01.7752971+00:00", @@ -51197,11 +51197,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 96690, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1551 }" }, "fileCreated": "2025-06-21T09:31:01.7767368+00:00", "fileLastModified": "2025-07-14T09:31:01.776737+00:00", @@ -51230,11 +51230,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71285, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1552 }" }, "fileCreated": "2025-06-21T09:31:01.7782873+00:00", "fileLastModified": "2025-07-14T09:31:01.7782875+00:00", @@ -51263,11 +51263,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44342, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1553 }" }, "fileCreated": "2025-06-21T09:31:01.7799791+00:00", "fileLastModified": "2025-07-14T09:31:01.7799793+00:00", @@ -51296,11 +51296,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 57537, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1554 }" }, "fileCreated": "2025-06-21T09:31:01.781711+00:00", "fileLastModified": "2025-07-14T09:31:01.7817111+00:00", @@ -51329,11 +51329,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 46886, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1555 }" }, "fileCreated": "2025-06-21T09:31:01.7834309+00:00", "fileLastModified": "2025-07-14T09:31:01.783431+00:00", @@ -51362,11 +51362,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 22458, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1556 }" }, "fileCreated": "2025-06-21T09:31:01.7848042+00:00", "fileLastModified": "2025-07-14T09:31:01.7848043+00:00", @@ -51395,11 +51395,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68053, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1557 }" }, "fileCreated": "2025-06-21T09:31:01.7866208+00:00", "fileLastModified": "2025-07-14T09:31:01.786621+00:00", @@ -51428,11 +51428,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 25124, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1558 }" }, "fileCreated": "2025-06-21T09:31:01.7880896+00:00", "fileLastModified": "2025-07-14T09:31:01.7880898+00:00", @@ -51461,11 +51461,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 22687, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1559 }" }, "fileCreated": "2025-06-21T09:31:01.7895463+00:00", "fileLastModified": "2025-07-14T09:31:01.7895465+00:00", @@ -51494,11 +51494,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 55686, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1560 }" }, "fileCreated": "2025-06-21T09:31:01.7908954+00:00", "fileLastModified": "2025-07-14T09:31:01.7908956+00:00", @@ -51527,11 +51527,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 92424, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1561 }" }, "fileCreated": "2025-06-21T09:31:01.7922077+00:00", "fileLastModified": "2025-07-14T09:31:01.7922079+00:00", @@ -51560,11 +51560,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 78266, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1562 }" }, "fileCreated": "2025-06-21T09:31:01.7935197+00:00", "fileLastModified": "2025-07-14T09:31:01.7935199+00:00", @@ -51593,11 +51593,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 54569, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1563 }" }, "fileCreated": "2025-06-21T09:31:01.7948138+00:00", "fileLastModified": "2025-07-14T09:31:01.794814+00:00", @@ -51626,11 +51626,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 93217, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1564 }" }, "fileCreated": "2025-06-21T09:31:01.7961983+00:00", "fileLastModified": "2025-07-14T09:31:01.7961985+00:00", @@ -51659,11 +51659,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 97338, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1565 }" }, "fileCreated": "2025-06-21T09:31:01.7980568+00:00", "fileLastModified": "2025-07-14T09:31:01.798057+00:00", @@ -51692,11 +51692,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74330, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1566 }" }, "fileCreated": "2025-06-21T09:31:01.7996566+00:00", "fileLastModified": "2025-07-14T09:31:01.7996568+00:00", @@ -51725,11 +51725,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 48865, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1567 }" }, "fileCreated": "2025-06-21T09:31:01.801107+00:00", "fileLastModified": "2025-07-14T09:31:01.8011072+00:00", @@ -51758,11 +51758,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 37050, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1568 }" }, "fileCreated": "2025-06-21T09:31:01.8025933+00:00", "fileLastModified": "2025-07-14T09:31:01.8025934+00:00", @@ -51791,11 +51791,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53465, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1569 }" }, "fileCreated": "2025-06-21T09:31:01.8039232+00:00", "fileLastModified": "2025-07-14T09:31:01.8039234+00:00", @@ -51824,11 +51824,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34226, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1570 }" }, "fileCreated": "2025-06-21T09:31:01.805322+00:00", "fileLastModified": "2025-07-14T09:31:01.8053222+00:00", @@ -51857,11 +51857,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79496, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1571 }" }, "fileCreated": "2025-06-21T09:31:01.8066631+00:00", "fileLastModified": "2025-07-14T09:31:01.8066633+00:00", @@ -51890,11 +51890,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65183, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1572 }" }, "fileCreated": "2025-06-21T09:31:01.8079898+00:00", "fileLastModified": "2025-07-14T09:31:01.8079899+00:00", @@ -51923,11 +51923,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 92552, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1573 }" }, "fileCreated": "2025-06-21T09:31:01.8100565+00:00", "fileLastModified": "2025-07-14T09:31:01.8100566+00:00", @@ -51956,11 +51956,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21159, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1574 }" }, "fileCreated": "2025-06-21T09:31:01.811395+00:00", "fileLastModified": "2025-07-14T09:31:01.8113952+00:00", @@ -51989,11 +51989,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 69346, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1575 }" }, "fileCreated": "2025-06-21T09:31:01.8127128+00:00", "fileLastModified": "2025-07-14T09:31:01.8127129+00:00", @@ -52022,11 +52022,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 22603, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1576 }" }, "fileCreated": "2025-06-21T09:31:01.8140253+00:00", "fileLastModified": "2025-07-14T09:31:01.8140255+00:00", @@ -52055,11 +52055,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 34430, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1577 }" }, "fileCreated": "2025-06-21T09:31:01.8160572+00:00", "fileLastModified": "2025-07-14T09:31:01.8160574+00:00", @@ -52088,11 +52088,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 73025, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1578 }" }, "fileCreated": "2025-06-21T09:31:01.818012+00:00", "fileLastModified": "2025-07-14T09:31:01.8180122+00:00", @@ -52121,11 +52121,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 70535, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1579 }" }, "fileCreated": "2025-06-21T09:31:01.819474+00:00", "fileLastModified": "2025-07-14T09:31:01.8194742+00:00", @@ -52154,11 +52154,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 94554, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1580 }" }, "fileCreated": "2025-06-21T09:31:01.8208552+00:00", "fileLastModified": "2025-07-14T09:31:01.8208554+00:00", @@ -52187,11 +52187,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43365, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1581 }" }, "fileCreated": "2025-06-21T09:31:01.822829+00:00", "fileLastModified": "2025-07-14T09:31:01.8228292+00:00", @@ -52220,11 +52220,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 65826, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1582 }" }, "fileCreated": "2025-06-21T09:31:01.82421+00:00", "fileLastModified": "2025-07-14T09:31:01.8242102+00:00", @@ -52253,11 +52253,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79221, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1583 }" }, "fileCreated": "2025-06-21T09:31:01.8255417+00:00", "fileLastModified": "2025-07-14T09:31:01.8255419+00:00", @@ -52286,11 +52286,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64294, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1584 }" }, "fileCreated": "2025-06-21T09:31:01.826883+00:00", "fileLastModified": "2025-07-14T09:31:01.8268832+00:00", @@ -52319,11 +52319,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 22323, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1585 }" }, "fileCreated": "2025-06-21T09:31:01.8283703+00:00", "fileLastModified": "2025-07-14T09:31:01.8283705+00:00", @@ -52352,11 +52352,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 42974, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1586 }" }, "fileCreated": "2025-06-21T09:31:01.8297321+00:00", "fileLastModified": "2025-07-14T09:31:01.8297323+00:00", @@ -52385,11 +52385,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31762, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1587 }" }, "fileCreated": "2025-06-21T09:31:01.8316182+00:00", "fileLastModified": "2025-07-14T09:31:01.8316184+00:00", @@ -52418,11 +52418,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47006, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1588 }" }, "fileCreated": "2025-06-21T09:31:01.83312+00:00", "fileLastModified": "2025-07-14T09:31:01.8331202+00:00", @@ -52451,11 +52451,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 20758, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1589 }" }, "fileCreated": "2025-06-21T09:31:01.8351435+00:00", "fileLastModified": "2025-07-14T09:31:01.8351437+00:00", @@ -52484,11 +52484,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23707, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1590 }" }, "fileCreated": "2025-06-21T09:31:01.8366651+00:00", "fileLastModified": "2025-07-14T09:31:01.8366653+00:00", @@ -52517,11 +52517,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 41997, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1591 }" }, "fileCreated": "2025-06-21T09:31:01.838458+00:00", "fileLastModified": "2025-07-14T09:31:01.8384582+00:00", @@ -52550,11 +52550,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 78807, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1592 }" }, "fileCreated": "2025-06-21T09:31:01.8401373+00:00", "fileLastModified": "2025-07-14T09:31:01.8401375+00:00", @@ -52583,11 +52583,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 73411, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1593 }" }, "fileCreated": "2025-06-21T09:31:01.8417036+00:00", "fileLastModified": "2025-07-14T09:31:01.8417038+00:00", @@ -52616,11 +52616,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28956, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1594 }" }, "fileCreated": "2025-06-21T09:31:01.843838+00:00", "fileLastModified": "2025-07-14T09:31:01.8438382+00:00", @@ -52649,11 +52649,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 22033, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1595 }" }, "fileCreated": "2025-06-21T09:31:01.8454396+00:00", "fileLastModified": "2025-07-14T09:31:01.8454398+00:00", @@ -52682,11 +52682,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 77837, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1596 }" }, "fileCreated": "2025-06-21T09:31:01.847276+00:00", "fileLastModified": "2025-07-14T09:31:01.8472762+00:00", @@ -52715,11 +52715,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 90142, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1597 }" }, "fileCreated": "2025-06-21T09:31:01.8498639+00:00", "fileLastModified": "2025-07-14T09:31:01.8498641+00:00", @@ -52748,11 +52748,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 52247, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1598 }" }, "fileCreated": "2025-06-21T09:31:01.8518078+00:00", "fileLastModified": "2025-07-14T09:31:01.851808+00:00", @@ -52781,11 +52781,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 33653, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1599 }" }, "fileCreated": "2025-06-21T09:31:01.853642+00:00", "fileLastModified": "2025-07-14T09:31:01.8536422+00:00", @@ -52814,11 +52814,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 25274, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1600 }" }, "fileCreated": "2025-06-21T09:31:01.8554472+00:00", "fileLastModified": "2025-07-14T09:31:01.8554474+00:00", @@ -52847,11 +52847,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 40348, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1601 }" }, "fileCreated": "2025-06-21T09:31:01.8570075+00:00", "fileLastModified": "2025-07-14T09:31:01.8570077+00:00", @@ -52880,11 +52880,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59464, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1602 }" }, "fileCreated": "2025-06-21T09:31:01.8585062+00:00", "fileLastModified": "2025-07-14T09:31:01.8585064+00:00", @@ -52913,11 +52913,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 91117, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1603 }" }, "fileCreated": "2025-06-21T09:31:01.8600885+00:00", "fileLastModified": "2025-07-14T09:31:01.8600887+00:00", @@ -52946,11 +52946,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69556, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1604 }" }, "fileCreated": "2025-06-21T09:31:01.8627886+00:00", "fileLastModified": "2025-07-14T09:31:01.8627889+00:00", @@ -52979,11 +52979,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 53466, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1605 }" }, "fileCreated": "2025-06-21T09:31:01.864606+00:00", "fileLastModified": "2025-07-14T09:31:01.8646062+00:00", @@ -53012,11 +53012,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 30222, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1606 }" }, "fileCreated": "2025-06-21T09:31:01.8663924+00:00", "fileLastModified": "2025-07-14T09:31:01.8663929+00:00", @@ -53045,11 +53045,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82061, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1607 }" }, "fileCreated": "2025-06-21T09:31:01.8681062+00:00", "fileLastModified": "2025-07-14T09:31:01.8681064+00:00", @@ -53078,11 +53078,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98558, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1608 }" }, "fileCreated": "2025-06-21T09:31:01.8697472+00:00", "fileLastModified": "2025-07-14T09:31:01.8697474+00:00", @@ -53111,11 +53111,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 21393, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1609 }" }, "fileCreated": "2025-06-21T09:31:01.8712998+00:00", "fileLastModified": "2025-07-14T09:31:01.8712999+00:00", @@ -53144,11 +53144,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 23815, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1610 }" }, "fileCreated": "2025-06-21T09:31:01.8728096+00:00", "fileLastModified": "2025-07-14T09:31:01.8728098+00:00", @@ -53177,11 +53177,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44232, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1611 }" }, "fileCreated": "2025-06-21T09:31:01.8742665+00:00", "fileLastModified": "2025-07-14T09:31:01.8742667+00:00", @@ -53210,11 +53210,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 40498, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1612 }" }, "fileCreated": "2025-06-21T09:31:01.8763693+00:00", "fileLastModified": "2025-07-14T09:31:01.8763695+00:00", @@ -53243,11 +53243,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 80027, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1613 }" }, "fileCreated": "2025-06-21T09:31:01.8783232+00:00", "fileLastModified": "2025-07-14T09:31:01.8783235+00:00", @@ -53276,11 +53276,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 72109, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1614 }" }, "fileCreated": "2025-06-21T09:31:01.8798472+00:00", "fileLastModified": "2025-07-14T09:31:01.8798474+00:00", @@ -53309,11 +53309,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64069, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1615 }" }, "fileCreated": "2025-06-21T09:31:01.881624+00:00", "fileLastModified": "2025-07-14T09:31:01.8816242+00:00", @@ -53342,11 +53342,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37255, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1616 }" }, "fileCreated": "2025-06-21T09:31:01.8831738+00:00", "fileLastModified": "2025-07-14T09:31:01.883174+00:00", @@ -53375,11 +53375,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 62080, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1617 }" }, "fileCreated": "2025-06-21T09:31:01.8846227+00:00", "fileLastModified": "2025-07-14T09:31:01.8846229+00:00", @@ -53408,11 +53408,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 63794, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1618 }" }, "fileCreated": "2025-06-21T09:31:01.8862189+00:00", "fileLastModified": "2025-07-14T09:31:01.8862191+00:00", @@ -53441,11 +53441,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24904, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1619 }" }, "fileCreated": "2025-06-21T09:31:01.8877065+00:00", "fileLastModified": "2025-07-14T09:31:01.8877067+00:00", @@ -53474,11 +53474,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 86006, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1620 }" }, "fileCreated": "2025-06-21T09:31:01.8897365+00:00", "fileLastModified": "2025-07-14T09:31:01.8897367+00:00", @@ -53507,11 +53507,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 45560, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1621 }" }, "fileCreated": "2025-06-21T09:31:01.8913067+00:00", "fileLastModified": "2025-07-14T09:31:01.8913069+00:00", @@ -53540,11 +53540,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 45790, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1622 }" }, "fileCreated": "2025-06-21T09:31:01.8935352+00:00", "fileLastModified": "2025-07-14T09:31:01.8935354+00:00", @@ -53573,11 +53573,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80995, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1623 }" }, "fileCreated": "2025-06-21T09:31:01.8951485+00:00", "fileLastModified": "2025-07-14T09:31:01.8951487+00:00", @@ -53606,11 +53606,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 97052, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1624 }" }, "fileCreated": "2025-06-21T09:31:01.8967043+00:00", "fileLastModified": "2025-07-14T09:31:01.8967045+00:00", @@ -53639,11 +53639,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87077, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1625 }" }, "fileCreated": "2025-06-21T09:31:01.8982737+00:00", "fileLastModified": "2025-07-14T09:31:01.898274+00:00", @@ -53672,11 +53672,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70913, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1626 }" }, "fileCreated": "2025-06-21T09:31:01.9000939+00:00", "fileLastModified": "2025-07-14T09:31:01.9000941+00:00", @@ -53705,11 +53705,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 47239, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1627 }" }, "fileCreated": "2025-06-21T09:31:01.9026945+00:00", "fileLastModified": "2025-07-14T09:31:01.9026947+00:00", @@ -53738,11 +53738,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85475, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1628 }" }, "fileCreated": "2025-06-21T09:31:01.9043022+00:00", "fileLastModified": "2025-07-14T09:31:01.9043025+00:00", @@ -53771,11 +53771,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50329, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1629 }" }, "fileCreated": "2025-06-21T09:31:01.9059961+00:00", "fileLastModified": "2025-07-14T09:31:01.9059963+00:00", @@ -53804,11 +53804,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 24517, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1630 }" }, "fileCreated": "2025-06-21T09:31:01.9077091+00:00", "fileLastModified": "2025-07-14T09:31:01.9077094+00:00", @@ -53837,11 +53837,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 43639, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1631 }" }, "fileCreated": "2025-06-21T09:31:01.9094185+00:00", "fileLastModified": "2025-07-14T09:31:01.9094187+00:00", @@ -53870,11 +53870,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 22231, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1632 }" }, "fileCreated": "2025-06-21T09:31:01.9109743+00:00", "fileLastModified": "2025-07-14T09:31:01.9109746+00:00", @@ -53903,11 +53903,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89055, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1633 }" }, "fileCreated": "2025-06-21T09:31:01.912522+00:00", "fileLastModified": "2025-07-14T09:31:01.9125222+00:00", @@ -53936,11 +53936,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 68675, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1634 }" }, "fileCreated": "2025-06-21T09:31:01.9150902+00:00", "fileLastModified": "2025-07-14T09:31:01.9150904+00:00", @@ -53969,11 +53969,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 25472, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1635 }" }, "fileCreated": "2025-06-21T09:31:01.9167832+00:00", "fileLastModified": "2025-07-14T09:31:01.9167834+00:00", @@ -54002,11 +54002,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 94493, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1636 }" }, "fileCreated": "2025-06-21T09:31:01.9183377+00:00", "fileLastModified": "2025-07-14T09:31:01.9183379+00:00", @@ -54035,11 +54035,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23428, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1637 }" }, "fileCreated": "2025-06-21T09:31:01.9199082+00:00", "fileLastModified": "2025-07-14T09:31:01.9199084+00:00", @@ -54068,11 +54068,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 91758, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1638 }" }, "fileCreated": "2025-06-21T09:31:01.9215021+00:00", "fileLastModified": "2025-07-14T09:31:01.9215023+00:00", @@ -54101,11 +54101,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 61993, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1639 }" }, "fileCreated": "2025-06-21T09:31:01.9231237+00:00", "fileLastModified": "2025-07-14T09:31:01.9231239+00:00", @@ -54134,11 +54134,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 22377, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1640 }" }, "fileCreated": "2025-06-21T09:31:01.9253226+00:00", "fileLastModified": "2025-07-14T09:31:01.9253231+00:00", @@ -54167,11 +54167,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34227, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1641 }" }, "fileCreated": "2025-06-21T09:31:01.9272941+00:00", "fileLastModified": "2025-07-14T09:31:01.9272943+00:00", @@ -54200,11 +54200,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82812, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1642 }" }, "fileCreated": "2025-06-21T09:31:01.9295305+00:00", "fileLastModified": "2025-07-14T09:31:01.9295307+00:00", @@ -54233,11 +54233,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 47998, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1643 }" }, "fileCreated": "2025-06-21T09:31:01.9311579+00:00", "fileLastModified": "2025-07-14T09:31:01.9311581+00:00", @@ -54266,11 +54266,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23221, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1644 }" }, "fileCreated": "2025-06-21T09:31:01.9328194+00:00", "fileLastModified": "2025-07-14T09:31:01.9328196+00:00", @@ -54299,11 +54299,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 70861, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1645 }" }, "fileCreated": "2025-06-21T09:31:01.9344041+00:00", "fileLastModified": "2025-07-14T09:31:01.9344043+00:00", @@ -54332,11 +54332,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57013, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1646 }" }, "fileCreated": "2025-06-21T09:31:01.9360402+00:00", "fileLastModified": "2025-07-14T09:31:01.9360405+00:00", @@ -54365,11 +54365,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66951, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1647 }" }, "fileCreated": "2025-06-21T09:31:01.9377088+00:00", "fileLastModified": "2025-07-14T09:31:01.9377091+00:00", @@ -54398,11 +54398,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 82756, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1648 }" }, "fileCreated": "2025-06-21T09:31:01.9394479+00:00", "fileLastModified": "2025-07-14T09:31:01.9394482+00:00", @@ -54431,11 +54431,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23382, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1649 }" }, "fileCreated": "2025-06-21T09:31:01.9426144+00:00", "fileLastModified": "2025-07-14T09:31:01.9426146+00:00", @@ -54464,11 +54464,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 71176, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1650 }" }, "fileCreated": "2025-06-21T09:31:01.9442443+00:00", "fileLastModified": "2025-07-14T09:31:01.9442446+00:00", @@ -54497,11 +54497,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83317, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1651 }" }, "fileCreated": "2025-06-21T09:31:01.9458857+00:00", "fileLastModified": "2025-07-14T09:31:01.9458859+00:00", @@ -54530,11 +54530,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 25926, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1652 }" }, "fileCreated": "2025-06-21T09:31:01.9474589+00:00", "fileLastModified": "2025-07-14T09:31:01.9474591+00:00", @@ -54563,11 +54563,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 88649, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1653 }" }, "fileCreated": "2025-06-21T09:31:01.9491774+00:00", "fileLastModified": "2025-07-14T09:31:01.9491776+00:00", @@ -54596,11 +54596,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69428, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1654 }" }, "fileCreated": "2025-06-21T09:31:01.9508067+00:00", "fileLastModified": "2025-07-14T09:31:01.9508069+00:00", @@ -54629,11 +54629,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 59930, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1655 }" }, "fileCreated": "2025-06-21T09:31:01.952367+00:00", "fileLastModified": "2025-07-14T09:31:01.9523673+00:00", @@ -54662,11 +54662,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 26798, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1656 }" }, "fileCreated": "2025-06-21T09:31:01.954632+00:00", "fileLastModified": "2025-07-14T09:31:01.9546322+00:00", @@ -54695,11 +54695,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 81912, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1657 }" }, "fileCreated": "2025-06-21T09:31:01.9567872+00:00", "fileLastModified": "2025-07-14T09:31:01.9567878+00:00", @@ -54728,11 +54728,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71716, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1658 }" }, "fileCreated": "2025-06-21T09:31:01.9583999+00:00", "fileLastModified": "2025-07-14T09:31:01.9584001+00:00", @@ -54761,11 +54761,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 62452, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1659 }" }, "fileCreated": "2025-06-21T09:31:01.9599806+00:00", "fileLastModified": "2025-07-14T09:31:01.9599808+00:00", @@ -54794,11 +54794,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 41401, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1660 }" }, "fileCreated": "2025-06-21T09:31:01.9615414+00:00", "fileLastModified": "2025-07-14T09:31:01.9615416+00:00", @@ -54827,11 +54827,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 47218, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1661 }" }, "fileCreated": "2025-06-21T09:31:01.9630259+00:00", "fileLastModified": "2025-07-14T09:31:01.9630261+00:00", @@ -54860,11 +54860,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44362, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1662 }" }, "fileCreated": "2025-06-21T09:31:01.9645412+00:00", "fileLastModified": "2025-07-14T09:31:01.9645414+00:00", @@ -54893,11 +54893,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83163, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1663 }" }, "fileCreated": "2025-06-21T09:31:01.9667654+00:00", "fileLastModified": "2025-07-14T09:31:01.9667656+00:00", @@ -54926,11 +54926,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73584, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1664 }" }, "fileCreated": "2025-06-21T09:31:01.9685161+00:00", "fileLastModified": "2025-07-14T09:31:01.9685163+00:00", @@ -54959,11 +54959,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 55348, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1665 }" }, "fileCreated": "2025-06-21T09:31:01.9707217+00:00", "fileLastModified": "2025-07-14T09:31:01.9707223+00:00", @@ -54992,11 +54992,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 38461, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1666 }" }, "fileCreated": "2025-06-21T09:31:01.9735011+00:00", "fileLastModified": "2025-07-14T09:31:01.9735014+00:00", @@ -55025,11 +55025,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 66564, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1667 }" }, "fileCreated": "2025-06-21T09:31:01.9752479+00:00", "fileLastModified": "2025-07-14T09:31:01.9752482+00:00", @@ -55058,11 +55058,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92206, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1668 }" }, "fileCreated": "2025-06-21T09:31:01.9769322+00:00", "fileLastModified": "2025-07-14T09:31:01.9769324+00:00", @@ -55091,11 +55091,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86096, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1669 }" }, "fileCreated": "2025-06-21T09:31:01.9786467+00:00", "fileLastModified": "2025-07-14T09:31:01.9786469+00:00", @@ -55124,11 +55124,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 92817, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1670 }" }, "fileCreated": "2025-06-21T09:31:01.9811674+00:00", "fileLastModified": "2025-07-14T09:31:01.9811676+00:00", @@ -55157,11 +55157,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31523, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1671 }" }, "fileCreated": "2025-06-21T09:31:01.9829065+00:00", "fileLastModified": "2025-07-14T09:31:01.9829067+00:00", @@ -55190,11 +55190,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41188, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1672 }" }, "fileCreated": "2025-06-21T09:31:01.9846369+00:00", "fileLastModified": "2025-07-14T09:31:01.9846371+00:00", @@ -55223,11 +55223,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 46212, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1673 }" }, "fileCreated": "2025-06-21T09:31:01.9868334+00:00", "fileLastModified": "2025-07-14T09:31:01.9868337+00:00", @@ -55256,11 +55256,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60921, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1674 }" }, "fileCreated": "2025-06-21T09:31:01.988601+00:00", "fileLastModified": "2025-07-14T09:31:01.9886013+00:00", @@ -55289,11 +55289,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 57096, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1675 }" }, "fileCreated": "2025-06-21T09:31:01.9904033+00:00", "fileLastModified": "2025-07-14T09:31:01.9904036+00:00", @@ -55322,11 +55322,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 72695, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1676 }" }, "fileCreated": "2025-06-21T09:31:01.9922012+00:00", "fileLastModified": "2025-07-14T09:31:01.9922015+00:00", @@ -55355,11 +55355,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 90622, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1677 }" }, "fileCreated": "2025-06-21T09:31:01.9946241+00:00", "fileLastModified": "2025-07-14T09:31:01.9946244+00:00", @@ -55388,11 +55388,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 42609, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1678 }" }, "fileCreated": "2025-06-21T09:31:01.9966578+00:00", "fileLastModified": "2025-07-14T09:31:01.9966581+00:00", @@ -55421,11 +55421,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 39449, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1679 }" }, "fileCreated": "2025-06-21T09:31:01.9985122+00:00", "fileLastModified": "2025-07-14T09:31:01.9985124+00:00", @@ -55454,11 +55454,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 48285, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1680 }" }, "fileCreated": "2025-06-21T09:31:02.0002245+00:00", "fileLastModified": "2025-07-14T09:31:02.0002248+00:00", @@ -55487,11 +55487,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96839, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1681 }" }, "fileCreated": "2025-06-21T09:31:02.0022673+00:00", "fileLastModified": "2025-07-14T09:31:02.0022675+00:00", @@ -55520,11 +55520,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 54195, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1682 }" }, "fileCreated": "2025-06-21T09:31:02.0039916+00:00", "fileLastModified": "2025-07-14T09:31:02.0039918+00:00", @@ -55553,11 +55553,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 35466, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1683 }" }, "fileCreated": "2025-06-21T09:31:02.0057232+00:00", "fileLastModified": "2025-07-14T09:31:02.0057234+00:00", @@ -55586,11 +55586,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35981, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1684 }" }, "fileCreated": "2025-06-21T09:31:02.0079759+00:00", "fileLastModified": "2025-07-14T09:31:02.0079761+00:00", @@ -55619,11 +55619,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 68424, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1685 }" }, "fileCreated": "2025-06-21T09:31:02.0096852+00:00", "fileLastModified": "2025-07-14T09:31:02.0096855+00:00", @@ -55652,11 +55652,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64687, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1686 }" }, "fileCreated": "2025-06-21T09:31:02.011478+00:00", "fileLastModified": "2025-07-14T09:31:02.0114782+00:00", @@ -55685,11 +55685,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 60564, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1687 }" }, "fileCreated": "2025-06-21T09:31:02.0131393+00:00", "fileLastModified": "2025-07-14T09:31:02.0131395+00:00", @@ -55718,11 +55718,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 55439, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1688 }" }, "fileCreated": "2025-06-21T09:31:02.0151004+00:00", "fileLastModified": "2025-07-14T09:31:02.0151007+00:00", @@ -55751,11 +55751,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 93362, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1689 }" }, "fileCreated": "2025-06-21T09:31:02.0169737+00:00", "fileLastModified": "2025-07-14T09:31:02.0169741+00:00", @@ -55784,11 +55784,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 86862, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1690 }" }, "fileCreated": "2025-06-21T09:31:02.0187497+00:00", "fileLastModified": "2025-07-14T09:31:02.0187499+00:00", @@ -55817,11 +55817,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 25012, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1691 }" }, "fileCreated": "2025-06-21T09:31:02.0210711+00:00", "fileLastModified": "2025-07-14T09:31:02.0210713+00:00", @@ -55850,11 +55850,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 31842, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1692 }" }, "fileCreated": "2025-06-21T09:31:02.0227531+00:00", "fileLastModified": "2025-07-14T09:31:02.0227534+00:00", @@ -55883,11 +55883,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 82787, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1693 }" }, "fileCreated": "2025-06-21T09:31:02.0243569+00:00", "fileLastModified": "2025-07-14T09:31:02.0243571+00:00", @@ -55916,11 +55916,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 29967, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1694 }" }, "fileCreated": "2025-06-21T09:31:02.0259793+00:00", "fileLastModified": "2025-07-14T09:31:02.0259795+00:00", @@ -55949,11 +55949,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 48029, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1695 }" }, "fileCreated": "2025-06-21T09:31:02.02777+00:00", "fileLastModified": "2025-07-14T09:31:02.0277702+00:00", @@ -55982,11 +55982,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83851, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1696 }" }, "fileCreated": "2025-06-21T09:31:02.0294964+00:00", "fileLastModified": "2025-07-14T09:31:02.0294966+00:00", @@ -56015,11 +56015,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 65127, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1697 }" }, "fileCreated": "2025-06-21T09:31:02.0317796+00:00", "fileLastModified": "2025-07-14T09:31:02.0317799+00:00", @@ -56048,11 +56048,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 27215, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1698 }" }, "fileCreated": "2025-06-21T09:31:02.0338576+00:00", "fileLastModified": "2025-07-14T09:31:02.0338578+00:00", @@ -56081,11 +56081,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 38830, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1699 }" }, "fileCreated": "2025-06-21T09:31:02.0358671+00:00", "fileLastModified": "2025-07-14T09:31:02.0358673+00:00", @@ -56114,11 +56114,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 71728, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1700 }" }, "fileCreated": "2025-06-21T09:31:02.0376964+00:00", "fileLastModified": "2025-07-14T09:31:02.0376966+00:00", @@ -56147,11 +56147,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 30797, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1701 }" }, "fileCreated": "2025-06-21T09:31:02.0393248+00:00", "fileLastModified": "2025-07-14T09:31:02.0393251+00:00", @@ -56180,11 +56180,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27614, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1702 }" }, "fileCreated": "2025-06-21T09:31:02.0412451+00:00", "fileLastModified": "2025-07-14T09:31:02.0412453+00:00", @@ -56213,11 +56213,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 53956, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1703 }" }, "fileCreated": "2025-06-21T09:31:02.042894+00:00", "fileLastModified": "2025-07-14T09:31:02.0428942+00:00", @@ -56246,11 +56246,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44575, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1704 }" }, "fileCreated": "2025-06-21T09:31:02.0450682+00:00", "fileLastModified": "2025-07-14T09:31:02.0450684+00:00", @@ -56279,11 +56279,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 58334, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1705 }" }, "fileCreated": "2025-06-21T09:31:02.0465844+00:00", "fileLastModified": "2025-07-14T09:31:02.0465846+00:00", @@ -56312,11 +56312,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 74715, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1706 }" }, "fileCreated": "2025-06-21T09:31:02.0486247+00:00", "fileLastModified": "2025-07-14T09:31:02.0486249+00:00", @@ -56345,11 +56345,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 96587, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1707 }" }, "fileCreated": "2025-06-21T09:31:02.0504057+00:00", "fileLastModified": "2025-07-14T09:31:02.0504061+00:00", @@ -56378,11 +56378,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 96328, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1708 }" }, "fileCreated": "2025-06-21T09:31:02.0522648+00:00", "fileLastModified": "2025-07-14T09:31:02.052265+00:00", @@ -56411,11 +56411,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59480, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1709 }" }, "fileCreated": "2025-06-21T09:31:02.0541338+00:00", "fileLastModified": "2025-07-14T09:31:02.054134+00:00", @@ -56444,11 +56444,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87421, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1710 }" }, "fileCreated": "2025-06-21T09:31:02.0567502+00:00", "fileLastModified": "2025-07-14T09:31:02.0567504+00:00", @@ -56477,11 +56477,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89837, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1711 }" }, "fileCreated": "2025-06-21T09:31:02.0585671+00:00", "fileLastModified": "2025-07-14T09:31:02.0585673+00:00", @@ -56510,11 +56510,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 55509, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1712 }" }, "fileCreated": "2025-06-21T09:31:02.0603531+00:00", "fileLastModified": "2025-07-14T09:31:02.0603533+00:00", @@ -56543,11 +56543,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 61477, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1713 }" }, "fileCreated": "2025-06-21T09:31:02.0620058+00:00", "fileLastModified": "2025-07-14T09:31:02.062006+00:00", @@ -56576,11 +56576,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 54620, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1714 }" }, "fileCreated": "2025-06-21T09:31:02.0640685+00:00", "fileLastModified": "2025-07-14T09:31:02.0640687+00:00", @@ -56609,11 +56609,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 75201, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1715 }" }, "fileCreated": "2025-06-21T09:31:02.065843+00:00", "fileLastModified": "2025-07-14T09:31:02.0658432+00:00", @@ -56642,11 +56642,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 41463, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1716 }" }, "fileCreated": "2025-06-21T09:31:02.0676807+00:00", "fileLastModified": "2025-07-14T09:31:02.0676809+00:00", @@ -56675,11 +56675,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 71693, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1717 }" }, "fileCreated": "2025-06-21T09:31:02.0702091+00:00", "fileLastModified": "2025-07-14T09:31:02.0702093+00:00", @@ -56708,11 +56708,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80881, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1718 }" }, "fileCreated": "2025-06-21T09:31:02.071801+00:00", "fileLastModified": "2025-07-14T09:31:02.0718013+00:00", @@ -56741,11 +56741,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74023, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1719 }" }, "fileCreated": "2025-06-21T09:31:02.073513+00:00", "fileLastModified": "2025-07-14T09:31:02.0735133+00:00", @@ -56774,11 +56774,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 66684, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1720 }" }, "fileCreated": "2025-06-21T09:31:02.0752192+00:00", "fileLastModified": "2025-07-14T09:31:02.0752195+00:00", @@ -56807,11 +56807,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 23790, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1721 }" }, "fileCreated": "2025-06-21T09:31:02.076888+00:00", "fileLastModified": "2025-07-14T09:31:02.0768882+00:00", @@ -56840,11 +56840,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 52527, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1722 }" }, "fileCreated": "2025-06-21T09:31:02.0784114+00:00", "fileLastModified": "2025-07-14T09:31:02.0784116+00:00", @@ -56873,11 +56873,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 46176, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1723 }" }, "fileCreated": "2025-06-21T09:31:02.0801206+00:00", "fileLastModified": "2025-07-14T09:31:02.0801208+00:00", @@ -56906,11 +56906,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 45268, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1724 }" }, "fileCreated": "2025-06-21T09:31:02.0822856+00:00", "fileLastModified": "2025-07-14T09:31:02.0822858+00:00", @@ -56939,11 +56939,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 67516, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1725 }" }, "fileCreated": "2025-06-21T09:31:02.0839364+00:00", "fileLastModified": "2025-07-14T09:31:02.0839366+00:00", @@ -56972,11 +56972,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 96356, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1726 }" }, "fileCreated": "2025-06-21T09:31:02.0855623+00:00", "fileLastModified": "2025-07-14T09:31:02.0855625+00:00", @@ -57005,11 +57005,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 41542, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1727 }" }, "fileCreated": "2025-06-21T09:31:02.0871266+00:00", "fileLastModified": "2025-07-14T09:31:02.0871268+00:00", @@ -57038,11 +57038,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 86506, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1728 }" }, "fileCreated": "2025-06-21T09:31:02.0886985+00:00", "fileLastModified": "2025-07-14T09:31:02.0886987+00:00", @@ -57071,11 +57071,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 90827, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1729 }" }, "fileCreated": "2025-06-21T09:31:02.0902311+00:00", "fileLastModified": "2025-07-14T09:31:02.0902313+00:00", @@ -57104,11 +57104,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 56045, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1730 }" }, "fileCreated": "2025-06-21T09:31:02.0923797+00:00", "fileLastModified": "2025-07-14T09:31:02.0923799+00:00", @@ -57137,11 +57137,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 49800, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1731 }" }, "fileCreated": "2025-06-21T09:31:02.093959+00:00", "fileLastModified": "2025-07-14T09:31:02.0939592+00:00", @@ -57170,11 +57170,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 45751, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1732 }" }, "fileCreated": "2025-06-21T09:31:02.0962394+00:00", "fileLastModified": "2025-07-14T09:31:02.0962397+00:00", @@ -57203,11 +57203,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 54128, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1733 }" }, "fileCreated": "2025-06-21T09:31:02.0980559+00:00", "fileLastModified": "2025-07-14T09:31:02.0980562+00:00", @@ -57236,11 +57236,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 69886, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1734 }" }, "fileCreated": "2025-06-21T09:31:02.0997251+00:00", "fileLastModified": "2025-07-14T09:31:02.0997253+00:00", @@ -57269,11 +57269,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34129, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1735 }" }, "fileCreated": "2025-06-21T09:31:02.1012752+00:00", "fileLastModified": "2025-07-14T09:31:02.1012755+00:00", @@ -57302,11 +57302,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 62170, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1736 }" }, "fileCreated": "2025-06-21T09:31:02.1034809+00:00", "fileLastModified": "2025-07-14T09:31:02.1034811+00:00", @@ -57335,11 +57335,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59320, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1737 }" }, "fileCreated": "2025-06-21T09:31:02.1050588+00:00", "fileLastModified": "2025-07-14T09:31:02.105059+00:00", @@ -57368,11 +57368,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 81316, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1738 }" }, "fileCreated": "2025-06-21T09:31:02.1067312+00:00", "fileLastModified": "2025-07-14T09:31:02.1067314+00:00", @@ -57401,11 +57401,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83296, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1739 }" }, "fileCreated": "2025-06-21T09:31:02.1086238+00:00", "fileLastModified": "2025-07-14T09:31:02.108624+00:00", @@ -57434,11 +57434,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 84116, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1740 }" }, "fileCreated": "2025-06-21T09:31:02.1104+00:00", "fileLastModified": "2025-07-14T09:31:02.1104003+00:00", @@ -57467,11 +57467,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37878, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1741 }" }, "fileCreated": "2025-06-21T09:31:02.1122985+00:00", "fileLastModified": "2025-07-14T09:31:02.1122988+00:00", @@ -57500,11 +57500,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 91934, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1742 }" }, "fileCreated": "2025-06-21T09:31:02.114024+00:00", "fileLastModified": "2025-07-14T09:31:02.1140243+00:00", @@ -57533,11 +57533,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87820, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1743 }" }, "fileCreated": "2025-06-21T09:31:02.1162766+00:00", "fileLastModified": "2025-07-14T09:31:02.1162783+00:00", @@ -57566,11 +57566,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21618, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1744 }" }, "fileCreated": "2025-06-21T09:31:02.1181122+00:00", "fileLastModified": "2025-07-14T09:31:02.1181124+00:00", @@ -57599,11 +57599,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 68229, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1745 }" }, "fileCreated": "2025-06-21T09:31:02.1198348+00:00", "fileLastModified": "2025-07-14T09:31:02.1198351+00:00", @@ -57632,11 +57632,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44739, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1746 }" }, "fileCreated": "2025-06-21T09:31:02.1214382+00:00", "fileLastModified": "2025-07-14T09:31:02.1214384+00:00", @@ -57665,11 +57665,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 59153, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1747 }" }, "fileCreated": "2025-06-21T09:31:02.1230621+00:00", "fileLastModified": "2025-07-14T09:31:02.1230623+00:00", @@ -57698,11 +57698,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21854, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1748 }" }, "fileCreated": "2025-06-21T09:31:02.1246278+00:00", "fileLastModified": "2025-07-14T09:31:02.124628+00:00", @@ -57731,11 +57731,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47167, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1749 }" }, "fileCreated": "2025-06-21T09:31:02.1276543+00:00", "fileLastModified": "2025-07-14T09:31:02.1276546+00:00", @@ -57764,11 +57764,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 60887, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1750 }" }, "fileCreated": "2025-06-21T09:31:02.1297099+00:00", "fileLastModified": "2025-07-14T09:31:02.1297101+00:00", @@ -57797,11 +57797,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 32359, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1751 }" }, "fileCreated": "2025-06-21T09:31:02.1314627+00:00", "fileLastModified": "2025-07-14T09:31:02.1314629+00:00", @@ -57830,11 +57830,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92235, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1752 }" }, "fileCreated": "2025-06-21T09:31:02.1331779+00:00", "fileLastModified": "2025-07-14T09:31:02.1331782+00:00", @@ -57863,11 +57863,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 86049, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1753 }" }, "fileCreated": "2025-06-21T09:31:02.134787+00:00", "fileLastModified": "2025-07-14T09:31:02.1347873+00:00", @@ -57896,11 +57896,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 42083, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1754 }" }, "fileCreated": "2025-06-21T09:31:02.1364973+00:00", "fileLastModified": "2025-07-14T09:31:02.1364975+00:00", @@ -57929,11 +57929,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 54487, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1755 }" }, "fileCreated": "2025-06-21T09:31:02.1388493+00:00", "fileLastModified": "2025-07-14T09:31:02.1388495+00:00", @@ -57962,11 +57962,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 52753, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1756 }" }, "fileCreated": "2025-06-21T09:31:02.1405476+00:00", "fileLastModified": "2025-07-14T09:31:02.1405478+00:00", @@ -57995,11 +57995,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 88399, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1757 }" }, "fileCreated": "2025-06-21T09:31:02.14342+00:00", "fileLastModified": "2025-07-14T09:31:02.1434204+00:00", @@ -58028,11 +58028,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 45249, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1758 }" }, "fileCreated": "2025-06-21T09:31:02.1459963+00:00", "fileLastModified": "2025-07-14T09:31:02.1459968+00:00", @@ -58061,11 +58061,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94829, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1759 }" }, "fileCreated": "2025-06-21T09:31:02.1492174+00:00", "fileLastModified": "2025-07-14T09:31:02.1492176+00:00", @@ -58094,11 +58094,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64816, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1760 }" }, "fileCreated": "2025-06-21T09:31:02.1520698+00:00", "fileLastModified": "2025-07-14T09:31:02.1520702+00:00", @@ -58127,11 +58127,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 24487, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1761 }" }, "fileCreated": "2025-06-21T09:31:02.15569+00:00", "fileLastModified": "2025-07-14T09:31:02.1556904+00:00", @@ -58160,11 +58160,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 57224, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1762 }" }, "fileCreated": "2025-06-21T09:31:02.1589063+00:00", "fileLastModified": "2025-07-14T09:31:02.1589068+00:00", @@ -58193,11 +58193,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 21083, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1763 }" }, "fileCreated": "2025-06-21T09:31:02.1623117+00:00", "fileLastModified": "2025-07-14T09:31:02.162312+00:00", @@ -58226,11 +58226,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 35893, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1764 }" }, "fileCreated": "2025-06-21T09:31:02.1646189+00:00", "fileLastModified": "2025-07-14T09:31:02.1646192+00:00", @@ -58259,11 +58259,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 27728, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1765 }" }, "fileCreated": "2025-06-21T09:31:02.1674932+00:00", "fileLastModified": "2025-07-14T09:31:02.1674936+00:00", @@ -58292,11 +58292,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 59307, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1766 }" }, "fileCreated": "2025-06-21T09:31:02.1701362+00:00", "fileLastModified": "2025-07-14T09:31:02.1701368+00:00", @@ -58325,11 +58325,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 98048, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1767 }" }, "fileCreated": "2025-06-21T09:31:02.1734996+00:00", "fileLastModified": "2025-07-14T09:31:02.1734999+00:00", @@ -58358,11 +58358,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92363, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1768 }" }, "fileCreated": "2025-06-21T09:31:02.1753423+00:00", "fileLastModified": "2025-07-14T09:31:02.1753426+00:00", @@ -58391,11 +58391,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95486, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1769 }" }, "fileCreated": "2025-06-21T09:31:02.177331+00:00", "fileLastModified": "2025-07-14T09:31:02.1773312+00:00", @@ -58424,11 +58424,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 94364, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1770 }" }, "fileCreated": "2025-06-21T09:31:02.1792511+00:00", "fileLastModified": "2025-07-14T09:31:02.1792514+00:00", @@ -58457,11 +58457,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 64823, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1771 }" }, "fileCreated": "2025-06-21T09:31:02.181209+00:00", "fileLastModified": "2025-07-14T09:31:02.1812092+00:00", @@ -58490,11 +58490,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 21359, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1772 }" }, "fileCreated": "2025-06-21T09:31:02.1830754+00:00", "fileLastModified": "2025-07-14T09:31:02.1830756+00:00", @@ -58523,11 +58523,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 47153, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1773 }" }, "fileCreated": "2025-06-21T09:31:02.1848733+00:00", "fileLastModified": "2025-07-14T09:31:02.1848735+00:00", @@ -58556,11 +58556,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 60078, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1774 }" }, "fileCreated": "2025-06-21T09:31:02.1870258+00:00", "fileLastModified": "2025-07-14T09:31:02.187026+00:00", @@ -58589,11 +58589,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 33208, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1775 }" }, "fileCreated": "2025-06-21T09:31:02.18904+00:00", "fileLastModified": "2025-07-14T09:31:02.1890402+00:00", @@ -58622,11 +58622,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 54195, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1776 }" }, "fileCreated": "2025-06-21T09:31:02.1909961+00:00", "fileLastModified": "2025-07-14T09:31:02.1909964+00:00", @@ -58655,11 +58655,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 42966, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1777 }" }, "fileCreated": "2025-06-21T09:31:02.1929744+00:00", "fileLastModified": "2025-07-14T09:31:02.1929748+00:00", @@ -58688,11 +58688,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 41248, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1778 }" }, "fileCreated": "2025-06-21T09:31:02.194812+00:00", "fileLastModified": "2025-07-14T09:31:02.1948122+00:00", @@ -58721,11 +58721,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 54148, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1779 }" }, "fileCreated": "2025-06-21T09:31:02.1966055+00:00", "fileLastModified": "2025-07-14T09:31:02.1966057+00:00", @@ -58754,11 +58754,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 50383, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1780 }" }, "fileCreated": "2025-06-21T09:31:02.1993291+00:00", "fileLastModified": "2025-07-14T09:31:02.1993294+00:00", @@ -58787,11 +58787,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29142, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1781 }" }, "fileCreated": "2025-06-21T09:31:02.2011179+00:00", "fileLastModified": "2025-07-14T09:31:02.2011181+00:00", @@ -58820,11 +58820,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 91340, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1782 }" }, "fileCreated": "2025-06-21T09:31:02.2029037+00:00", "fileLastModified": "2025-07-14T09:31:02.202904+00:00", @@ -58853,11 +58853,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 28136, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1783 }" }, "fileCreated": "2025-06-21T09:31:02.2052028+00:00", "fileLastModified": "2025-07-14T09:31:02.2052031+00:00", @@ -58886,11 +58886,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 32818, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1784 }" }, "fileCreated": "2025-06-21T09:31:02.2070777+00:00", "fileLastModified": "2025-07-14T09:31:02.207078+00:00", @@ -58919,11 +58919,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 29397, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1785 }" }, "fileCreated": "2025-06-21T09:31:02.2088166+00:00", "fileLastModified": "2025-07-14T09:31:02.2088168+00:00", @@ -58952,11 +58952,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 49625, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1786 }" }, "fileCreated": "2025-06-21T09:31:02.2110792+00:00", "fileLastModified": "2025-07-14T09:31:02.2110795+00:00", @@ -58985,11 +58985,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 42673, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1787 }" }, "fileCreated": "2025-06-21T09:31:02.2128496+00:00", "fileLastModified": "2025-07-14T09:31:02.2128498+00:00", @@ -59018,11 +59018,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 60127, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1788 }" }, "fileCreated": "2025-06-21T09:31:02.2148505+00:00", "fileLastModified": "2025-07-14T09:31:02.2148507+00:00", @@ -59051,11 +59051,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33295, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1789 }" }, "fileCreated": "2025-06-21T09:31:02.21664+00:00", "fileLastModified": "2025-07-14T09:31:02.2166402+00:00", @@ -59084,11 +59084,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 48877, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1790 }" }, "fileCreated": "2025-06-21T09:31:02.2184088+00:00", "fileLastModified": "2025-07-14T09:31:02.218409+00:00", @@ -59117,11 +59117,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74769, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1791 }" }, "fileCreated": "2025-06-21T09:31:02.2208392+00:00", "fileLastModified": "2025-07-14T09:31:02.2208395+00:00", @@ -59150,11 +59150,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 36815, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1792 }" }, "fileCreated": "2025-06-21T09:31:02.2225952+00:00", "fileLastModified": "2025-07-14T09:31:02.2225955+00:00", @@ -59183,11 +59183,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 21662, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1793 }" }, "fileCreated": "2025-06-21T09:31:02.2244118+00:00", "fileLastModified": "2025-07-14T09:31:02.224412+00:00", @@ -59216,11 +59216,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76021, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1794 }" }, "fileCreated": "2025-06-21T09:31:02.2261262+00:00", "fileLastModified": "2025-07-14T09:31:02.2261265+00:00", @@ -59249,11 +59249,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 64812, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1795 }" }, "fileCreated": "2025-06-21T09:31:02.2278753+00:00", "fileLastModified": "2025-07-14T09:31:02.2278755+00:00", @@ -59282,11 +59282,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44052, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1796 }" }, "fileCreated": "2025-06-21T09:31:02.2297343+00:00", "fileLastModified": "2025-07-14T09:31:02.2297345+00:00", @@ -59315,11 +59315,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 24958, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1797 }" }, "fileCreated": "2025-06-21T09:31:02.231912+00:00", "fileLastModified": "2025-07-14T09:31:02.2319122+00:00", @@ -59348,11 +59348,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73087, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1798 }" }, "fileCreated": "2025-06-21T09:31:02.2335964+00:00", "fileLastModified": "2025-07-14T09:31:02.2335966+00:00", @@ -59381,11 +59381,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 57731, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1799 }" }, "fileCreated": "2025-06-21T09:31:02.235429+00:00", "fileLastModified": "2025-07-14T09:31:02.2354292+00:00", @@ -59414,11 +59414,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 53777, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1800 }" }, "fileCreated": "2025-06-21T09:31:02.2374249+00:00", "fileLastModified": "2025-07-14T09:31:02.2374251+00:00", @@ -59447,11 +59447,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 92785, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1801 }" }, "fileCreated": "2025-06-21T09:31:02.2392848+00:00", "fileLastModified": "2025-07-14T09:31:02.239285+00:00", @@ -59480,11 +59480,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 54199, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1802 }" }, "fileCreated": "2025-06-21T09:31:02.2412105+00:00", "fileLastModified": "2025-07-14T09:31:02.2412107+00:00", @@ -59513,11 +59513,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59779, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1803 }" }, "fileCreated": "2025-06-21T09:31:02.2433612+00:00", "fileLastModified": "2025-07-14T09:31:02.2433615+00:00", @@ -59546,11 +59546,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 80883, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1804 }" }, "fileCreated": "2025-06-21T09:31:02.2454738+00:00", "fileLastModified": "2025-07-14T09:31:02.2454741+00:00", @@ -59579,11 +59579,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 87842, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1805 }" }, "fileCreated": "2025-06-21T09:31:02.2472879+00:00", "fileLastModified": "2025-07-14T09:31:02.2472881+00:00", @@ -59612,11 +59612,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 45345, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1806 }" }, "fileCreated": "2025-06-21T09:31:02.2490595+00:00", "fileLastModified": "2025-07-14T09:31:02.2490597+00:00", @@ -59645,11 +59645,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 44122, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1807 }" }, "fileCreated": "2025-06-21T09:31:02.251125+00:00", "fileLastModified": "2025-07-14T09:31:02.2511252+00:00", @@ -59678,11 +59678,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 53526, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1808 }" }, "fileCreated": "2025-06-21T09:31:02.2531111+00:00", "fileLastModified": "2025-07-14T09:31:02.2531118+00:00", @@ -59711,11 +59711,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82905, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1809 }" }, "fileCreated": "2025-06-21T09:31:02.2556697+00:00", "fileLastModified": "2025-07-14T09:31:02.25567+00:00", @@ -59744,11 +59744,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 57845, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1810 }" }, "fileCreated": "2025-06-21T09:31:02.2575622+00:00", "fileLastModified": "2025-07-14T09:31:02.2575625+00:00", @@ -59777,11 +59777,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 76467, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1811 }" }, "fileCreated": "2025-06-21T09:31:02.2594001+00:00", "fileLastModified": "2025-07-14T09:31:02.2594004+00:00", @@ -59810,11 +59810,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 40670, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1812 }" }, "fileCreated": "2025-06-21T09:31:02.2612188+00:00", "fileLastModified": "2025-07-14T09:31:02.2612191+00:00", @@ -59843,11 +59843,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 53100, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1813 }" }, "fileCreated": "2025-06-21T09:31:02.2630552+00:00", "fileLastModified": "2025-07-14T09:31:02.2630557+00:00", @@ -59876,11 +59876,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 79066, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1814 }" }, "fileCreated": "2025-06-21T09:31:02.264925+00:00", "fileLastModified": "2025-07-14T09:31:02.2649253+00:00", @@ -59909,11 +59909,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 63979, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1815 }" }, "fileCreated": "2025-06-21T09:31:02.2677+00:00", "fileLastModified": "2025-07-14T09:31:02.2677003+00:00", @@ -59942,11 +59942,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 38074, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1816 }" }, "fileCreated": "2025-06-21T09:31:02.2695491+00:00", "fileLastModified": "2025-07-14T09:31:02.2695495+00:00", @@ -59975,11 +59975,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 40265, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1817 }" }, "fileCreated": "2025-06-21T09:31:02.2715009+00:00", "fileLastModified": "2025-07-14T09:31:02.2715012+00:00", @@ -60008,11 +60008,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 21544, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1818 }" }, "fileCreated": "2025-06-21T09:31:02.2736515+00:00", "fileLastModified": "2025-07-14T09:31:02.2736517+00:00", @@ -60041,11 +60041,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 43399, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1819 }" }, "fileCreated": "2025-06-21T09:31:02.275631+00:00", "fileLastModified": "2025-07-14T09:31:02.2756312+00:00", @@ -60074,11 +60074,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 39468, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1820 }" }, "fileCreated": "2025-06-21T09:31:02.2775845+00:00", "fileLastModified": "2025-07-14T09:31:02.2775847+00:00", @@ -60107,11 +60107,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 64294, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1821 }" }, "fileCreated": "2025-06-21T09:31:02.2799821+00:00", "fileLastModified": "2025-07-14T09:31:02.2799823+00:00", @@ -60140,11 +60140,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97192, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1822 }" }, "fileCreated": "2025-06-21T09:31:02.282471+00:00", "fileLastModified": "2025-07-14T09:31:02.2824713+00:00", @@ -60173,11 +60173,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 36318, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1823 }" }, "fileCreated": "2025-06-21T09:31:02.2843478+00:00", "fileLastModified": "2025-07-14T09:31:02.2843481+00:00", @@ -60206,11 +60206,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 39258, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1824 }" }, "fileCreated": "2025-06-21T09:31:02.286278+00:00", "fileLastModified": "2025-07-14T09:31:02.2862783+00:00", @@ -60239,11 +60239,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 60154, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1825 }" }, "fileCreated": "2025-06-21T09:31:02.2880729+00:00", "fileLastModified": "2025-07-14T09:31:02.2880731+00:00", @@ -60272,11 +60272,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 67126, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1826 }" }, "fileCreated": "2025-06-21T09:31:02.2902799+00:00", "fileLastModified": "2025-07-14T09:31:02.2902802+00:00", @@ -60305,11 +60305,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 76097, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1827 }" }, "fileCreated": "2025-06-21T09:31:02.2920877+00:00", "fileLastModified": "2025-07-14T09:31:02.2920879+00:00", @@ -60338,11 +60338,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 48927, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1828 }" }, "fileCreated": "2025-06-21T09:31:02.2938881+00:00", "fileLastModified": "2025-07-14T09:31:02.2938883+00:00", @@ -60371,11 +60371,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 80945, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1829 }" }, "fileCreated": "2025-06-21T09:31:02.2956541+00:00", "fileLastModified": "2025-07-14T09:31:02.2956543+00:00", @@ -60404,11 +60404,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 82903, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1830 }" }, "fileCreated": "2025-06-21T09:31:02.2979057+00:00", "fileLastModified": "2025-07-14T09:31:02.297906+00:00", @@ -60437,11 +60437,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 52301, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1831 }" }, "fileCreated": "2025-06-21T09:31:02.2997993+00:00", "fileLastModified": "2025-07-14T09:31:02.2997996+00:00", @@ -60470,11 +60470,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 90906, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1832 }" }, "fileCreated": "2025-06-21T09:31:02.3021558+00:00", "fileLastModified": "2025-07-14T09:31:02.3021561+00:00", @@ -60503,11 +60503,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 56906, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1833 }" }, "fileCreated": "2025-06-21T09:31:02.3039543+00:00", "fileLastModified": "2025-07-14T09:31:02.3039546+00:00", @@ -60536,11 +60536,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 84392, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1834 }" }, "fileCreated": "2025-06-21T09:31:02.3056723+00:00", "fileLastModified": "2025-07-14T09:31:02.3056725+00:00", @@ -60569,11 +60569,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 54991, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1835 }" }, "fileCreated": "2025-06-21T09:31:02.3075972+00:00", "fileLastModified": "2025-07-14T09:31:02.3075974+00:00", @@ -60602,11 +60602,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 59881, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1836 }" }, "fileCreated": "2025-06-21T09:31:02.3094005+00:00", "fileLastModified": "2025-07-14T09:31:02.3094007+00:00", @@ -60635,11 +60635,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 99437, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1837 }" }, "fileCreated": "2025-06-21T09:31:02.3112113+00:00", "fileLastModified": "2025-07-14T09:31:02.3112116+00:00", @@ -60668,11 +60668,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 50823, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1838 }" }, "fileCreated": "2025-06-21T09:31:02.3138126+00:00", "fileLastModified": "2025-07-14T09:31:02.3138128+00:00", @@ -60701,11 +60701,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76337, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1839 }" }, "fileCreated": "2025-06-21T09:31:02.3156062+00:00", "fileLastModified": "2025-07-14T09:31:02.3156064+00:00", @@ -60734,11 +60734,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 99140, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1840 }" }, "fileCreated": "2025-06-21T09:31:02.3173668+00:00", "fileLastModified": "2025-07-14T09:31:02.3173671+00:00", @@ -60767,11 +60767,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 36732, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1841 }" }, "fileCreated": "2025-06-21T09:31:02.3191745+00:00", "fileLastModified": "2025-07-14T09:31:02.3191747+00:00", @@ -60800,11 +60800,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 74000, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1842 }" }, "fileCreated": "2025-06-21T09:31:02.3209292+00:00", "fileLastModified": "2025-07-14T09:31:02.3209294+00:00", @@ -60833,11 +60833,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 37381, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1843 }" }, "fileCreated": "2025-06-21T09:31:02.3231095+00:00", "fileLastModified": "2025-07-14T09:31:02.3231097+00:00", @@ -60866,11 +60866,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 95541, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1844 }" }, "fileCreated": "2025-06-21T09:31:02.3248663+00:00", "fileLastModified": "2025-07-14T09:31:02.3248665+00:00", @@ -60899,11 +60899,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 74033, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1845 }" }, "fileCreated": "2025-06-21T09:31:02.3266233+00:00", "fileLastModified": "2025-07-14T09:31:02.3266235+00:00", @@ -60932,11 +60932,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87607, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1846 }" }, "fileCreated": "2025-06-21T09:31:02.3288268+00:00", "fileLastModified": "2025-07-14T09:31:02.3288271+00:00", @@ -60965,11 +60965,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 97319, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1847 }" }, "fileCreated": "2025-06-21T09:31:02.3307898+00:00", "fileLastModified": "2025-07-14T09:31:02.33079+00:00", @@ -60998,11 +60998,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 43061, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1848 }" }, "fileCreated": "2025-06-21T09:31:02.332639+00:00", "fileLastModified": "2025-07-14T09:31:02.3326393+00:00", @@ -61031,11 +61031,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 78071, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1849 }" }, "fileCreated": "2025-06-21T09:31:02.3350675+00:00", "fileLastModified": "2025-07-14T09:31:02.3350677+00:00", @@ -61064,11 +61064,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 40606, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1850 }" }, "fileCreated": "2025-06-21T09:31:02.336868+00:00", "fileLastModified": "2025-07-14T09:31:02.3368682+00:00", @@ -61097,11 +61097,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 80611, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1851 }" }, "fileCreated": "2025-06-21T09:31:02.338709+00:00", "fileLastModified": "2025-07-14T09:31:02.3387092+00:00", @@ -61130,11 +61130,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 33779, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1852 }" }, "fileCreated": "2025-06-21T09:31:02.3405733+00:00", "fileLastModified": "2025-07-14T09:31:02.3405735+00:00", @@ -61163,11 +61163,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26379, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1853 }" }, "fileCreated": "2025-06-21T09:31:02.3423952+00:00", "fileLastModified": "2025-07-14T09:31:02.3423953+00:00", @@ -61196,11 +61196,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 70995, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1854 }" }, "fileCreated": "2025-06-21T09:31:02.3454736+00:00", "fileLastModified": "2025-07-14T09:31:02.3454739+00:00", @@ -61229,11 +61229,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 71266, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1855 }" }, "fileCreated": "2025-06-21T09:31:02.3473482+00:00", "fileLastModified": "2025-07-14T09:31:02.3473484+00:00", @@ -61262,11 +61262,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 35570, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1856 }" }, "fileCreated": "2025-06-21T09:31:02.349526+00:00", "fileLastModified": "2025-07-14T09:31:02.3495263+00:00", @@ -61295,11 +61295,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 30614, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1857 }" }, "fileCreated": "2025-06-21T09:31:02.3517687+00:00", "fileLastModified": "2025-07-14T09:31:02.3517689+00:00", @@ -61328,11 +61328,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 92345, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1858 }" }, "fileCreated": "2025-06-21T09:31:02.3537834+00:00", "fileLastModified": "2025-07-14T09:31:02.3537836+00:00", @@ -61361,11 +61361,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 94591, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1859 }" }, "fileCreated": "2025-06-21T09:31:02.3556711+00:00", "fileLastModified": "2025-07-14T09:31:02.3556714+00:00", @@ -61394,11 +61394,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 33167, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1860 }" }, "fileCreated": "2025-06-21T09:31:02.3579215+00:00", "fileLastModified": "2025-07-14T09:31:02.3579218+00:00", @@ -61427,11 +61427,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 52709, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1861 }" }, "fileCreated": "2025-06-21T09:31:02.3603391+00:00", "fileLastModified": "2025-07-14T09:31:02.3603394+00:00", @@ -61460,11 +61460,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 53355, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1862 }" }, "fileCreated": "2025-06-21T09:31:02.3621563+00:00", "fileLastModified": "2025-07-14T09:31:02.3621565+00:00", @@ -61493,11 +61493,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 52867, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1863 }" }, "fileCreated": "2025-06-21T09:31:02.3640097+00:00", "fileLastModified": "2025-07-14T09:31:02.36401+00:00", @@ -61526,11 +61526,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 41030, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1864 }" }, "fileCreated": "2025-06-21T09:31:02.3661949+00:00", "fileLastModified": "2025-07-14T09:31:02.3661952+00:00", @@ -61559,11 +61559,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 34038, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1865 }" }, "fileCreated": "2025-06-21T09:31:02.3685902+00:00", "fileLastModified": "2025-07-14T09:31:02.3685905+00:00", @@ -61592,11 +61592,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 75962, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1866 }" }, "fileCreated": "2025-06-21T09:31:02.3706364+00:00", "fileLastModified": "2025-07-14T09:31:02.3706367+00:00", @@ -61625,11 +61625,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95505, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1867 }" }, "fileCreated": "2025-06-21T09:31:02.3724866+00:00", "fileLastModified": "2025-07-14T09:31:02.3724868+00:00", @@ -61658,11 +61658,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 85776, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1868 }" }, "fileCreated": "2025-06-21T09:31:02.3744663+00:00", "fileLastModified": "2025-07-14T09:31:02.3744666+00:00", @@ -61691,11 +61691,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 44371, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1869 }" }, "fileCreated": "2025-06-21T09:31:02.3768695+00:00", "fileLastModified": "2025-07-14T09:31:02.3768698+00:00", @@ -61724,11 +61724,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 95427, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1870 }" }, "fileCreated": "2025-06-21T09:31:02.3786619+00:00", "fileLastModified": "2025-07-14T09:31:02.3786622+00:00", @@ -61757,11 +61757,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 43681, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1871 }" }, "fileCreated": "2025-06-21T09:31:02.3810163+00:00", "fileLastModified": "2025-07-14T09:31:02.3810165+00:00", @@ -61790,11 +61790,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 66557, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1872 }" }, "fileCreated": "2025-06-21T09:31:02.3831487+00:00", "fileLastModified": "2025-07-14T09:31:02.383149+00:00", @@ -61823,11 +61823,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95122, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1873 }" }, "fileCreated": "2025-06-21T09:31:02.3849661+00:00", "fileLastModified": "2025-07-14T09:31:02.3849663+00:00", @@ -61856,11 +61856,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 55029, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1874 }" }, "fileCreated": "2025-06-21T09:31:02.3868123+00:00", "fileLastModified": "2025-07-14T09:31:02.3868125+00:00", @@ -61889,11 +61889,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 49823, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1875 }" }, "fileCreated": "2025-06-21T09:31:02.3886584+00:00", "fileLastModified": "2025-07-14T09:31:02.388659+00:00", @@ -61922,11 +61922,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 27034, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1876 }" }, "fileCreated": "2025-06-21T09:31:02.391793+00:00", "fileLastModified": "2025-07-14T09:31:02.3917933+00:00", @@ -61955,11 +61955,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 20539, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1877 }" }, "fileCreated": "2025-06-21T09:31:02.3938199+00:00", "fileLastModified": "2025-07-14T09:31:02.3938201+00:00", @@ -61988,11 +61988,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 67046, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1878 }" }, "fileCreated": "2025-06-21T09:31:02.3956758+00:00", "fileLastModified": "2025-07-14T09:31:02.3956761+00:00", @@ -62021,11 +62021,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 34389, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1879 }" }, "fileCreated": "2025-06-21T09:31:02.3975605+00:00", "fileLastModified": "2025-07-14T09:31:02.3975608+00:00", @@ -62054,11 +62054,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 88169, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1880 }" }, "fileCreated": "2025-06-21T09:31:02.3993522+00:00", "fileLastModified": "2025-07-14T09:31:02.3993524+00:00", @@ -62087,11 +62087,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 94860, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1881 }" }, "fileCreated": "2025-06-21T09:31:02.4015692+00:00", "fileLastModified": "2025-07-14T09:31:02.4015694+00:00", @@ -62120,11 +62120,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 83023, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1882 }" }, "fileCreated": "2025-06-21T09:31:02.4034911+00:00", "fileLastModified": "2025-07-14T09:31:02.4034914+00:00", @@ -62153,11 +62153,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 63003, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1883 }" }, "fileCreated": "2025-06-21T09:31:02.4054273+00:00", "fileLastModified": "2025-07-14T09:31:02.4054277+00:00", @@ -62186,11 +62186,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 76806, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1884 }" }, "fileCreated": "2025-06-21T09:31:02.4075016+00:00", "fileLastModified": "2025-07-14T09:31:02.4075018+00:00", @@ -62219,11 +62219,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 50294, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1885 }" }, "fileCreated": "2025-06-21T09:31:02.4094408+00:00", "fileLastModified": "2025-07-14T09:31:02.409441+00:00", @@ -62252,11 +62252,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 70648, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1886 }" }, "fileCreated": "2025-06-21T09:31:02.4113538+00:00", "fileLastModified": "2025-07-14T09:31:02.411354+00:00", @@ -62285,11 +62285,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 34154, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1887 }" }, "fileCreated": "2025-06-21T09:31:02.4137255+00:00", "fileLastModified": "2025-07-14T09:31:02.4137257+00:00", @@ -62318,11 +62318,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 31712, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1888 }" }, "fileCreated": "2025-06-21T09:31:02.4157397+00:00", "fileLastModified": "2025-07-14T09:31:02.41574+00:00", @@ -62351,11 +62351,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 50639, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1889 }" }, "fileCreated": "2025-06-21T09:31:02.4175934+00:00", "fileLastModified": "2025-07-14T09:31:02.4175936+00:00", @@ -62384,11 +62384,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 83754, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1890 }" }, "fileCreated": "2025-06-21T09:31:02.4194789+00:00", "fileLastModified": "2025-07-14T09:31:02.4194791+00:00", @@ -62417,11 +62417,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 84157, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1891 }" }, "fileCreated": "2025-06-21T09:31:02.4218426+00:00", "fileLastModified": "2025-07-14T09:31:02.4218428+00:00", @@ -62450,11 +62450,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 51655, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1892 }" }, "fileCreated": "2025-06-21T09:31:02.424255+00:00", "fileLastModified": "2025-07-14T09:31:02.4242553+00:00", @@ -62483,11 +62483,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48894, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1893 }" }, "fileCreated": "2025-06-21T09:31:02.4261063+00:00", "fileLastModified": "2025-07-14T09:31:02.4261065+00:00", @@ -62516,11 +62516,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 29982, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1894 }" }, "fileCreated": "2025-06-21T09:31:02.4279529+00:00", "fileLastModified": "2025-07-14T09:31:02.4279531+00:00", @@ -62549,11 +62549,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 97745, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1895 }" }, "fileCreated": "2025-06-21T09:31:02.4298067+00:00", "fileLastModified": "2025-07-14T09:31:02.4298068+00:00", @@ -62582,11 +62582,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 68373, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1896 }" }, "fileCreated": "2025-06-21T09:31:02.4318962+00:00", "fileLastModified": "2025-07-14T09:31:02.4318964+00:00", @@ -62615,11 +62615,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 97043, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1897 }" }, "fileCreated": "2025-06-21T09:31:02.4342253+00:00", "fileLastModified": "2025-07-14T09:31:02.4342255+00:00", @@ -62648,11 +62648,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 37304, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1898 }" }, "fileCreated": "2025-06-21T09:31:02.4360352+00:00", "fileLastModified": "2025-07-14T09:31:02.4360355+00:00", @@ -62681,11 +62681,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 50072, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1899 }" }, "fileCreated": "2025-06-21T09:31:02.4384483+00:00", "fileLastModified": "2025-07-14T09:31:02.4384485+00:00", @@ -62714,11 +62714,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 83581, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1900 }" }, "fileCreated": "2025-06-21T09:31:02.4404743+00:00", "fileLastModified": "2025-07-14T09:31:02.4404745+00:00", @@ -62747,11 +62747,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 20991, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1901 }" }, "fileCreated": "2025-06-21T09:31:02.442384+00:00", "fileLastModified": "2025-07-14T09:31:02.4423842+00:00", @@ -62780,11 +62780,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 89490, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1902 }" }, "fileCreated": "2025-06-21T09:31:02.444294+00:00", "fileLastModified": "2025-07-14T09:31:02.4442942+00:00", @@ -62813,11 +62813,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 93577, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1903 }" }, "fileCreated": "2025-06-21T09:31:02.4465195+00:00", "fileLastModified": "2025-07-14T09:31:02.4465197+00:00", @@ -62846,11 +62846,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 94796, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1904 }" }, "fileCreated": "2025-06-21T09:31:02.448364+00:00", "fileLastModified": "2025-07-14T09:31:02.4483642+00:00", @@ -62879,11 +62879,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 32020, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1905 }" }, "fileCreated": "2025-06-21T09:31:02.4502837+00:00", "fileLastModified": "2025-07-14T09:31:02.4502839+00:00", @@ -62912,11 +62912,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 94083, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1906 }" }, "fileCreated": "2025-06-21T09:31:02.4521475+00:00", "fileLastModified": "2025-07-14T09:31:02.4521477+00:00", @@ -62945,11 +62945,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 83359, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1907 }" }, "fileCreated": "2025-06-21T09:31:02.4546774+00:00", "fileLastModified": "2025-07-14T09:31:02.4546776+00:00", @@ -62978,11 +62978,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 43965, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1908 }" }, "fileCreated": "2025-06-21T09:31:02.4570499+00:00", "fileLastModified": "2025-07-14T09:31:02.4570501+00:00", @@ -63011,11 +63011,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 71006, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1909 }" }, "fileCreated": "2025-06-21T09:31:02.4588718+00:00", "fileLastModified": "2025-07-14T09:31:02.458872+00:00", @@ -63044,11 +63044,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 27822, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1910 }" }, "fileCreated": "2025-06-21T09:31:02.4608987+00:00", "fileLastModified": "2025-07-14T09:31:02.4608989+00:00", @@ -63077,11 +63077,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 72927, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1911 }" }, "fileCreated": "2025-06-21T09:31:02.4627815+00:00", "fileLastModified": "2025-07-14T09:31:02.4627817+00:00", @@ -63110,11 +63110,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 90249, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1912 }" }, "fileCreated": "2025-06-21T09:31:02.4646165+00:00", "fileLastModified": "2025-07-14T09:31:02.4646166+00:00", @@ -63143,11 +63143,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 31343, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1913 }" }, "fileCreated": "2025-06-21T09:31:02.4669788+00:00", "fileLastModified": "2025-07-14T09:31:02.466979+00:00", @@ -63176,11 +63176,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 23562, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1914 }" }, "fileCreated": "2025-06-21T09:31:02.4692594+00:00", "fileLastModified": "2025-07-14T09:31:02.4692596+00:00", @@ -63209,11 +63209,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 28580, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1915 }" }, "fileCreated": "2025-06-21T09:31:02.4711907+00:00", "fileLastModified": "2025-07-14T09:31:02.4711909+00:00", @@ -63242,11 +63242,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 27693, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1916 }" }, "fileCreated": "2025-06-21T09:31:02.4731242+00:00", "fileLastModified": "2025-07-14T09:31:02.4731244+00:00", @@ -63275,11 +63275,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 49869, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1917 }" }, "fileCreated": "2025-06-21T09:31:02.4750205+00:00", "fileLastModified": "2025-07-14T09:31:02.4750207+00:00", @@ -63308,11 +63308,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 95887, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1918 }" }, "fileCreated": "2025-06-21T09:31:02.4773358+00:00", "fileLastModified": "2025-07-14T09:31:02.4773361+00:00", @@ -63341,11 +63341,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 33724, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1919 }" }, "fileCreated": "2025-06-21T09:31:02.4791942+00:00", "fileLastModified": "2025-07-14T09:31:02.4791945+00:00", @@ -63374,11 +63374,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 65550, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1920 }" }, "fileCreated": "2025-06-21T09:31:02.4810062+00:00", "fileLastModified": "2025-07-14T09:31:02.4810064+00:00", @@ -63407,11 +63407,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 87102, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1921 }" }, "fileCreated": "2025-06-21T09:31:02.4828256+00:00", "fileLastModified": "2025-07-14T09:31:02.4828258+00:00", @@ -63440,11 +63440,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 44292, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1922 }" }, "fileCreated": "2025-06-21T09:31:02.4849829+00:00", "fileLastModified": "2025-07-14T09:31:02.4849831+00:00", @@ -63473,11 +63473,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 65030, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1923 }" }, "fileCreated": "2025-06-21T09:31:02.4872339+00:00", "fileLastModified": "2025-07-14T09:31:02.4872341+00:00", @@ -63506,11 +63506,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 38781, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1924 }" }, "fileCreated": "2025-06-21T09:31:02.4890101+00:00", "fileLastModified": "2025-07-14T09:31:02.4890103+00:00", @@ -63539,11 +63539,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 99428, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1925 }" }, "fileCreated": "2025-06-21T09:31:02.4907373+00:00", "fileLastModified": "2025-07-14T09:31:02.4907375+00:00", @@ -63572,11 +63572,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53603, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1926 }" }, "fileCreated": "2025-06-21T09:31:02.4925919+00:00", "fileLastModified": "2025-07-14T09:31:02.4925921+00:00", @@ -63605,11 +63605,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 35337, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1927 }" }, "fileCreated": "2025-06-21T09:31:02.4944994+00:00", "fileLastModified": "2025-07-14T09:31:02.4944996+00:00", @@ -63638,11 +63638,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 73238, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1928 }" }, "fileCreated": "2025-06-21T09:31:02.4967247+00:00", "fileLastModified": "2025-07-14T09:31:02.4967249+00:00", @@ -63671,11 +63671,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44840, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1929 }" }, "fileCreated": "2025-06-21T09:31:02.4985464+00:00", "fileLastModified": "2025-07-14T09:31:02.4985466+00:00", @@ -63704,11 +63704,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 78694, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1930 }" }, "fileCreated": "2025-06-21T09:31:02.5003755+00:00", "fileLastModified": "2025-07-14T09:31:02.5003757+00:00", @@ -63737,11 +63737,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 51234, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1931 }" }, "fileCreated": "2025-06-21T09:31:02.5021542+00:00", "fileLastModified": "2025-07-14T09:31:02.5021544+00:00", @@ -63770,11 +63770,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 34376, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1932 }" }, "fileCreated": "2025-06-21T09:31:02.5038897+00:00", "fileLastModified": "2025-07-14T09:31:02.5038899+00:00", @@ -63803,11 +63803,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 97369, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1933 }" }, "fileCreated": "2025-06-21T09:31:02.5061602+00:00", "fileLastModified": "2025-07-14T09:31:02.5061604+00:00", @@ -63836,11 +63836,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87130, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1934 }" }, "fileCreated": "2025-06-21T09:31:02.5080293+00:00", "fileLastModified": "2025-07-14T09:31:02.5080295+00:00", @@ -63869,11 +63869,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 28894, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1935 }" }, "fileCreated": "2025-06-21T09:31:02.5099171+00:00", "fileLastModified": "2025-07-14T09:31:02.5099173+00:00", @@ -63902,11 +63902,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 79210, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1936 }" }, "fileCreated": "2025-06-21T09:31:02.5116656+00:00", "fileLastModified": "2025-07-14T09:31:02.5116658+00:00", @@ -63935,11 +63935,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 28658, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1937 }" }, "fileCreated": "2025-06-21T09:31:02.5135287+00:00", "fileLastModified": "2025-07-14T09:31:02.5135289+00:00", @@ -63968,11 +63968,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 25756, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1938 }" }, "fileCreated": "2025-06-21T09:31:02.5161461+00:00", "fileLastModified": "2025-07-14T09:31:02.5161464+00:00", @@ -64001,11 +64001,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 87234, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1939 }" }, "fileCreated": "2025-06-21T09:31:02.5179415+00:00", "fileLastModified": "2025-07-14T09:31:02.5179417+00:00", @@ -64034,11 +64034,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 67185, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1940 }" }, "fileCreated": "2025-06-21T09:31:02.5197665+00:00", "fileLastModified": "2025-07-14T09:31:02.5197667+00:00", @@ -64067,11 +64067,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48178, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1941 }" }, "fileCreated": "2025-06-21T09:31:02.5215601+00:00", "fileLastModified": "2025-07-14T09:31:02.5215603+00:00", @@ -64100,11 +64100,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 47708, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1942 }" }, "fileCreated": "2025-06-21T09:31:02.5234573+00:00", "fileLastModified": "2025-07-14T09:31:02.5234575+00:00", @@ -64133,11 +64133,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 89360, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1943 }" }, "fileCreated": "2025-06-21T09:31:02.5258092+00:00", "fileLastModified": "2025-07-14T09:31:02.5258094+00:00", @@ -64166,11 +64166,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 92522, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1944 }" }, "fileCreated": "2025-06-21T09:31:02.527568+00:00", "fileLastModified": "2025-07-14T09:31:02.5275682+00:00", @@ -64199,11 +64199,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 59404, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1945 }" }, "fileCreated": "2025-06-21T09:31:02.5293485+00:00", "fileLastModified": "2025-07-14T09:31:02.5293487+00:00", @@ -64232,11 +64232,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 96784, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1946 }" }, "fileCreated": "2025-06-21T09:31:02.5316891+00:00", "fileLastModified": "2025-07-14T09:31:02.5316894+00:00", @@ -64265,11 +64265,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 44279, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1947 }" }, "fileCreated": "2025-06-21T09:31:02.5335225+00:00", "fileLastModified": "2025-07-14T09:31:02.5335227+00:00", @@ -64298,11 +64298,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 28975, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1948 }" }, "fileCreated": "2025-06-21T09:31:02.5358916+00:00", "fileLastModified": "2025-07-14T09:31:02.5358918+00:00", @@ -64331,11 +64331,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 63460, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1949 }" }, "fileCreated": "2025-06-21T09:31:02.5377529+00:00", "fileLastModified": "2025-07-14T09:31:02.5377531+00:00", @@ -64364,11 +64364,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 23678, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1950 }" }, "fileCreated": "2025-06-21T09:31:02.5395516+00:00", "fileLastModified": "2025-07-14T09:31:02.5395519+00:00", @@ -64397,11 +64397,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 92081, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1951 }" }, "fileCreated": "2025-06-21T09:31:02.5413257+00:00", "fileLastModified": "2025-07-14T09:31:02.541326+00:00", @@ -64430,11 +64430,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 76138, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1952 }" }, "fileCreated": "2025-06-21T09:31:02.5430869+00:00", "fileLastModified": "2025-07-14T09:31:02.5430872+00:00", @@ -64463,11 +64463,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 59152, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1953 }" }, "fileCreated": "2025-06-21T09:31:02.5457079+00:00", "fileLastModified": "2025-07-14T09:31:02.5457081+00:00", @@ -64496,11 +64496,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 65843, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1954 }" }, "fileCreated": "2025-06-21T09:31:02.5479996+00:00", "fileLastModified": "2025-07-14T09:31:02.5479998+00:00", @@ -64529,11 +64529,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 97516, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1955 }" }, "fileCreated": "2025-06-21T09:31:02.549841+00:00", "fileLastModified": "2025-07-14T09:31:02.5498413+00:00", @@ -64562,11 +64562,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 46838, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1956 }" }, "fileCreated": "2025-06-21T09:31:02.5516243+00:00", "fileLastModified": "2025-07-14T09:31:02.5516245+00:00", @@ -64595,11 +64595,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 24795, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1957 }" }, "fileCreated": "2025-06-21T09:31:02.5534642+00:00", "fileLastModified": "2025-07-14T09:31:02.5534644+00:00", @@ -64628,11 +64628,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 97877, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1958 }" }, "fileCreated": "2025-06-21T09:31:02.5557858+00:00", "fileLastModified": "2025-07-14T09:31:02.555786+00:00", @@ -64661,11 +64661,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 53179, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1959 }" }, "fileCreated": "2025-06-21T09:31:02.5576259+00:00", "fileLastModified": "2025-07-14T09:31:02.5576261+00:00", @@ -64694,11 +64694,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 83921, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1960 }" }, "fileCreated": "2025-06-21T09:31:02.5594718+00:00", "fileLastModified": "2025-07-14T09:31:02.5594721+00:00", @@ -64727,11 +64727,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79860, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1961 }" }, "fileCreated": "2025-06-21T09:31:02.5615838+00:00", "fileLastModified": "2025-07-14T09:31:02.561584+00:00", @@ -64760,11 +64760,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 82751, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1962 }" }, "fileCreated": "2025-06-21T09:31:02.5634348+00:00", "fileLastModified": "2025-07-14T09:31:02.563435+00:00", @@ -64793,11 +64793,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 79858, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1963 }" }, "fileCreated": "2025-06-21T09:31:02.565747+00:00", "fileLastModified": "2025-07-14T09:31:02.5657472+00:00", @@ -64826,11 +64826,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 71326, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1964 }" }, "fileCreated": "2025-06-21T09:31:02.5676556+00:00", "fileLastModified": "2025-07-14T09:31:02.5676558+00:00", @@ -64859,11 +64859,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 27071, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1965 }" }, "fileCreated": "2025-06-21T09:31:02.5695195+00:00", "fileLastModified": "2025-07-14T09:31:02.5695197+00:00", @@ -64892,11 +64892,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 39970, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1966 }" }, "fileCreated": "2025-06-21T09:31:02.5713614+00:00", "fileLastModified": "2025-07-14T09:31:02.5713616+00:00", @@ -64925,11 +64925,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 25171, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1967 }" }, "fileCreated": "2025-06-21T09:31:02.5732518+00:00", "fileLastModified": "2025-07-14T09:31:02.573252+00:00", @@ -64958,11 +64958,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 89613, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1968 }" }, "fileCreated": "2025-06-21T09:31:02.5755089+00:00", "fileLastModified": "2025-07-14T09:31:02.5755091+00:00", @@ -64991,11 +64991,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 29205, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1969 }" }, "fileCreated": "2025-06-21T09:31:02.5775266+00:00", "fileLastModified": "2025-07-14T09:31:02.5775268+00:00", @@ -65024,11 +65024,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 31408, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1970 }" }, "fileCreated": "2025-06-21T09:31:02.5795005+00:00", "fileLastModified": "2025-07-14T09:31:02.5795007+00:00", @@ -65057,11 +65057,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 48998, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1971 }" }, "fileCreated": "2025-06-21T09:31:02.5812824+00:00", "fileLastModified": "2025-07-14T09:31:02.5812826+00:00", @@ -65090,11 +65090,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 43614, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1972 }" }, "fileCreated": "2025-06-21T09:31:02.583008+00:00", "fileLastModified": "2025-07-14T09:31:02.5830082+00:00", @@ -65123,11 +65123,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 27148, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1973 }" }, "fileCreated": "2025-06-21T09:31:02.5851968+00:00", "fileLastModified": "2025-07-14T09:31:02.5851971+00:00", @@ -65156,11 +65156,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 58846, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1974 }" }, "fileCreated": "2025-06-21T09:31:02.5869241+00:00", "fileLastModified": "2025-07-14T09:31:02.5869244+00:00", @@ -65189,11 +65189,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 96443, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1975 }" }, "fileCreated": "2025-06-21T09:31:02.5886227+00:00", "fileLastModified": "2025-07-14T09:31:02.5886229+00:00", @@ -65222,11 +65222,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 78509, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1976 }" }, "fileCreated": "2025-06-21T09:31:02.5904071+00:00", "fileLastModified": "2025-07-14T09:31:02.5904073+00:00", @@ -65255,11 +65255,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 54978, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1977 }" }, "fileCreated": "2025-06-21T09:31:02.5921154+00:00", "fileLastModified": "2025-07-14T09:31:02.5921156+00:00", @@ -65288,11 +65288,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 87942, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1978 }" }, "fileCreated": "2025-06-21T09:31:02.5947998+00:00", "fileLastModified": "2025-07-14T09:31:02.5948+00:00", @@ -65321,11 +65321,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 26842, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1979 }" }, "fileCreated": "2025-06-21T09:31:02.5965519+00:00", "fileLastModified": "2025-07-14T09:31:02.5965521+00:00", @@ -65354,11 +65354,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 99449, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1980 }" }, "fileCreated": "2025-06-21T09:31:02.5982951+00:00", "fileLastModified": "2025-07-14T09:31:02.5982953+00:00", @@ -65387,11 +65387,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 90473, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1981 }" }, "fileCreated": "2025-06-21T09:31:02.6000742+00:00", "fileLastModified": "2025-07-14T09:31:02.6000744+00:00", @@ -65420,11 +65420,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 29163, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1982 }" }, "fileCreated": "2025-06-21T09:31:02.6018594+00:00", "fileLastModified": "2025-07-14T09:31:02.6018596+00:00", @@ -65453,11 +65453,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 49892, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1983 }" }, "fileCreated": "2025-06-21T09:31:02.6041609+00:00", "fileLastModified": "2025-07-14T09:31:02.6041611+00:00", @@ -65486,11 +65486,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 26354, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1984 }" }, "fileCreated": "2025-06-21T09:31:02.6060223+00:00", "fileLastModified": "2025-07-14T09:31:02.6060225+00:00", @@ -65519,11 +65519,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 59001, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1985 }" }, "fileCreated": "2025-06-21T09:31:02.6078336+00:00", "fileLastModified": "2025-07-14T09:31:02.6078338+00:00", @@ -65552,11 +65552,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 35858, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1986 }" }, "fileCreated": "2025-06-21T09:31:02.6107499+00:00", "fileLastModified": "2025-07-14T09:31:02.6107502+00:00", @@ -65585,11 +65585,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 55397, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1987 }" }, "fileCreated": "2025-06-21T09:31:02.6131985+00:00", "fileLastModified": "2025-07-14T09:31:02.6131987+00:00", @@ -65618,11 +65618,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 62217, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1988 }" }, "fileCreated": "2025-06-21T09:31:02.6150335+00:00", "fileLastModified": "2025-07-14T09:31:02.6150337+00:00", @@ -65651,11 +65651,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 37820, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1989 }" }, "fileCreated": "2025-06-21T09:31:02.6169656+00:00", "fileLastModified": "2025-07-14T09:31:02.6169658+00:00", @@ -65684,11 +65684,11 @@ "directoryName": { "value": "\\with\\sub\\folders" }, - "fullNameWithPath": "\\some\\file.png", + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", "fileSize": 57686, "isImage": true, "fileHandle": { - "value": "-some-file-png" + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1990 }" }, "fileCreated": "2025-06-21T09:31:02.618753+00:00", "fileLastModified": "2025-07-14T09:31:02.6187532+00:00", @@ -65717,11 +65717,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 95810, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1991 }" }, "fileCreated": "2025-06-21T09:31:02.6205227+00:00", "fileLastModified": "2025-07-14T09:31:02.6205229+00:00", @@ -65750,11 +65750,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 28793, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1992 }" }, "fileCreated": "2025-06-21T09:31:02.6228614+00:00", "fileLastModified": "2025-07-14T09:31:02.6228616+00:00", @@ -65783,11 +65783,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 96283, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1993 }" }, "fileCreated": "2025-06-21T09:31:02.6253604+00:00", "fileLastModified": "2025-07-14T09:31:02.6253606+00:00", @@ -65816,11 +65816,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 69294, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1994 }" }, "fileCreated": "2025-06-21T09:31:02.6272113+00:00", "fileLastModified": "2025-07-14T09:31:02.6272115+00:00", @@ -65849,11 +65849,11 @@ "directoryName": { "value": "\\with\\sub\\folder" }, - "fullNameWithPath": "\\some\\file.jpg", + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", "fileSize": 40441, "isImage": true, "fileHandle": { - "value": "-some-file-jpg" + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1995 }" }, "fileCreated": "2025-06-21T09:31:02.6291319+00:00", "fileLastModified": "2025-07-14T09:31:02.6291321+00:00", @@ -65882,11 +65882,11 @@ "directoryName": { "value": "\\one-level" }, - "fullNameWithPath": "\\some\\file.gif", + "fullNameWithPath": "\\one-level/\\some\\file.gif", "fileSize": 58962, "isImage": true, "fileHandle": { - "value": "-some-file-gif" + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1996 }" }, "fileCreated": "2025-06-21T09:31:02.6310984+00:00", "fileLastModified": "2025-07-14T09:31:02.6310986+00:00", @@ -65915,11 +65915,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 49576, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1997 }" }, "fileCreated": "2025-06-21T09:31:02.6333897+00:00", "fileLastModified": "2025-07-14T09:31:02.63339+00:00", @@ -65948,11 +65948,11 @@ "directoryName": { "value": "\\with\\sub\\folder\\and\\another" }, - "fullNameWithPath": "\\some\\file.bmp", + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", "fileSize": 45627, "isImage": true, "fileHandle": { - "value": "-some-file-bmp" + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1998 }" }, "fileCreated": "2025-06-21T09:31:02.6351973+00:00", "fileLastModified": "2025-07-14T09:31:02.6351975+00:00", @@ -65981,11 +65981,11 @@ "directoryName": { "value": "\\some\\directory" }, - "fullNameWithPath": "\\some\\file.txt", + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", "fileSize": 20658, "isImage": false, "fileHandle": { - "value": "-some-file-txt" + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1999 }" }, "fileCreated": "2025-06-21T09:31:02.6370035+00:00", "fileLastModified": "2025-07-14T09:31:02.6370037+00:00", @@ -65998,5 +65998,33005 @@ }, "updatedBy": "Jay Barden", "updatedOn": "2025-07-21T09:31:02.6370028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100001 + }, + "imageDetail": { + "width": 6394, + "height": 8458 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45197, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1 }98CC2012-9473-4E5D-99C8-A1AA58F4AF5E" + }, + "fileCreated": "2025-06-21T09:21:52.4468007+00:00", + "fileLastModified": "2025-07-14T09:21:52.446945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4458268+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100004 + }, + "imageDetail": { + "width": 7557, + "height": 4155 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47003, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 4 }43B61082-9CC2-411B-85DD-9232A388283A" + }, + "fileCreated": "2025-06-21T09:21:52.4473661+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473661+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473662+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100006 + }, + "imageDetail": { + "width": 8608, + "height": 9870 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86997, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 6 }DA3205DA-1C8D-4EBC-8A72-87C7733A54E6" + }, + "fileCreated": "2025-06-21T09:21:52.4473684+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473685+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473685+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473683+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100007 + }, + "imageDetail": { + "width": 7772, + "height": 8742 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92722, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 7 }628E7E0F-0EA4-4877-BBEE-4B9F4CA828E8" + }, + "fileCreated": "2025-06-21T09:21:52.4473693+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473694+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473691+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100008 + }, + "imageDetail": { + "width": 8482, + "height": 2221 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31919, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 8 }D3451D7F-0E5F-4220-A671-5A7E4BCB8EF5" + }, + "fileCreated": "2025-06-21T09:21:52.4473697+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473698+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473698+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473695+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100010 + }, + "imageDetail": { + "width": 318, + "height": 7603 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 10 }961760D0-703E-4A80-B81E-C45793E592BA" + }, + "fileCreated": "2025-06-21T09:21:52.4473706+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473707+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473705+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100011 + }, + "imageDetail": { + "width": 7005, + "height": 9981 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77037, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 11 }90328FD1-D171-4DB7-9E03-3B7445A75777" + }, + "fileCreated": "2025-06-21T09:21:52.4473711+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473712+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473712+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473709+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100012 + }, + "imageDetail": { + "width": 4741, + "height": 2166 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 12 }835775EA-8937-4C35-B105-557492CC4B87" + }, + "fileCreated": "2025-06-21T09:21:52.4473715+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473716+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473716+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100013 + }, + "imageDetail": { + "width": 1384, + "height": 4976 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40597, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 13 }83B14F65-5082-4F7B-AF0F-CF1979801D6E" + }, + "fileCreated": "2025-06-21T09:21:52.4473719+00:00", + "fileLastModified": "2025-07-14T09:21:52.447372+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100017 + }, + "imageDetail": { + "width": 6000, + "height": 3842 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71086, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 17 }FA12BD10-37F1-4015-A3A0-7528F11D3E83" + }, + "fileCreated": "2025-06-21T09:21:52.4473768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473769+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100018 + }, + "imageDetail": { + "width": 7853, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 95960, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 18 }E706DB05-561B-414C-8665-9ADE66D7612C" + }, + "fileCreated": "2025-06-21T09:21:52.4473773+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473773+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473774+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473771+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100020 + }, + "imageDetail": { + "width": 4135, + "height": 3714 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99512, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 20 }824258B9-D347-4446-8E1D-0E8C838751D2" + }, + "fileCreated": "2025-06-21T09:21:52.447378+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473781+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473781+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473779+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100022 + }, + "imageDetail": { + "width": 3521, + "height": 4694 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 22 }7497A6D0-5122-4A1F-AB58-8D300F458B85" + }, + "fileCreated": "2025-06-21T09:21:52.4473788+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473789+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473789+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100023 + }, + "imageDetail": { + "width": 2012, + "height": 9592 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92757, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 23 }1D478B31-456C-4304-BFFF-AB9FD70893DE" + }, + "fileCreated": "2025-06-21T09:21:52.44738+00:00", + "fileLastModified": "2025-07-14T09:21:52.44738+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473801+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473791+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100025 + }, + "imageDetail": { + "width": 7067, + "height": 5602 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 25 }DB73F2C8-91EC-40CD-88EB-4CD86775B0D9" + }, + "fileCreated": "2025-06-21T09:21:52.4473808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473808+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473809+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100027 + }, + "imageDetail": { + "width": 6151, + "height": 4770 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 27 }23364221-3668-48BF-8105-B28B6911435B" + }, + "fileCreated": "2025-06-21T09:21:52.4473816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473816+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100028 + }, + "imageDetail": { + "width": 9210, + "height": 8849 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22558, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 28 }4923D450-F940-4FC3-A435-2DFC2D942EE4" + }, + "fileCreated": "2025-06-21T09:21:52.4473838+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100030 + }, + "imageDetail": { + "width": 5269, + "height": 3306 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 37750, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 30 }39D379BE-25A5-416D-95CA-6C9F7183B2CB" + }, + "fileCreated": "2025-06-21T09:21:52.4473849+00:00", + "fileLastModified": "2025-07-14T09:21:52.447385+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447385+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473848+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100034 + }, + "imageDetail": { + "width": 5908, + "height": 4947 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 34 }645E1225-92C0-4987-B80C-284AF9B7A65D" + }, + "fileCreated": "2025-06-21T09:21:52.4473866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473867+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100036 + }, + "imageDetail": { + "width": 1905, + "height": 9679 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67766, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 36 }000D25B7-832D-4A35-B272-DE435A1C6133" + }, + "fileCreated": "2025-06-21T09:21:52.4473881+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473881+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473879+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100037 + }, + "imageDetail": { + "width": 7916, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80133, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 37 }C6023DF9-79F7-4E66-A47B-82AD3CDE75E5" + }, + "fileCreated": "2025-06-21T09:21:52.4473884+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473885+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100040 + }, + "imageDetail": { + "width": 2042, + "height": 2514 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 61689, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 40 }12D55B3A-C94B-4575-9AB7-4CC8A79C16FB" + }, + "fileCreated": "2025-06-21T09:21:52.4473896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473897+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473897+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473895+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100041 + }, + "imageDetail": { + "width": 3000, + "height": 9939 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56131, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 41 }1E9B03F6-7AE3-42F5-A0CE-064F84FDE782" + }, + "fileCreated": "2025-06-21T09:21:52.4473959+00:00", + "fileLastModified": "2025-07-14T09:21:52.447396+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473958+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100042 + }, + "imageDetail": { + "width": 2491, + "height": 4700 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45804, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 42 }197AD69F-A66E-4953-AF9E-325F04A649FA" + }, + "fileCreated": "2025-06-21T09:21:52.4473963+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473963+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473961+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100043 + }, + "imageDetail": { + "width": 6792, + "height": 2328 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83304, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 43 }65A20620-4350-492C-81FD-259BA48BA45E" + }, + "fileCreated": "2025-06-21T09:21:52.4473966+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473967+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473967+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473965+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100044 + }, + "imageDetail": { + "width": 8224, + "height": 5740 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77990, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 44 }CF33F5B0-C3B2-46B7-986E-E478ACA28866" + }, + "fileCreated": "2025-06-21T09:21:52.447397+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473971+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100045 + }, + "imageDetail": { + "width": 2975, + "height": 7495 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94107, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 45 }58569C00-181A-436A-9623-B789D64DBB4B" + }, + "fileCreated": "2025-06-21T09:21:52.4473974+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473972+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100049 + }, + "imageDetail": { + "width": 6521, + "height": 5139 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73093, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 49 }696F36C2-E54E-4467-B671-005E6C1161DA" + }, + "fileCreated": "2025-06-21T09:21:52.4473988+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473989+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100050 + }, + "imageDetail": { + "width": 2911, + "height": 7704 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84656, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 50 }2D983851-7C46-4E82-A85E-B1AAE6365286" + }, + "fileCreated": "2025-06-21T09:21:52.4473992+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473992+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447399+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100056 + }, + "imageDetail": { + "width": 6432, + "height": 9604 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 24029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 56 }D1762133-7885-4044-98C2-5E212AE18D6C" + }, + "fileCreated": "2025-06-21T09:21:52.4474054+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474054+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474055+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474052+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100057 + }, + "imageDetail": { + "width": 8202, + "height": 8836 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89972, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 57 }0A2C242C-35C0-4B6D-86DA-DADE43FACB9F" + }, + "fileCreated": "2025-06-21T09:21:52.4474058+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474057+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100058 + }, + "imageDetail": { + "width": 7341, + "height": 8598 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71491, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 58 }AEEEF2FD-8B14-4C12-A03F-2B17C70EC660" + }, + "fileCreated": "2025-06-21T09:21:52.4474062+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100059 + }, + "imageDetail": { + "width": 6486, + "height": 6228 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34402, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 59 }5505497F-E4AA-4E5E-ADFC-BCDB8E6678EB" + }, + "fileCreated": "2025-06-21T09:21:52.4474065+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474066+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474066+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474064+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100065 + }, + "imageDetail": { + "width": 8819, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91710, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 65 }649DEEEE-90A9-408D-B08F-66123E412BE6" + }, + "fileCreated": "2025-06-21T09:21:52.4474088+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474088+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474089+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474086+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100069 + }, + "imageDetail": { + "width": 8601, + "height": 7661 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22997, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 69 }96ACB7F3-0725-465C-A02D-E404D8797D00" + }, + "fileCreated": "2025-06-21T09:21:52.4474128+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474129+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100071 + }, + "imageDetail": { + "width": 2725, + "height": 5081 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53010, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 71 }370701A6-6C1D-4562-904F-BFE7C1483573" + }, + "fileCreated": "2025-06-21T09:21:52.4474135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474135+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100072 + }, + "imageDetail": { + "width": 2492, + "height": 6146 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 72 }FB1F1F7A-8C27-40C3-9D76-0B4E6318DDCA" + }, + "fileCreated": "2025-06-21T09:21:52.4474138+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474139+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474139+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100075 + }, + "imageDetail": { + "width": 7838, + "height": 7082 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 75 }20892ADA-F370-441E-A014-B5D3DF15C16A" + }, + "fileCreated": "2025-06-21T09:21:52.447415+00:00", + "fileLastModified": "2025-07-14T09:21:52.447415+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474148+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100076 + }, + "imageDetail": { + "width": 5716, + "height": 4767 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43593, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 76 }08C863AF-429E-4A51-8837-304DC084633D" + }, + "fileCreated": "2025-06-21T09:21:52.4474154+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474154+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100077 + }, + "imageDetail": { + "width": 7540, + "height": 2587 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 77 }70BDE443-BDCE-47CD-B28A-4FF9E4A6CD4F" + }, + "fileCreated": "2025-06-21T09:21:52.4474157+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474158+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100080 + }, + "imageDetail": { + "width": 8107, + "height": 6625 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87664, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 80 }E60A5C76-22DB-46B7-A937-92E522C10DC8" + }, + "fileCreated": "2025-06-21T09:21:52.4474192+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474192+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447419+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100082 + }, + "imageDetail": { + "width": 1872, + "height": 7027 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 82 }3C2E264E-B00D-424E-BF0D-BCEBCD4EF25E" + }, + "fileCreated": "2025-06-21T09:21:52.4474199+00:00", + "fileLastModified": "2025-07-14T09:21:52.44742+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44742+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474198+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100083 + }, + "imageDetail": { + "width": 1104, + "height": 2983 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88604, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 83 }06BFCE46-5C9D-49E9-95B5-1D8F9EAF3B67" + }, + "fileCreated": "2025-06-21T09:21:52.4474203+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474204+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474204+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100086 + }, + "imageDetail": { + "width": 5650, + "height": 3006 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 86 }064D5FA4-9BE2-4677-8838-2A209B4E5BD6" + }, + "fileCreated": "2025-06-21T09:21:52.4474215+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474215+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474213+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100089 + }, + "imageDetail": { + "width": 8886, + "height": 9598 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95528, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 89 }DD8D9178-74D2-4510-B207-D8180EB5035C" + }, + "fileCreated": "2025-06-21T09:21:52.4474226+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474227+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474227+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100091 + }, + "imageDetail": { + "width": 2601, + "height": 6575 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51880, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 91 }FC9AA42E-878E-4600-B1C5-5A2F87CE2B85" + }, + "fileCreated": "2025-06-21T09:21:52.4474234+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474235+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100092 + }, + "imageDetail": { + "width": 9900, + "height": 9628 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69143, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 92 }F53C0C94-89FF-4A69-9D72-2DC3BA5338CA" + }, + "fileCreated": "2025-06-21T09:21:52.4474238+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474238+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100093 + }, + "imageDetail": { + "width": 9207, + "height": 6591 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88989, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 93 }95F07017-E5E8-48AB-A0D0-9FD823C8D246" + }, + "fileCreated": "2025-06-21T09:21:52.4474267+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100095 + }, + "imageDetail": { + "width": 3705, + "height": 5772 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51001, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 95 }C72409FA-7DC1-4CB9-9A6E-B1BBEF4F30E5" + }, + "fileCreated": "2025-06-21T09:21:52.4474275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474275+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100099 + }, + "imageDetail": { + "width": 908, + "height": 3398 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59120, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 99 }E7888EA0-BFB0-4E66-A643-52B06BA8F1D5" + }, + "fileCreated": "2025-06-21T09:21:52.4474289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447429+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100100 + }, + "imageDetail": { + "width": 7079, + "height": 2335 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 100 }3E463C4B-4DAF-4160-BC52-28A032AFA932" + }, + "fileCreated": "2025-06-21T09:21:52.4474293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474294+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100102 + }, + "imageDetail": { + "width": 3323, + "height": 8530 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 102 }4B4E0BA2-2E15-40AA-9121-F219AF5B167C" + }, + "fileCreated": "2025-06-21T09:21:52.44743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474301+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100105 + }, + "imageDetail": { + "width": 4272, + "height": 7595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21133, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 105 }673F6237-3707-4434-89EA-35DAE663C91D" + }, + "fileCreated": "2025-06-21T09:21:52.4474311+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474311+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474309+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100109 + }, + "imageDetail": { + "width": 6156, + "height": 9762 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88867, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 109 }41967498-E5BE-4799-B292-3A8B7D88F74A" + }, + "fileCreated": "2025-06-21T09:21:52.447435+00:00", + "fileLastModified": "2025-07-14T09:21:52.447435+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474351+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100111 + }, + "imageDetail": { + "width": 5013, + "height": 7928 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 111 }6C6DAD32-A888-40BD-A30D-B75524E579CC" + }, + "fileCreated": "2025-06-21T09:21:52.4474357+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100115 + }, + "imageDetail": { + "width": 7299, + "height": 7055 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93669, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 115 }A3CAABEA-1C6B-43F6-8D3B-E301C9413A79" + }, + "fileCreated": "2025-06-21T09:21:52.4474372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474373+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474373+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100116 + }, + "imageDetail": { + "width": 8347, + "height": 2351 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63978, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 116 }8491ADFF-BD7C-43B6-875E-25F1CC0CE364" + }, + "fileCreated": "2025-06-21T09:21:52.4474376+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474377+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474377+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474375+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100117 + }, + "imageDetail": { + "width": 4468, + "height": 3331 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59216, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 117 }3FBC1DF5-F168-4E3A-ABEE-9C69F2D24743" + }, + "fileCreated": "2025-06-21T09:21:52.447438+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474381+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474381+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474379+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100119 + }, + "imageDetail": { + "width": 6780, + "height": 2125 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 78115, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 119 }180EC021-4E45-4795-B50E-1265B798C38A" + }, + "fileCreated": "2025-06-21T09:21:52.4474388+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474388+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474389+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100121 + }, + "imageDetail": { + "width": 9899, + "height": 7593 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96278, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 121 }7ABA4BCC-9282-4E38-9035-0F7E1BD9AB74" + }, + "fileCreated": "2025-06-21T09:21:52.447442+00:00", + "fileLastModified": "2025-07-14T09:21:52.447442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474421+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474418+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100122 + }, + "imageDetail": { + "width": 1800, + "height": 9694 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88683, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 122 }DE2824F2-88EE-4C36-BEB9-29FC36261240" + }, + "fileCreated": "2025-06-21T09:21:52.4474424+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474424+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474422+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100124 + }, + "imageDetail": { + "width": 9270, + "height": 6348 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82049, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 124 }637A9810-9C88-43D7-B212-1EB8469A5DDA" + }, + "fileCreated": "2025-06-21T09:21:52.4474431+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474432+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447443+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100127 + }, + "imageDetail": { + "width": 9205, + "height": 3830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33109, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 127 }11732CAB-ED48-4152-8CD7-A9421868C023" + }, + "fileCreated": "2025-06-21T09:21:52.4474442+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474443+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474441+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100128 + }, + "imageDetail": { + "width": 5268, + "height": 6718 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 128 }737E2A93-7BBC-4D45-B4F1-60996EFA9955" + }, + "fileCreated": "2025-06-21T09:21:52.4474446+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474447+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474445+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100129 + }, + "imageDetail": { + "width": 2891, + "height": 6270 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 39386, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 129 }3D44D126-377E-467C-8A47-DAB244401A33" + }, + "fileCreated": "2025-06-21T09:21:52.447445+00:00", + "fileLastModified": "2025-07-14T09:21:52.447445+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474451+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474448+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100130 + }, + "imageDetail": { + "width": 3001, + "height": 2704 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 130 }CBAE9299-7E8E-4C62-970D-F372CB181C46" + }, + "fileCreated": "2025-06-21T09:21:52.4474455+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474455+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474456+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100133 + }, + "imageDetail": { + "width": 1507, + "height": 2977 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75008, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 133 }AA317E53-5982-4DBA-BE80-762906FF6301" + }, + "fileCreated": "2025-06-21T09:21:52.4474622+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474623+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447462+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100136 + }, + "imageDetail": { + "width": 7332, + "height": 4072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 39130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 136 }D99DEE2E-F586-486B-8031-CA43D6700EF0" + }, + "fileCreated": "2025-06-21T09:21:52.4474634+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474634+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474632+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100137 + }, + "imageDetail": { + "width": 7445, + "height": 4901 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62124, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 137 }57B4A2FC-5039-418B-909A-D6E9D9B9329F" + }, + "fileCreated": "2025-06-21T09:21:52.4474638+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474638+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474636+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100143 + }, + "imageDetail": { + "width": 9095, + "height": 4067 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26598, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 143 }DD800FBB-1087-4199-AC6D-FEF30697A0DE" + }, + "fileCreated": "2025-06-21T09:21:52.447466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474661+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100148 + }, + "imageDetail": { + "width": 4931, + "height": 4208 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63805, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 148 }01B6CC48-5B01-48A5-8701-A6A76F96CD86" + }, + "fileCreated": "2025-06-21T09:21:52.447472+00:00", + "fileLastModified": "2025-07-14T09:21:52.447472+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474721+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100149 + }, + "imageDetail": { + "width": 4545, + "height": 9547 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29831, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 149 }3117BDA8-7DD7-442E-BC4E-04DEACB69695" + }, + "fileCreated": "2025-06-21T09:21:52.4474724+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474724+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100151 + }, + "imageDetail": { + "width": 7466, + "height": 3819 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20983, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 151 }FECB4EF3-896F-4E06-AE3C-80F3281085B0" + }, + "fileCreated": "2025-06-21T09:21:52.4474731+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474732+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100152 + }, + "imageDetail": { + "width": 7665, + "height": 3085 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80813, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 152 }EB791198-5F90-456C-B8C5-5648FE7DA744" + }, + "fileCreated": "2025-06-21T09:21:52.4474735+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100158 + }, + "imageDetail": { + "width": 6088, + "height": 3725 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 158 }E093906C-B076-4FD2-9A58-5858196ACD9C" + }, + "fileCreated": "2025-06-21T09:21:52.4474791+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474792+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100164 + }, + "imageDetail": { + "width": 9225, + "height": 4720 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38037, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 164 }75683B93-D336-48F6-9BD3-D6FDB4281419" + }, + "fileCreated": "2025-06-21T09:21:52.4474813+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474813+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100167 + }, + "imageDetail": { + "width": 5472, + "height": 2267 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71170, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 167 }8597C11B-32C7-4F8A-9B8F-20414FE003DE" + }, + "fileCreated": "2025-06-21T09:21:52.4474824+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100168 + }, + "imageDetail": { + "width": 8713, + "height": 7089 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93917, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 168 }8DD2944F-0E48-412E-BE66-418DD17292E3" + }, + "fileCreated": "2025-06-21T09:21:52.4474827+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100171 + }, + "imageDetail": { + "width": 888, + "height": 9932 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47122, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 171 }970DC3A7-4B72-4EA2-A08C-0EF8689EEFDE" + }, + "fileCreated": "2025-06-21T09:21:52.4474838+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474838+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100172 + }, + "imageDetail": { + "width": 9067, + "height": 5134 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 172 }4570FA2E-AB7A-46B2-90C6-66A8D6A85902" + }, + "fileCreated": "2025-06-21T09:21:52.4474866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474864+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100173 + }, + "imageDetail": { + "width": 2560, + "height": 5168 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93881, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 173 }62916802-6521-4467-B6CB-0A43883B3185" + }, + "fileCreated": "2025-06-21T09:21:52.4474869+00:00", + "fileLastModified": "2025-07-14T09:21:52.447487+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474868+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100177 + }, + "imageDetail": { + "width": 7133, + "height": 9374 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71654, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 177 }ADB86447-F52E-4CBD-8CCA-1C886E01EB44" + }, + "fileCreated": "2025-06-21T09:21:52.4474884+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474884+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474885+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100178 + }, + "imageDetail": { + "width": 8392, + "height": 2510 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26336, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 178 }149261EC-57BE-4C7B-9F0E-5F112F476CB4" + }, + "fileCreated": "2025-06-21T09:21:52.4474888+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474889+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474889+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100179 + }, + "imageDetail": { + "width": 6957, + "height": 9637 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98809, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 179 }B9E1A883-0F7F-4FAA-85E3-0CCC665D3ADC" + }, + "fileCreated": "2025-06-21T09:21:52.4474892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474892+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474893+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100182 + }, + "imageDetail": { + "width": 516, + "height": 3889 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45445, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 182 }9E2A33E4-45D0-46F2-AA12-427D2929DB00" + }, + "fileCreated": "2025-06-21T09:21:52.4474903+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474904+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474904+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474902+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100183 + }, + "imageDetail": { + "width": 6795, + "height": 4078 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81837, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 183 }7B1BC74D-6DBE-4D64-8F30-2458505A44EF" + }, + "fileCreated": "2025-06-21T09:21:52.4474907+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474908+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474908+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474905+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100184 + }, + "imageDetail": { + "width": 6845, + "height": 5317 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81405, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 184 }59A2A21B-EAAC-4798-826F-265AAD5FFD80" + }, + "fileCreated": "2025-06-21T09:21:52.4474911+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474912+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474912+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100185 + }, + "imageDetail": { + "width": 2744, + "height": 8307 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59755, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 185 }A980C0BA-6824-459E-BEE2-09EDCD1B5BF2" + }, + "fileCreated": "2025-06-21T09:21:52.4474943+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474944+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100186 + }, + "imageDetail": { + "width": 6402, + "height": 4591 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22534, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 186 }CD37D3D4-EA8D-410D-BE98-29554F011F53" + }, + "fileCreated": "2025-06-21T09:21:52.4474947+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474947+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100187 + }, + "imageDetail": { + "width": 4461, + "height": 4951 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22778, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 187 }FA154BEB-549D-4B06-8F14-4492E0BD4C1D" + }, + "fileCreated": "2025-06-21T09:21:52.447495+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474951+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474951+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474949+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100192 + }, + "imageDetail": { + "width": 4803, + "height": 9368 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65990, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 192 }CE921C2A-8A34-4A1A-9E6B-B3A2FF0980CD" + }, + "fileCreated": "2025-06-21T09:21:52.4474969+00:00", + "fileLastModified": "2025-07-14T09:21:52.447497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474967+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100193 + }, + "imageDetail": { + "width": 2597, + "height": 8595 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88857, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 193 }A4E97F2B-4408-4A0B-9F05-4612FE02379A" + }, + "fileCreated": "2025-06-21T09:21:52.4474972+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474973+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474971+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100194 + }, + "imageDetail": { + "width": 9178, + "height": 2061 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41121, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 194 }DE7D4720-81DA-4311-9AD9-C5D3CCC79E42" + }, + "fileCreated": "2025-06-21T09:21:52.4474976+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474977+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474977+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474974+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100195 + }, + "imageDetail": { + "width": 9105, + "height": 3633 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64111, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 195 }32FA6358-88E1-4EB7-A450-33BCE7A6A6E0" + }, + "fileCreated": "2025-06-21T09:21:52.447498+00:00", + "fileLastModified": "2025-07-14T09:21:52.447498+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474981+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100198 + }, + "imageDetail": { + "width": 5570, + "height": 9155 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 84247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 198 }D821E036-E35C-4AE2-A9D5-0CDB332411AE" + }, + "fileCreated": "2025-06-21T09:21:52.4474992+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474992+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100199 + }, + "imageDetail": { + "width": 5283, + "height": 8368 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 199 }BD91FC45-9AC4-4390-87EC-C7310EBE5CC4" + }, + "fileCreated": "2025-06-21T09:21:52.4475023+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475024+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475022+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100200 + }, + "imageDetail": { + "width": 1462, + "height": 6690 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 200 }264EA408-507B-43F3-86E4-8EB140BDADBD" + }, + "fileCreated": "2025-06-21T09:21:52.4475027+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475028+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475028+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475026+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100203 + }, + "imageDetail": { + "width": 6080, + "height": 2382 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 68715, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 203 }6BE0B4E6-DBA7-4B7F-AA64-C3EDF1D190BE" + }, + "fileCreated": "2025-06-21T09:21:52.4475039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447504+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447504+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100205 + }, + "imageDetail": { + "width": 8325, + "height": 3757 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 21352, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 205 }B0CF811E-0BC3-4922-966A-0695C8644F4D" + }, + "fileCreated": "2025-06-21T09:21:52.4475047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100207 + }, + "imageDetail": { + "width": 2286, + "height": 8671 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98541, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 207 }AFAE8A96-0901-4370-BAF5-770401A24F3F" + }, + "fileCreated": "2025-06-21T09:21:52.4475055+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475055+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475056+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100208 + }, + "imageDetail": { + "width": 3279, + "height": 7457 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45175, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 208 }9F16C70C-15D2-4B46-A696-FF0DA7DB49A1" + }, + "fileCreated": "2025-06-21T09:21:52.4475059+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475059+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447506+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475057+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100209 + }, + "imageDetail": { + "width": 1670, + "height": 3925 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54274, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 209 }30481E00-03D6-4477-A31F-811C568BB43A" + }, + "fileCreated": "2025-06-21T09:21:52.4475062+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475063+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475061+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100211 + }, + "imageDetail": { + "width": 1553, + "height": 3888 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31965, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 211 }81FA3EC1-3172-488F-B955-E0C43B542F1C" + }, + "fileCreated": "2025-06-21T09:21:52.447507+00:00", + "fileLastModified": "2025-07-14T09:21:52.447507+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475068+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100214 + }, + "imageDetail": { + "width": 9522, + "height": 7511 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28437, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 214 }6F25D4BE-B986-4237-AEAD-5D17453B8847" + }, + "fileCreated": "2025-06-21T09:21:52.4475104+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475105+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475102+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100215 + }, + "imageDetail": { + "width": 1654, + "height": 9289 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 215 }CE858CF0-C014-4C28-AD0E-34A8A3F68A52" + }, + "fileCreated": "2025-06-21T09:21:52.4475108+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475108+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475108+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100216 + }, + "imageDetail": { + "width": 2550, + "height": 2963 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 216 }49EF23A1-035D-4421-8850-1A57287F6593" + }, + "fileCreated": "2025-06-21T09:21:52.4475112+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475112+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447511+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100217 + }, + "imageDetail": { + "width": 8596, + "height": 8969 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 217 }917AE1DB-5F6D-4704-AFD1-BD6D6CD9F1C1" + }, + "fileCreated": "2025-06-21T09:21:52.4475115+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475116+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475116+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475113+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100220 + }, + "imageDetail": { + "width": 4502, + "height": 8397 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32303, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 220 }0C6CAEE8-8B9D-4DDF-BEC6-B70337E9DCA5" + }, + "fileCreated": "2025-06-21T09:21:52.4475127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475127+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475127+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100224 + }, + "imageDetail": { + "width": 9563, + "height": 9120 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93535, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 224 }C92523A6-6164-4BFE-A4DD-A6A6EADC1D9C" + }, + "fileCreated": "2025-06-21T09:21:52.4475141+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475142+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100226 + }, + "imageDetail": { + "width": 7787, + "height": 6020 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 226 }C8329D80-4CAC-4137-8DAE-E7BD0335C03A" + }, + "fileCreated": "2025-06-21T09:21:52.4475176+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475176+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475177+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475147+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100229 + }, + "imageDetail": { + "width": 4782, + "height": 8371 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41331, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 229 }F62754E9-C703-4950-AC41-3C676192FA4F" + }, + "fileCreated": "2025-06-21T09:21:52.4475187+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475188+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475186+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100230 + }, + "imageDetail": { + "width": 7964, + "height": 4149 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 82017, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 230 }FECB8F0D-69BE-4450-B7FB-EAFCFA319270" + }, + "fileCreated": "2025-06-21T09:21:52.4475191+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475192+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475192+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100231 + }, + "imageDetail": { + "width": 5214, + "height": 4790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42940, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 231 }681D5EF4-6D7F-4F98-80AC-902BFC038715" + }, + "fileCreated": "2025-06-21T09:21:52.4475195+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475195+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475193+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100232 + }, + "imageDetail": { + "width": 6185, + "height": 2337 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 232 }1DA3527D-CB2B-4B5E-A040-6FCFDE7DC333" + }, + "fileCreated": "2025-06-21T09:21:52.4475198+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475199+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475199+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475197+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100233 + }, + "imageDetail": { + "width": 1415, + "height": 5157 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72921, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 233 }7DD53407-3DA3-4AD9-81DA-C05B73CA3ED8" + }, + "fileCreated": "2025-06-21T09:21:52.4475202+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475202+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475203+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100234 + }, + "imageDetail": { + "width": 1012, + "height": 9035 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 234 }662A1B01-1FDF-408D-B24E-B129B1ED9B73" + }, + "fileCreated": "2025-06-21T09:21:52.4475206+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475207+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475204+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100236 + }, + "imageDetail": { + "width": 3653, + "height": 6073 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 236 }07D300EA-5263-42F4-BA39-63568C71EC34" + }, + "fileCreated": "2025-06-21T09:21:52.4475214+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475214+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475215+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475212+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100238 + }, + "imageDetail": { + "width": 6061, + "height": 2215 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 74058, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 238 }399E582B-E5AE-4B3C-9590-BD6ADF3FCCFC" + }, + "fileCreated": "2025-06-21T09:21:52.4475221+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475222+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100239 + }, + "imageDetail": { + "width": 4605, + "height": 2866 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96321, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 239 }61CB0B00-BBEB-415F-8D21-EFE774C3C756" + }, + "fileCreated": "2025-06-21T09:21:52.4475225+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475226+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475224+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100240 + }, + "imageDetail": { + "width": 9273, + "height": 8339 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85485, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 240 }ACDD3869-F3E2-431A-B076-A03BF2795576" + }, + "fileCreated": "2025-06-21T09:21:52.4475244+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475245+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475246+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475243+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100242 + }, + "imageDetail": { + "width": 2734, + "height": 6140 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38986, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 242 }B80C9B10-E0B2-44AF-AC73-631EF24439AE" + }, + "fileCreated": "2025-06-21T09:21:52.4475253+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475253+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475254+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475251+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100243 + }, + "imageDetail": { + "width": 2171, + "height": 4685 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93165, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 243 }643852BC-AB8E-4021-AB59-CDC0F5A9B733" + }, + "fileCreated": "2025-06-21T09:21:52.4475257+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475258+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100246 + }, + "imageDetail": { + "width": 8322, + "height": 5603 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65204, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 246 }FDC7ECB4-F7B5-4B67-8226-4EA5847C942D" + }, + "fileCreated": "2025-06-21T09:21:52.4475268+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475268+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475266+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100247 + }, + "imageDetail": { + "width": 5746, + "height": 8737 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57189, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 247 }B4B13EAF-4346-4F3E-AFE4-82C8D03F3359" + }, + "fileCreated": "2025-06-21T09:21:52.4475271+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475272+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100248 + }, + "imageDetail": { + "width": 9117, + "height": 6034 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96647, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 248 }464D56BC-3298-4C2A-84D1-F4C85167EA6F" + }, + "fileCreated": "2025-06-21T09:21:52.4475275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475275+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475276+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100250 + }, + "imageDetail": { + "width": 7447, + "height": 6079 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 250 }A19681B3-6859-4CA3-B143-A4A7B6FA584F" + }, + "fileCreated": "2025-06-21T09:21:52.4475282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100251 + }, + "imageDetail": { + "width": 5501, + "height": 2369 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24853, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 251 }9490D9ED-D177-4D9C-813C-6082DD294292" + }, + "fileCreated": "2025-06-21T09:21:52.4475286+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475286+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100254 + }, + "imageDetail": { + "width": 9998, + "height": 6009 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 254 }1E86F209-0AFD-421B-94C4-2FE4ED43C58E" + }, + "fileCreated": "2025-06-21T09:21:52.4475335+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475336+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100266 + }, + "imageDetail": { + "width": 8822, + "height": 7269 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70839, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 266 }48E28420-253E-4426-8A19-D02CEF86798F" + }, + "fileCreated": "2025-06-21T09:21:52.4475418+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100268 + }, + "imageDetail": { + "width": 9509, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44235, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 268 }7F843A81-C2BF-45D9-8BEF-71A60864B761" + }, + "fileCreated": "2025-06-21T09:21:52.4475426+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475427+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475425+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100271 + }, + "imageDetail": { + "width": 1971, + "height": 2146 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83126, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 271 }40FD7D9F-D6A7-465F-B83E-502A368006D1" + }, + "fileCreated": "2025-06-21T09:21:52.4475437+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475438+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475439+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475436+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100274 + }, + "imageDetail": { + "width": 478, + "height": 8204 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30913, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 274 }1B154E1A-C50E-42CB-B669-43CEDD3116EF" + }, + "fileCreated": "2025-06-21T09:21:52.4475475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475475+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100277 + }, + "imageDetail": { + "width": 605, + "height": 4449 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31460, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 277 }B74DDE57-EEAB-49B6-9CD8-2610F1F50715" + }, + "fileCreated": "2025-06-21T09:21:52.4475486+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475486+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100279 + }, + "imageDetail": { + "width": 4323, + "height": 9707 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 279 }D7599779-08E5-4816-9A16-A847D4863AA9" + }, + "fileCreated": "2025-06-21T09:21:52.4475493+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475493+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475494+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100280 + }, + "imageDetail": { + "width": 4869, + "height": 3417 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25126, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 280 }9F8CC7D6-2E95-4606-96A8-5E9E288627CC" + }, + "fileCreated": "2025-06-21T09:21:52.4475497+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475495+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100281 + }, + "imageDetail": { + "width": 1944, + "height": 2716 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79738, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 281 }083FC378-F67E-479A-8C36-20959510F057" + }, + "fileCreated": "2025-06-21T09:21:52.44755+00:00", + "fileLastModified": "2025-07-14T09:21:52.44755+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475501+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100283 + }, + "imageDetail": { + "width": 5388, + "height": 6777 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40524, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 283 }20215B8A-EEC4-4174-896B-DD74D9408D60" + }, + "fileCreated": "2025-06-21T09:21:52.4475508+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475508+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475506+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100284 + }, + "imageDetail": { + "width": 7657, + "height": 7964 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90850, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 284 }5B754235-EDC8-4C79-B40E-EB9505B50E72" + }, + "fileCreated": "2025-06-21T09:21:52.4475511+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475512+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100285 + }, + "imageDetail": { + "width": 6771, + "height": 2381 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75595, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 285 }9CFF331F-B1AB-4634-8515-4BC21FD777AA" + }, + "fileCreated": "2025-06-21T09:21:52.4475515+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475516+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100286 + }, + "imageDetail": { + "width": 5024, + "height": 7266 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67733, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 286 }17A59FB6-3B3D-45D6-AF50-4B074D5E5E27" + }, + "fileCreated": "2025-06-21T09:21:52.4475519+00:00", + "fileLastModified": "2025-07-14T09:21:52.447552+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475517+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100287 + }, + "imageDetail": { + "width": 9833, + "height": 7307 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69040, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 287 }F98A2385-B28E-4D83-8434-CD10855ED387" + }, + "fileCreated": "2025-06-21T09:21:52.4475545+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475546+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475521+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100289 + }, + "imageDetail": { + "width": 2513, + "height": 2486 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 70087, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 289 }53AC4B08-C1AD-4D32-BD60-5C754C6CC46A" + }, + "fileCreated": "2025-06-21T09:21:52.4475552+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100291 + }, + "imageDetail": { + "width": 3894, + "height": 5856 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25885, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 291 }298F4D1B-7692-49CB-9296-1DB195C4E01F" + }, + "fileCreated": "2025-06-21T09:21:52.447556+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475561+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475559+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100292 + }, + "imageDetail": { + "width": 4415, + "height": 5626 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 292 }B352A740-2B3F-4D33-8106-FADF52CC13FB" + }, + "fileCreated": "2025-06-21T09:21:52.4475563+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475564+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475565+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475562+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100294 + }, + "imageDetail": { + "width": 5116, + "height": 4034 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48682, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 294 }9EDCAC13-A929-481F-8A5B-B589FDA1C5C0" + }, + "fileCreated": "2025-06-21T09:21:52.4475571+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475572+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475572+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100297 + }, + "imageDetail": { + "width": 4515, + "height": 2907 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 297 }9D76731E-06EC-4A63-9289-ED5C84037B25" + }, + "fileCreated": "2025-06-21T09:21:52.4475582+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475583+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100298 + }, + "imageDetail": { + "width": 5633, + "height": 9152 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28663, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 298 }C64477AB-395E-4B6D-991F-5279BCEDF0E2" + }, + "fileCreated": "2025-06-21T09:21:52.4475586+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475586+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475587+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475584+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100301 + }, + "imageDetail": { + "width": 3956, + "height": 6000 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40588, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 301 }76DAA165-9BE0-458C-961C-87172B62BA29" + }, + "fileCreated": "2025-06-21T09:21:52.4475692+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475693+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475693+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100302 + }, + "imageDetail": { + "width": 3133, + "height": 7770 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26274, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 302 }786E46C1-8D65-4835-B501-3CF031283B27" + }, + "fileCreated": "2025-06-21T09:21:52.4475696+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475695+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100303 + }, + "imageDetail": { + "width": 6487, + "height": 3939 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 303 }4EE7BF46-F42C-4EFF-8F21-7A67D378B874" + }, + "fileCreated": "2025-06-21T09:21:52.44757+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475701+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475698+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100305 + }, + "imageDetail": { + "width": 1050, + "height": 4111 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88999, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 305 }7485AE43-4931-455E-AA26-C0ABED13A336" + }, + "fileCreated": "2025-06-21T09:21:52.4475708+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475708+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100307 + }, + "imageDetail": { + "width": 2067, + "height": 9137 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37451, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 307 }3E3E6D61-D69A-4669-9CF7-4D77A84698AC" + }, + "fileCreated": "2025-06-21T09:21:52.4475715+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475716+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475716+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100309 + }, + "imageDetail": { + "width": 6905, + "height": 3016 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 309 }4F3D7C4B-3BB8-468B-B923-8E0FB7500F5C" + }, + "fileCreated": "2025-06-21T09:21:52.4475723+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475724+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100312 + }, + "imageDetail": { + "width": 1715, + "height": 2409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62139, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 312 }BE5C1ACA-F0B3-495A-B369-4F1A8AE2E617" + }, + "fileCreated": "2025-06-21T09:21:52.4475734+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100314 + }, + "imageDetail": { + "width": 5826, + "height": 2499 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 314 }6CC3B878-3869-4F61-8B90-B165C3CF0A9A" + }, + "fileCreated": "2025-06-21T09:21:52.4475742+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475743+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475743+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475741+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100315 + }, + "imageDetail": { + "width": 944, + "height": 8357 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 68920, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 315 }4464DA6D-EC1F-4F8B-A021-E6EB4F857FCF" + }, + "fileCreated": "2025-06-21T09:21:52.4475772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475773+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475773+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475771+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100317 + }, + "imageDetail": { + "width": 7404, + "height": 5906 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61803, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 317 }0190FEAF-E44D-424D-9124-8797AFA348C2" + }, + "fileCreated": "2025-06-21T09:21:52.447578+00:00", + "fileLastModified": "2025-07-14T09:21:52.447578+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475778+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100318 + }, + "imageDetail": { + "width": 7765, + "height": 2560 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68103, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 318 }043EE02F-DE27-4D94-B636-98D1AAFB8940" + }, + "fileCreated": "2025-06-21T09:21:52.4475783+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475784+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100319 + }, + "imageDetail": { + "width": 7909, + "height": 5800 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49350, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 319 }7CB34117-B75C-4ABF-9D0B-DD29B1351DB5" + }, + "fileCreated": "2025-06-21T09:21:52.4475786+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475787+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475787+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475785+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100321 + }, + "imageDetail": { + "width": 1999, + "height": 6424 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 321 }7B213BBC-CB31-453A-B874-4FE8434AF814" + }, + "fileCreated": "2025-06-21T09:21:52.4475794+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475795+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475793+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100324 + }, + "imageDetail": { + "width": 2347, + "height": 9454 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 69043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 324 }1E9A7DAA-BD98-4720-925C-047F5D3D5D6D" + }, + "fileCreated": "2025-06-21T09:21:52.4475805+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475806+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100326 + }, + "imageDetail": { + "width": 8948, + "height": 2476 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 326 }419FDF58-7088-4956-B543-C8F2E87BAA27" + }, + "fileCreated": "2025-06-21T09:21:52.4475813+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475813+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100327 + }, + "imageDetail": { + "width": 3561, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 327 }4E02C3F0-0340-4FF1-9457-BFD36941B619" + }, + "fileCreated": "2025-06-21T09:21:52.4475816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475817+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475815+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100329 + }, + "imageDetail": { + "width": 7550, + "height": 3678 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42853, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 329 }F23E4B8F-97FB-46F7-9AF0-56595944981B" + }, + "fileCreated": "2025-06-21T09:21:52.4475849+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475849+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100333 + }, + "imageDetail": { + "width": 8720, + "height": 3858 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 333 }3441998C-5BCA-442A-9460-CC8AACF3815C" + }, + "fileCreated": "2025-06-21T09:21:52.4475863+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475864+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475864+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100334 + }, + "imageDetail": { + "width": 2397, + "height": 6999 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27666, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 334 }F542EA55-66AA-44CC-B495-94B72F386FC9" + }, + "fileCreated": "2025-06-21T09:21:52.4475867+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475868+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100340 + }, + "imageDetail": { + "width": 7494, + "height": 5061 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87378, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 340 }3959F6C6-76A3-44C2-8613-E8AE09619C86" + }, + "fileCreated": "2025-06-21T09:21:52.4475891+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475891+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100342 + }, + "imageDetail": { + "width": 1021, + "height": 4789 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93478, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 342 }C626E98C-055D-4432-83BA-C9BA2AEBF063" + }, + "fileCreated": "2025-06-21T09:21:52.4475915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475915+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475913+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100346 + }, + "imageDetail": { + "width": 8659, + "height": 5219 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 346 }1D7E0C8D-F874-43F8-AA72-E02874141B4F" + }, + "fileCreated": "2025-06-21T09:21:52.447593+00:00", + "fileLastModified": "2025-07-14T09:21:52.447593+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475931+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475928+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100349 + }, + "imageDetail": { + "width": 6261, + "height": 2321 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30395, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 349 }1D69159E-46CC-4B2A-9B73-2505805D83B1" + }, + "fileCreated": "2025-06-21T09:21:52.447594+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475941+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100350 + }, + "imageDetail": { + "width": 5775, + "height": 3687 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 85008, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 350 }AA5A2B60-04FA-401C-AAF7-2F709A560CEA" + }, + "fileCreated": "2025-06-21T09:21:52.4475944+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475944+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475942+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100357 + }, + "imageDetail": { + "width": 9647, + "height": 9855 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66004, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 357 }225BA883-5C33-4D03-B983-F81B6C842B16" + }, + "fileCreated": "2025-06-21T09:21:52.447601+00:00", + "fileLastModified": "2025-07-14T09:21:52.447601+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100358 + }, + "imageDetail": { + "width": 6450, + "height": 4746 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 358 }020D2803-2FD8-4770-B3E9-FB8EB4D08D0B" + }, + "fileCreated": "2025-06-21T09:21:52.4476013+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476014+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476012+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100361 + }, + "imageDetail": { + "width": 1724, + "height": 8967 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25826, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 361 }54282FB9-AD39-4C52-A719-6DAD50D07769" + }, + "fileCreated": "2025-06-21T09:21:52.4476024+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476025+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476023+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100363 + }, + "imageDetail": { + "width": 4798, + "height": 5921 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31582, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 363 }C88857ED-3947-497D-97D0-1228D285E2DF" + }, + "fileCreated": "2025-06-21T09:21:52.4476032+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476033+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447603+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100365 + }, + "imageDetail": { + "width": 6245, + "height": 5860 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90389, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 365 }A0F4AE4F-3DB0-4563-A512-826F975B9C8D" + }, + "fileCreated": "2025-06-21T09:21:52.4476039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447604+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100367 + }, + "imageDetail": { + "width": 7236, + "height": 8227 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62084, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 367 }25EEC562-F0D8-4FA9-AAB8-862514EA10D8" + }, + "fileCreated": "2025-06-21T09:21:52.4476047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100369 + }, + "imageDetail": { + "width": 4862, + "height": 2378 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 369 }39977D13-0AF4-449D-ABF8-7755B7EA2AEC" + }, + "fileCreated": "2025-06-21T09:21:52.447609+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476089+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100370 + }, + "imageDetail": { + "width": 3161, + "height": 2615 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 70546, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 370 }79BD1CA2-71F2-4478-89E1-B6497E352AC1" + }, + "fileCreated": "2025-06-21T09:21:52.4476094+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476095+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476095+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476092+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100371 + }, + "imageDetail": { + "width": 9772, + "height": 3466 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 371 }37380BD9-6E13-4E57-A92E-40744F753501" + }, + "fileCreated": "2025-06-21T09:21:52.4476098+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476099+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100372 + }, + "imageDetail": { + "width": 7227, + "height": 6994 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37372, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 372 }54F65433-72DB-44AE-8A13-4D009A14FC54" + }, + "fileCreated": "2025-06-21T09:21:52.4476102+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476102+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100373 + }, + "imageDetail": { + "width": 9815, + "height": 9675 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96798, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 373 }B06CB687-0233-4E8C-9036-949AAABD61F7" + }, + "fileCreated": "2025-06-21T09:21:52.4476105+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476106+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100374 + }, + "imageDetail": { + "width": 6144, + "height": 6814 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 374 }693C4547-43E6-4373-B868-666383E3C031" + }, + "fileCreated": "2025-06-21T09:21:52.4476109+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476109+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100378 + }, + "imageDetail": { + "width": 280, + "height": 2142 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20311, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 378 }7155AD8E-AE21-40BC-B5A0-C6B239E123F3" + }, + "fileCreated": "2025-06-21T09:21:52.4476124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100379 + }, + "imageDetail": { + "width": 4603, + "height": 3485 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 68865, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 379 }F9BF22FC-C6CD-42EA-98E0-903D25CA5F3E" + }, + "fileCreated": "2025-06-21T09:21:52.4476127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476128+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100380 + }, + "imageDetail": { + "width": 9008, + "height": 9175 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38349, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 380 }E8263930-485F-410D-9BF2-932BA1633C2C" + }, + "fileCreated": "2025-06-21T09:21:52.4476131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476132+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100381 + }, + "imageDetail": { + "width": 8776, + "height": 5136 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98519, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 381 }180B34EC-154C-46CC-BE4B-829982D1635D" + }, + "fileCreated": "2025-06-21T09:21:52.4476135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476135+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476136+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476133+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100382 + }, + "imageDetail": { + "width": 4503, + "height": 2703 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 382 }61056585-DF53-4D20-8BCB-7B22F45ED63F" + }, + "fileCreated": "2025-06-21T09:21:52.4476139+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476139+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447614+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100385 + }, + "imageDetail": { + "width": 1641, + "height": 2285 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 81129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 385 }A97F1DD3-60CF-4B3D-A144-C60EFCFE2965" + }, + "fileCreated": "2025-06-21T09:21:52.4476175+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476175+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476173+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100386 + }, + "imageDetail": { + "width": 182, + "height": 3852 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31883, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 386 }DD09F6D7-4767-4460-ADD1-ACD651D817E8" + }, + "fileCreated": "2025-06-21T09:21:52.4476178+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476179+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476179+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100388 + }, + "imageDetail": { + "width": 1163, + "height": 6407 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86880, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 388 }F049C34B-DD49-48BA-A965-494B3DA5DF7E" + }, + "fileCreated": "2025-06-21T09:21:52.4476186+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476187+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476185+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100390 + }, + "imageDetail": { + "width": 1536, + "height": 8472 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90944, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 390 }A0BFA92C-0920-4CAF-8345-7F1FD53264BB" + }, + "fileCreated": "2025-06-21T09:21:52.4476193+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476194+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476192+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100393 + }, + "imageDetail": { + "width": 3489, + "height": 4585 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74448, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 393 }6567B0B0-38A8-4448-A9BD-A3FDE325C3A9" + }, + "fileCreated": "2025-06-21T09:21:52.4476205+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476205+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100394 + }, + "imageDetail": { + "width": 8287, + "height": 2936 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31063, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 394 }680612A2-A9CA-4981-B532-22888D79C884" + }, + "fileCreated": "2025-06-21T09:21:52.4476208+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476209+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476207+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100396 + }, + "imageDetail": { + "width": 9002, + "height": 4543 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73928, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 396 }A3392D40-EFCC-4A4C-919B-10491FB84052" + }, + "fileCreated": "2025-06-21T09:21:52.4476245+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476246+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100397 + }, + "imageDetail": { + "width": 1254, + "height": 2451 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62238, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 397 }004DD0C4-3ABB-4612-8DF1-ACB277F4ED01" + }, + "fileCreated": "2025-06-21T09:21:52.4476249+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476249+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476247+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100399 + }, + "imageDetail": { + "width": 6664, + "height": 8400 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 399 }0688A469-DAAC-42B6-B40A-FC477B4124D8" + }, + "fileCreated": "2025-06-21T09:21:52.4476256+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100400 + }, + "imageDetail": { + "width": 8609, + "height": 9681 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80101, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 400 }7A151AD6-F4CF-478A-8349-40C042328BC9" + }, + "fileCreated": "2025-06-21T09:21:52.447626+00:00", + "fileLastModified": "2025-07-14T09:21:52.447626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476258+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100401 + }, + "imageDetail": { + "width": 2373, + "height": 5404 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33523, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 401 }2B7B3DB9-DE67-4F64-83F0-562018FCD65B" + }, + "fileCreated": "2025-06-21T09:21:52.4476263+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476263+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476264+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476261+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100402 + }, + "imageDetail": { + "width": 2240, + "height": 3805 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 402 }0493F41C-1F48-4AF0-A2D8-205F452B64E4" + }, + "fileCreated": "2025-06-21T09:21:52.4476267+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100407 + }, + "imageDetail": { + "width": 6904, + "height": 3620 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36158, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 407 }737FE8C6-8495-4335-B6C0-188BA6DD952A" + }, + "fileCreated": "2025-06-21T09:21:52.4476285+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476286+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476286+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100408 + }, + "imageDetail": { + "width": 6889, + "height": 2910 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 58640, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 408 }197FD681-F70C-4D0F-943F-4961096C76D1" + }, + "fileCreated": "2025-06-21T09:21:52.4476289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447629+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447629+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100412 + }, + "imageDetail": { + "width": 2726, + "height": 7026 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35610, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 412 }4FFF5A1A-715C-47D0-9E64-787D3296C6A1" + }, + "fileCreated": "2025-06-21T09:21:52.4476331+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476332+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447633+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100413 + }, + "imageDetail": { + "width": 537, + "height": 7164 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 413 }006B8F69-1C0C-45ED-8ED6-21AE51ABCA80" + }, + "fileCreated": "2025-06-21T09:21:52.4476335+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476336+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100416 + }, + "imageDetail": { + "width": 6289, + "height": 7356 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65722, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 416 }4B5F08BC-781C-40BF-97B5-D556C9CA02D0" + }, + "fileCreated": "2025-06-21T09:21:52.4476346+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476347+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476345+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100419 + }, + "imageDetail": { + "width": 7025, + "height": 7962 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37507, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 419 }9AA03CE7-618F-4988-9966-080AACA098FC" + }, + "fileCreated": "2025-06-21T09:21:52.4476358+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100421 + }, + "imageDetail": { + "width": 6019, + "height": 7197 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 421 }17F5C98C-B65E-48B0-BA4A-8F1CF4BBA750" + }, + "fileCreated": "2025-06-21T09:21:52.4476364+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476365+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476365+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476363+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100422 + }, + "imageDetail": { + "width": 9337, + "height": 5562 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26086, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 422 }BBCC47ED-75D2-4A53-AF03-458990E31C07" + }, + "fileCreated": "2025-06-21T09:21:52.4476368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476369+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100423 + }, + "imageDetail": { + "width": 2461, + "height": 2208 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63792, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 423 }F8FAEABB-EFD6-47EA-BA8C-EF8726B71E07" + }, + "fileCreated": "2025-06-21T09:21:52.4476372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476372+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100424 + }, + "imageDetail": { + "width": 2841, + "height": 9195 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24382, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 424 }9C035742-1A51-4443-84B4-17B162F492A5" + }, + "fileCreated": "2025-06-21T09:21:52.4476399+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476399+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44764+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476397+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100425 + }, + "imageDetail": { + "width": 4412, + "height": 5284 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93533, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 425 }642FC339-7FD6-4BD2-9BA2-44EC1330EE37" + }, + "fileCreated": "2025-06-21T09:21:52.4476403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100426 + }, + "imageDetail": { + "width": 6930, + "height": 3544 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 426 }8B5CC986-6575-4763-AD80-8A5367F48D8E" + }, + "fileCreated": "2025-06-21T09:21:52.4476406+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476407+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476407+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476405+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100427 + }, + "imageDetail": { + "width": 2049, + "height": 3571 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39407, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 427 }1A54C698-10C1-42E5-A43C-5F3CF55A36E8" + }, + "fileCreated": "2025-06-21T09:21:52.447641+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476411+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100430 + }, + "imageDetail": { + "width": 8970, + "height": 3931 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24515, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 430 }23399511-B10C-4F19-AB98-406892D0126E" + }, + "fileCreated": "2025-06-21T09:21:52.4476422+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476422+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447642+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100431 + }, + "imageDetail": { + "width": 8287, + "height": 9755 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57571, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 431 }77560D2E-031D-43D1-9500-6505377EC6DF" + }, + "fileCreated": "2025-06-21T09:21:52.4476425+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476426+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476426+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100433 + }, + "imageDetail": { + "width": 5098, + "height": 6362 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 433 }48A25AFA-9EFD-4A09-B00A-953F0D772101" + }, + "fileCreated": "2025-06-21T09:21:52.4476433+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476433+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476431+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100434 + }, + "imageDetail": { + "width": 4502, + "height": 5761 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 56269, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 434 }2A20579C-5A37-489C-BFC7-EEA1FE1C3784" + }, + "fileCreated": "2025-06-21T09:21:52.4476436+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476437+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476435+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100435 + }, + "imageDetail": { + "width": 9040, + "height": 7514 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74555, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 435 }DCED64FC-42D4-460C-8D0A-2DC4D72EDB0D" + }, + "fileCreated": "2025-06-21T09:21:52.447644+00:00", + "fileLastModified": "2025-07-14T09:21:52.447644+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476441+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476438+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100436 + }, + "imageDetail": { + "width": 2639, + "height": 6709 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 436 }67378B67-9870-4DCD-B279-8B6B0A0FBA0E" + }, + "fileCreated": "2025-06-21T09:21:52.4476444+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476444+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476442+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100437 + }, + "imageDetail": { + "width": 334, + "height": 9858 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64328, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 437 }553A6E88-2888-4BE0-A5A0-CCCC3ED6AFC0" + }, + "fileCreated": "2025-06-21T09:21:52.4476471+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476471+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476469+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100443 + }, + "imageDetail": { + "width": 5782, + "height": 9862 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 443 }4A2DE8DD-FB17-40D7-9711-6D18C94B6024" + }, + "fileCreated": "2025-06-21T09:21:52.4476493+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476494+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476494+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476492+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100444 + }, + "imageDetail": { + "width": 3023, + "height": 4483 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 444 }BEE5952F-8D58-47AA-ADE3-06081475533B" + }, + "fileCreated": "2025-06-21T09:21:52.4476497+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476498+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476496+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100445 + }, + "imageDetail": { + "width": 8057, + "height": 5510 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45865, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 445 }F2512D99-D61B-4146-85F7-E89ED86F3DFA" + }, + "fileCreated": "2025-06-21T09:21:52.4476501+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476501+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476502+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100446 + }, + "imageDetail": { + "width": 3969, + "height": 7459 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 446 }0E6CF8BE-C7C2-4CEE-A5BB-399AFCAA24BF" + }, + "fileCreated": "2025-06-21T09:21:52.4476505+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476505+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100447 + }, + "imageDetail": { + "width": 8129, + "height": 8927 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35699, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 447 }7DD03B97-C5AE-40D7-91AE-B5C2530A0702" + }, + "fileCreated": "2025-06-21T09:21:52.4476508+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476509+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476509+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476507+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100449 + }, + "imageDetail": { + "width": 4809, + "height": 2781 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98658, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 449 }F04F02DB-26BE-464A-A566-E3BA9DC89683" + }, + "fileCreated": "2025-06-21T09:21:52.4476516+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476516+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100452 + }, + "imageDetail": { + "width": 7904, + "height": 3040 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59339, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 452 }2BCCC5B0-25D5-4641-853C-87F5C19EBFE6" + }, + "fileCreated": "2025-06-21T09:21:52.4476543+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476544+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100454 + }, + "imageDetail": { + "width": 7094, + "height": 2798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 454 }1176D6DA-0361-4232-B7D3-1174251171BD" + }, + "fileCreated": "2025-06-21T09:21:52.4476551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100459 + }, + "imageDetail": { + "width": 7248, + "height": 5398 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59501, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 459 }D143A69E-BC9B-4E71-8754-51CFA7E6AD64" + }, + "fileCreated": "2025-06-21T09:21:52.447657+00:00", + "fileLastModified": "2025-07-14T09:21:52.447657+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100462 + }, + "imageDetail": { + "width": 7358, + "height": 4229 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 462 }59A8EF24-6D61-4AC1-832A-422EE5DED59B" + }, + "fileCreated": "2025-06-21T09:21:52.447658+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100464 + }, + "imageDetail": { + "width": 7718, + "height": 2506 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80302, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 464 }3D5B7491-9269-41AE-87CF-6234246B7642" + }, + "fileCreated": "2025-06-21T09:21:52.4476625+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476624+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100465 + }, + "imageDetail": { + "width": 2764, + "height": 3984 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29408, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 465 }2D983FD1-6679-4BB8-AA13-3C8FD1E70A77" + }, + "fileCreated": "2025-06-21T09:21:52.4476629+00:00", + "fileLastModified": "2025-07-14T09:21:52.447663+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100466 + }, + "imageDetail": { + "width": 6231, + "height": 2311 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49930, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 466 }8CE5FECD-D4B0-4C2B-A9DA-D053AF4D4AAE" + }, + "fileCreated": "2025-06-21T09:21:52.4476633+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476633+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476634+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476631+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100467 + }, + "imageDetail": { + "width": 6378, + "height": 8703 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75981, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 467 }DCE54B25-3440-4AC8-AEDA-859D9BA5A3ED" + }, + "fileCreated": "2025-06-21T09:21:52.4476637+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476637+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476635+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100469 + }, + "imageDetail": { + "width": 1023, + "height": 8008 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99062, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 469 }D7523449-C2DF-49F9-B007-E6F97B7EE737" + }, + "fileCreated": "2025-06-21T09:21:52.4476644+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476645+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100470 + }, + "imageDetail": { + "width": 1901, + "height": 8386 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54674, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 470 }957804AA-B286-4075-8D72-3C2AFD3CDC62" + }, + "fileCreated": "2025-06-21T09:21:52.4476648+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476648+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476649+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100471 + }, + "imageDetail": { + "width": 9198, + "height": 9704 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53027, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 471 }9920C1D2-0DA5-4E24-9944-6CF3FB454CE1" + }, + "fileCreated": "2025-06-21T09:21:52.4476652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476652+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100472 + }, + "imageDetail": { + "width": 8714, + "height": 4685 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 472 }45592D08-E181-4F86-8254-E23A4A1307D2" + }, + "fileCreated": "2025-06-21T09:21:52.4476655+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476656+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476656+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100473 + }, + "imageDetail": { + "width": 4495, + "height": 9895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73196, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 473 }54AB3E7A-6F95-4AD1-9E53-80FCCFBDC32A" + }, + "fileCreated": "2025-06-21T09:21:52.4476659+00:00", + "fileLastModified": "2025-07-14T09:21:52.447666+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447666+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100474 + }, + "imageDetail": { + "width": 859, + "height": 2357 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71204, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 474 }42285C20-5F0E-4966-A3C9-45E81A18E893" + }, + "fileCreated": "2025-06-21T09:21:52.4476663+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476664+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476662+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100475 + }, + "imageDetail": { + "width": 3715, + "height": 5765 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43668, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 475 }7B73961F-3B00-4C21-A874-584A379338F6" + }, + "fileCreated": "2025-06-21T09:21:52.4476667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100476 + }, + "imageDetail": { + "width": 8500, + "height": 2179 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49774, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 476 }32ECA8C1-F677-42BD-A8D8-2CC8D6218932" + }, + "fileCreated": "2025-06-21T09:21:52.447667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476669+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100477 + }, + "imageDetail": { + "width": 7995, + "height": 5121 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 477 }8D7C6A66-3E9A-480C-A604-DEF75AA38181" + }, + "fileCreated": "2025-06-21T09:21:52.4476674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476675+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100479 + }, + "imageDetail": { + "width": 5532, + "height": 5237 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 50455, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 479 }E2EA7318-09E5-4A5C-BB7F-79208A9F8B6E" + }, + "fileCreated": "2025-06-21T09:21:52.4476774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476774+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476773+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100480 + }, + "imageDetail": { + "width": 759, + "height": 4341 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56370, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 480 }6D589D9B-7028-4DCE-9A52-7DF40DF06165" + }, + "fileCreated": "2025-06-21T09:21:52.4476777+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476778+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476778+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476776+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100485 + }, + "imageDetail": { + "width": 302, + "height": 9344 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60423, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 485 }331A58C1-B38B-4E6A-8C44-9F35129290BE" + }, + "fileCreated": "2025-06-21T09:21:52.4476797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476797+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476795+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100487 + }, + "imageDetail": { + "width": 2239, + "height": 8784 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86442, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 487 }CF5FCC3A-79FB-4103-8927-F29613A4A6DD" + }, + "fileCreated": "2025-06-21T09:21:52.4476804+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476805+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476803+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100490 + }, + "imageDetail": { + "width": 2342, + "height": 4238 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 55866, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 490 }626008F6-D78D-475F-A7C9-EA4BF1B8B02C" + }, + "fileCreated": "2025-06-21T09:21:52.4476815+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476816+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100492 + }, + "imageDetail": { + "width": 8888, + "height": 9212 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 492 }B1BD6732-B856-47FB-890F-A5233350C0FF" + }, + "fileCreated": "2025-06-21T09:21:52.4476851+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476852+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100494 + }, + "imageDetail": { + "width": 8444, + "height": 2338 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 494 }44AF0FFF-9E62-48AC-A8EF-617ED571946C" + }, + "fileCreated": "2025-06-21T09:21:52.4476859+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476859+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447686+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476857+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100495 + }, + "imageDetail": { + "width": 4063, + "height": 9781 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 79793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 495 }44FC5291-63D0-405A-80DF-4486A61436E7" + }, + "fileCreated": "2025-06-21T09:21:52.4476863+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476863+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476864+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476861+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100497 + }, + "imageDetail": { + "width": 8073, + "height": 4105 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 497 }EA966609-90FC-45BF-A141-7CBB3DE7F837" + }, + "fileCreated": "2025-06-21T09:21:52.447687+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476871+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476869+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100499 + }, + "imageDetail": { + "width": 2440, + "height": 2561 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26052, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 499 }4D8F2F5C-10B8-4D05-AE15-A37296F1E053" + }, + "fileCreated": "2025-06-21T09:21:52.4476878+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476878+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476879+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476876+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100501 + }, + "imageDetail": { + "width": 7771, + "height": 6900 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 501 }3D4191F6-D085-4AED-97CB-2436750913C5" + }, + "fileCreated": "2025-06-21T09:21:52.4476885+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476886+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476884+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100503 + }, + "imageDetail": { + "width": 8657, + "height": 7541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 503 }9DE4D7FF-D4EF-48E1-BF6E-01C2821F47A2" + }, + "fileCreated": "2025-06-21T09:21:52.4476892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476893+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100504 + }, + "imageDetail": { + "width": 7356, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73479, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 504 }AAE6DE22-F46B-4A83-ADB0-7CAF016B8CD7" + }, + "fileCreated": "2025-06-21T09:21:52.4476896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476897+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476895+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100505 + }, + "imageDetail": { + "width": 6520, + "height": 3031 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 81341, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 505 }3680E478-35F2-470F-938F-74AF424506B5" + }, + "fileCreated": "2025-06-21T09:21:52.4476925+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476925+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476926+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476923+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100509 + }, + "imageDetail": { + "width": 5079, + "height": 8708 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22358, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 509 }479E0772-9F33-4B4E-9C63-71A4661CBF2F" + }, + "fileCreated": "2025-06-21T09:21:52.4476939+00:00", + "fileLastModified": "2025-07-14T09:21:52.447694+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447694+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476938+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100510 + }, + "imageDetail": { + "width": 8115, + "height": 6848 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 510 }EDB5FA0E-C923-49B5-B5BD-C62371C52882" + }, + "fileCreated": "2025-06-21T09:21:52.4476943+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476943+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476941+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100514 + }, + "imageDetail": { + "width": 2124, + "height": 2291 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 36396, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 514 }3549C795-F510-4F7B-B780-BF1CC7D2942B" + }, + "fileCreated": "2025-06-21T09:21:52.4476991+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476991+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100515 + }, + "imageDetail": { + "width": 5929, + "height": 6892 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 515 }D5975270-28CA-4BE1-B305-B579EA76F455" + }, + "fileCreated": "2025-06-21T09:21:52.4476994+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476995+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476995+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476993+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100518 + }, + "imageDetail": { + "width": 7450, + "height": 5314 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45320, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 518 }C16763C7-A2DE-4EC5-97E5-DCC2EE9CEBBF" + }, + "fileCreated": "2025-06-21T09:21:52.4477005+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477006+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477007+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100519 + }, + "imageDetail": { + "width": 9592, + "height": 9445 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 85603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 519 }EED9C531-10B9-442A-99A2-D3FC1CC2D934" + }, + "fileCreated": "2025-06-21T09:21:52.4477033+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477033+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477031+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100521 + }, + "imageDetail": { + "width": 8203, + "height": 7610 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79906, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 521 }FA740B63-BE33-412D-B83C-8572A8871F61" + }, + "fileCreated": "2025-06-21T09:21:52.447704+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477041+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477039+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100524 + }, + "imageDetail": { + "width": 5936, + "height": 5145 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 524 }4667C188-87FD-46A0-A0BC-1BAD1EC9BC98" + }, + "fileCreated": "2025-06-21T09:21:52.4477052+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477052+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447705+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100525 + }, + "imageDetail": { + "width": 2178, + "height": 6737 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 95178, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 525 }20078EC8-7ED1-40C9-8282-12E95DF694C6" + }, + "fileCreated": "2025-06-21T09:21:52.4477055+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477056+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477056+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100527 + }, + "imageDetail": { + "width": 3770, + "height": 6447 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57446, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 527 }37DB2599-8F43-4163-A2C2-3A4C350CCF29" + }, + "fileCreated": "2025-06-21T09:21:52.4477063+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477062+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100530 + }, + "imageDetail": { + "width": 9644, + "height": 5598 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 530 }40605200-5571-42DE-8FF5-473D652DBB38" + }, + "fileCreated": "2025-06-21T09:21:52.4477074+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477074+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477075+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100533 + }, + "imageDetail": { + "width": 7958, + "height": 6037 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90107, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 533 }F82DAF5F-057A-491B-A082-EA1560D0868C" + }, + "fileCreated": "2025-06-21T09:21:52.4477108+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477109+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477109+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100536 + }, + "imageDetail": { + "width": 9419, + "height": 9561 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 66367, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 536 }F1969067-B14F-492A-AF84-DB8390798249" + }, + "fileCreated": "2025-06-21T09:21:52.447712+00:00", + "fileLastModified": "2025-07-14T09:21:52.447712+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477118+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100537 + }, + "imageDetail": { + "width": 7173, + "height": 3590 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76409, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 537 }7B596DC8-1CB2-488C-9B3C-2E45F3D418AF" + }, + "fileCreated": "2025-06-21T09:21:52.4477124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100539 + }, + "imageDetail": { + "width": 4688, + "height": 7950 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 71580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 539 }9978DDB5-F28E-42AE-8D39-8093608BCE37" + }, + "fileCreated": "2025-06-21T09:21:52.4477131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477132+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447713+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100541 + }, + "imageDetail": { + "width": 4616, + "height": 7102 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74635, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 541 }F9C44E55-D935-42BE-ABFF-1C85DF91939B" + }, + "fileCreated": "2025-06-21T09:21:52.4477139+00:00", + "fileLastModified": "2025-07-14T09:21:52.447714+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477138+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100542 + }, + "imageDetail": { + "width": 2988, + "height": 3720 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50638, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 542 }C48154C7-43D0-4CDC-B501-9BD12975349C" + }, + "fileCreated": "2025-06-21T09:21:52.4477143+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100543 + }, + "imageDetail": { + "width": 360, + "height": 3827 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 543 }F1E1CBD9-AF26-4557-B23D-9DFE5CC71878" + }, + "fileCreated": "2025-06-21T09:21:52.4477146+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477147+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477147+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100546 + }, + "imageDetail": { + "width": 1110, + "height": 8407 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 546 }92185740-46D8-4656-BC30-A85DB57AF33E" + }, + "fileCreated": "2025-06-21T09:21:52.4477174+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477175+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477175+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100547 + }, + "imageDetail": { + "width": 9509, + "height": 2400 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82375, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 547 }4B1D905D-AEFB-474F-BC34-FB0B3FC40FB3" + }, + "fileCreated": "2025-06-21T09:21:52.4477178+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477179+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477179+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477177+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100549 + }, + "imageDetail": { + "width": 2117, + "height": 5820 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 83936, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 549 }0DA1574B-DC20-42CA-8F5B-90193E5A4ACB" + }, + "fileCreated": "2025-06-21T09:21:52.4477186+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477186+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477187+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477184+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100552 + }, + "imageDetail": { + "width": 8589, + "height": 2861 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38405, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 552 }C3CE64DA-9BBB-4A94-BAD6-6694385661E9" + }, + "fileCreated": "2025-06-21T09:21:52.4477197+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477198+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477198+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100554 + }, + "imageDetail": { + "width": 8272, + "height": 5283 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41952, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 554 }EA626C1C-F7FB-46C4-A45F-5BD0FED65F31" + }, + "fileCreated": "2025-06-21T09:21:52.4477205+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477205+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477206+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100556 + }, + "imageDetail": { + "width": 6074, + "height": 3110 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30268, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 556 }AB100BA1-12CB-4257-80E0-3331E28A2F90" + }, + "fileCreated": "2025-06-21T09:21:52.4477212+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477213+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100558 + }, + "imageDetail": { + "width": 2418, + "height": 6761 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50015, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 558 }DE1C2DA8-B143-498F-AFD8-0763507916B4" + }, + "fileCreated": "2025-06-21T09:21:52.447722+00:00", + "fileLastModified": "2025-07-14T09:21:52.447722+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100561 + }, + "imageDetail": { + "width": 3589, + "height": 5037 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49658, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 561 }6552B436-0BD2-478D-B916-66A866327A23" + }, + "fileCreated": "2025-06-21T09:21:52.4477266+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477267+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100562 + }, + "imageDetail": { + "width": 5219, + "height": 6365 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70488, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 562 }1A9F5E75-FC4B-4E6B-A806-BFF32F7CC895" + }, + "fileCreated": "2025-06-21T09:21:52.447727+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477271+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477271+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477269+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100564 + }, + "imageDetail": { + "width": 8615, + "height": 9081 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86313, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 564 }665AEC63-AAC6-4A9C-85A8-86DD9B4976AD" + }, + "fileCreated": "2025-06-21T09:21:52.4477278+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100565 + }, + "imageDetail": { + "width": 4941, + "height": 5090 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 565 }A0B241B4-F7F3-4593-9BFA-06664D1427D1" + }, + "fileCreated": "2025-06-21T09:21:52.4477282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477282+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100567 + }, + "imageDetail": { + "width": 7279, + "height": 5428 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90041, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 567 }10BAF0A7-EC77-45B0-B548-B8D31EEA6D2F" + }, + "fileCreated": "2025-06-21T09:21:52.4477289+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477289+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477287+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100568 + }, + "imageDetail": { + "width": 7385, + "height": 6596 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50088, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 568 }AB0B69A5-08AA-4521-85E6-2D7E689FC311" + }, + "fileCreated": "2025-06-21T09:21:52.4477292+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477293+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477291+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100569 + }, + "imageDetail": { + "width": 9586, + "height": 3785 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87630, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 569 }455782F5-D601-4121-840B-EC1672576CB1" + }, + "fileCreated": "2025-06-21T09:21:52.4477296+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477296+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100570 + }, + "imageDetail": { + "width": 5782, + "height": 2665 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 98725, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 570 }E1518826-C0A3-4554-9AC8-C1F3380EC85E" + }, + "fileCreated": "2025-06-21T09:21:52.4477299+00:00", + "fileLastModified": "2025-07-14T09:21:52.44773+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100571 + }, + "imageDetail": { + "width": 6725, + "height": 6937 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63777, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 571 }AC9BA965-9316-474E-8989-5A0852508170" + }, + "fileCreated": "2025-06-21T09:21:52.4477303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477303+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477304+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100572 + }, + "imageDetail": { + "width": 7281, + "height": 7135 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43630, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 572 }35DC9FB0-3865-4DB3-839C-4206B7E41467" + }, + "fileCreated": "2025-06-21T09:21:52.4477307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477307+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477305+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100573 + }, + "imageDetail": { + "width": 9154, + "height": 6207 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 573 }D39EF378-8DCF-413B-A46B-6B4C66D5624E" + }, + "fileCreated": "2025-06-21T09:21:52.4477441+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477442+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477438+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100577 + }, + "imageDetail": { + "width": 2784, + "height": 4695 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82605, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 577 }F2542C59-5EBF-4D3D-87AE-11F60EB50C08" + }, + "fileCreated": "2025-06-21T09:21:52.4477457+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477458+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100578 + }, + "imageDetail": { + "width": 6209, + "height": 2223 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84922, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 578 }D8D9553E-F05E-4A8F-87A5-7DD6C59F5758" + }, + "fileCreated": "2025-06-21T09:21:52.4477461+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477461+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477462+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477459+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100579 + }, + "imageDetail": { + "width": 1413, + "height": 8072 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 579 }7CBA5C2B-3F31-4D2C-8999-75BC185EC48D" + }, + "fileCreated": "2025-06-21T09:21:52.4477465+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477465+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477463+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100580 + }, + "imageDetail": { + "width": 8056, + "height": 4028 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 76528, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 580 }3506CE62-720B-4757-B0B1-91409DD3A7FB" + }, + "fileCreated": "2025-06-21T09:21:52.4477468+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477469+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477467+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100581 + }, + "imageDetail": { + "width": 7678, + "height": 6768 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 86161, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 581 }AF370EC1-3D24-4CAD-815F-02CDAC8F40CA" + }, + "fileCreated": "2025-06-21T09:21:52.4477471+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477472+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447747+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100582 + }, + "imageDetail": { + "width": 9435, + "height": 5427 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45158, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 582 }5C718725-01B0-4BEA-98E5-0A4B1F0B16AF" + }, + "fileCreated": "2025-06-21T09:21:52.4477475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477476+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477476+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477474+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100584 + }, + "imageDetail": { + "width": 6663, + "height": 3730 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 584 }41215C9E-C647-435B-9DFA-12443DA7B853" + }, + "fileCreated": "2025-06-21T09:21:52.4477483+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477483+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477484+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477481+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100585 + }, + "imageDetail": { + "width": 324, + "height": 5504 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 585 }3448EB74-3902-40DC-847D-6F62211F831F" + }, + "fileCreated": "2025-06-21T09:21:52.4477487+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477487+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100586 + }, + "imageDetail": { + "width": 9999, + "height": 8393 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 586 }801BB381-F060-4363-9083-4745A9636685" + }, + "fileCreated": "2025-06-21T09:21:52.447749+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477491+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477491+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100589 + }, + "imageDetail": { + "width": 5443, + "height": 6072 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33936, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 589 }6A620F25-C2D1-44B5-9BE9-C2C26CFFD814" + }, + "fileCreated": "2025-06-21T09:21:52.4477529+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477529+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100591 + }, + "imageDetail": { + "width": 6803, + "height": 8075 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 591 }DDB6B9C0-06F4-491C-A7E2-7320A200BF2B" + }, + "fileCreated": "2025-06-21T09:21:52.4477536+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477537+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477535+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100592 + }, + "imageDetail": { + "width": 9394, + "height": 7486 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21049, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 592 }9E39BB1D-F10F-4882-BD36-FFA3A6F737BA" + }, + "fileCreated": "2025-06-21T09:21:52.447754+00:00", + "fileLastModified": "2025-07-14T09:21:52.447754+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100595 + }, + "imageDetail": { + "width": 1306, + "height": 2497 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54702, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 595 }81BF3F6C-3CDE-44D4-A96A-D40AB109BF92" + }, + "fileCreated": "2025-06-21T09:21:52.4477551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100599 + }, + "imageDetail": { + "width": 6965, + "height": 7787 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53219, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 599 }F5094E94-2829-4B9D-AB3E-DAC74E96790D" + }, + "fileCreated": "2025-06-21T09:21:52.4477566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477566+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477567+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100601 + }, + "imageDetail": { + "width": 3909, + "height": 7553 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 601 }8921974C-E731-4B5D-8499-B757D4D87655" + }, + "fileCreated": "2025-06-21T09:21:52.4477605+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477606+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477604+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100608 + }, + "imageDetail": { + "width": 8767, + "height": 2978 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88524, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 608 }1F9B47FB-A073-41B9-9497-3B5057BC9B20" + }, + "fileCreated": "2025-06-21T09:21:52.4477631+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477632+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477632+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100610 + }, + "imageDetail": { + "width": 7404, + "height": 6214 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 610 }8C52CAAF-1DAF-4DFD-A353-76CE020FD374" + }, + "fileCreated": "2025-06-21T09:21:52.4477639+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477639+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100612 + }, + "imageDetail": { + "width": 5812, + "height": 6469 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23992, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 612 }02026E03-D5C6-4EE8-BA1F-130D6E500FA4" + }, + "fileCreated": "2025-06-21T09:21:52.4477646+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477646+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100613 + }, + "imageDetail": { + "width": 8017, + "height": 4061 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61290, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 613 }6FC7AC13-DDF0-4B96-A088-7CB4757194B4" + }, + "fileCreated": "2025-06-21T09:21:52.4477649+00:00", + "fileLastModified": "2025-07-14T09:21:52.447765+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447765+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477648+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100616 + }, + "imageDetail": { + "width": 6770, + "height": 6335 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 616 }BD452A8A-9362-4E26-8AA0-065FC419EAD6" + }, + "fileCreated": "2025-06-21T09:21:52.4477686+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477686+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477687+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477684+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100618 + }, + "imageDetail": { + "width": 9468, + "height": 6838 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60818, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 618 }5BAAD70B-FEB8-444B-B35A-F601D6FB388D" + }, + "fileCreated": "2025-06-21T09:21:52.4477694+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477695+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100620 + }, + "imageDetail": { + "width": 1647, + "height": 3647 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71831, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 620 }4D2FA601-C7FE-4436-AF4E-F4D4592EEAC0" + }, + "fileCreated": "2025-06-21T09:21:52.4477702+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100621 + }, + "imageDetail": { + "width": 7578, + "height": 7967 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96712, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 621 }CE04CB0C-E304-4368-88DA-34F44D640026" + }, + "fileCreated": "2025-06-21T09:21:52.4477706+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477706+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477704+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100626 + }, + "imageDetail": { + "width": 1912, + "height": 5228 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23232, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 626 }39032F7D-21CD-492D-B03B-9BF04AA9C2DF" + }, + "fileCreated": "2025-06-21T09:21:52.4477724+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477724+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100630 + }, + "imageDetail": { + "width": 9511, + "height": 5764 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 630 }C6959808-5390-4052-A61D-AE319A32D184" + }, + "fileCreated": "2025-06-21T09:21:52.4477765+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477765+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100631 + }, + "imageDetail": { + "width": 6480, + "height": 6251 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 631 }5A65029A-4942-44F9-8C0A-41B66A3C4F8D" + }, + "fileCreated": "2025-06-21T09:21:52.4477768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477769+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477767+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100632 + }, + "imageDetail": { + "width": 9500, + "height": 9947 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 632 }D6EA8851-2469-44FF-A080-E7D22D76A623" + }, + "fileCreated": "2025-06-21T09:21:52.4477772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477772+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100634 + }, + "imageDetail": { + "width": 2539, + "height": 7679 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 36929, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 634 }544497B6-C1E0-4E9A-8389-41A93B970B13" + }, + "fileCreated": "2025-06-21T09:21:52.4477779+00:00", + "fileLastModified": "2025-07-14T09:21:52.447778+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100635 + }, + "imageDetail": { + "width": 8459, + "height": 6614 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 635 }C706D730-FBE2-4343-AFFF-C8A391DEE1D5" + }, + "fileCreated": "2025-06-21T09:21:52.4477783+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100636 + }, + "imageDetail": { + "width": 5265, + "height": 3383 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24996, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 636 }304906BE-2F5B-4742-B3D0-D8032F1E2C92" + }, + "fileCreated": "2025-06-21T09:21:52.4477786+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477787+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477787+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477785+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100638 + }, + "imageDetail": { + "width": 5325, + "height": 3987 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49700, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 638 }4576DC0B-82CD-49B6-9E20-0B59B3410353" + }, + "fileCreated": "2025-06-21T09:21:52.4477793+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477792+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100640 + }, + "imageDetail": { + "width": 4382, + "height": 4451 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 20270, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 640 }DD448E06-2F96-460A-8131-431457F46142" + }, + "fileCreated": "2025-06-21T09:21:52.44778+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477801+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100641 + }, + "imageDetail": { + "width": 5537, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88346, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 641 }90BAC483-318C-453B-A6ED-2EDB92186B32" + }, + "fileCreated": "2025-06-21T09:21:52.4477964+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477965+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477802+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100642 + }, + "imageDetail": { + "width": 9991, + "height": 2390 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 642 }7DD7BFBB-57A9-4840-BCA5-B5EEC7DD74F1" + }, + "fileCreated": "2025-06-21T09:21:52.447797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477971+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477968+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100645 + }, + "imageDetail": { + "width": 4327, + "height": 7098 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 645 }921A7142-4747-454F-A81A-1801B6DEC68D" + }, + "fileCreated": "2025-06-21T09:21:52.4477981+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100648 + }, + "imageDetail": { + "width": 7149, + "height": 5822 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48676, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 648 }706D0950-5438-4F13-B698-F48C5EDA32CA" + }, + "fileCreated": "2025-06-21T09:21:52.4477993+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477993+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477994+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100649 + }, + "imageDetail": { + "width": 9556, + "height": 7297 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94681, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 649 }EA72FADE-8F4D-4A49-AA65-9F2DB1191523" + }, + "fileCreated": "2025-06-21T09:21:52.4477997+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477997+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477998+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100650 + }, + "imageDetail": { + "width": 2396, + "height": 8022 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 89105, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 650 }1A696145-8B6A-4F3D-8020-DADC46154EFF" + }, + "fileCreated": "2025-06-21T09:21:52.4478001+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478001+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478001+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100652 + }, + "imageDetail": { + "width": 224, + "height": 5481 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75911, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 652 }6C2F4434-9F55-4CC7-8A39-B2904A80C1DA" + }, + "fileCreated": "2025-06-21T09:21:52.4478008+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478006+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100654 + }, + "imageDetail": { + "width": 3003, + "height": 7099 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 654 }AC5F9231-7D1B-437E-8C7C-425A8E56D421" + }, + "fileCreated": "2025-06-21T09:21:52.4478016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478016+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100655 + }, + "imageDetail": { + "width": 8997, + "height": 9239 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54763, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 655 }10B1DFF4-24F1-4BF8-811D-90575A2AFC49" + }, + "fileCreated": "2025-06-21T09:21:52.4478039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447804+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447804+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100656 + }, + "imageDetail": { + "width": 7112, + "height": 4432 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 656 }C2C519C8-8BFA-48C4-9888-9D8BCCC64275" + }, + "fileCreated": "2025-06-21T09:21:52.4478043+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478044+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100658 + }, + "imageDetail": { + "width": 3847, + "height": 5388 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87530, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 658 }3F67E820-AE08-4F52-8C71-8BBF93541187" + }, + "fileCreated": "2025-06-21T09:21:52.4478051+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478051+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100661 + }, + "imageDetail": { + "width": 8387, + "height": 8383 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78429, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 661 }9498FF46-5725-4033-A72D-840886D26B4C" + }, + "fileCreated": "2025-06-21T09:21:52.4478061+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478062+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478062+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100662 + }, + "imageDetail": { + "width": 7563, + "height": 9696 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 662 }3D110F84-FE7D-4408-B122-FF1DEA67B0D5" + }, + "fileCreated": "2025-06-21T09:21:52.4478065+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478066+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478063+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100663 + }, + "imageDetail": { + "width": 9861, + "height": 9276 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40092, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 663 }E6390E7B-3789-4DBF-AC28-88AF9650DAC5" + }, + "fileCreated": "2025-06-21T09:21:52.4478069+00:00", + "fileLastModified": "2025-07-14T09:21:52.447807+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100664 + }, + "imageDetail": { + "width": 3047, + "height": 7525 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73963, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 664 }6CB6D747-52A1-42CE-A88E-B8474A1EB38F" + }, + "fileCreated": "2025-06-21T09:21:52.4478073+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478074+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100665 + }, + "imageDetail": { + "width": 8944, + "height": 4015 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53946, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 665 }F35C76F5-674F-449A-A639-7D9989A7ED8E" + }, + "fileCreated": "2025-06-21T09:21:52.4478077+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100666 + }, + "imageDetail": { + "width": 3121, + "height": 6253 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 666 }6A7F9AFD-C353-47C3-AA5B-26EC44BDD386" + }, + "fileCreated": "2025-06-21T09:21:52.447808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478081+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478081+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100667 + }, + "imageDetail": { + "width": 3262, + "height": 5291 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80518, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 667 }E2E8D791-5391-45EE-9359-F3F3C41C6812" + }, + "fileCreated": "2025-06-21T09:21:52.4478084+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478085+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478083+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100669 + }, + "imageDetail": { + "width": 7160, + "height": 8654 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38496, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 669 }08FF8C9B-D919-4A34-A746-F0A5511FE6AB" + }, + "fileCreated": "2025-06-21T09:21:52.4478132+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478133+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447813+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100670 + }, + "imageDetail": { + "width": 7070, + "height": 2112 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 670 }B9ACAD54-46F9-47FC-A152-AF9CF476C0C7" + }, + "fileCreated": "2025-06-21T09:21:52.4478136+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478136+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100671 + }, + "imageDetail": { + "width": 9013, + "height": 5801 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 671 }148F3384-23A0-4511-A020-68ECCF92174A" + }, + "fileCreated": "2025-06-21T09:21:52.4478139+00:00", + "fileLastModified": "2025-07-14T09:21:52.447814+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447814+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478138+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100672 + }, + "imageDetail": { + "width": 3411, + "height": 6732 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 47241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 672 }47AD1362-1E98-490F-A040-AE78D847DB6D" + }, + "fileCreated": "2025-06-21T09:21:52.4478143+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478144+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478144+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478142+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100674 + }, + "imageDetail": { + "width": 8693, + "height": 4080 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27969, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 674 }B4582C4A-0C77-4798-AA6C-C69ABBBE622A" + }, + "fileCreated": "2025-06-21T09:21:52.447815+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478151+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100676 + }, + "imageDetail": { + "width": 4449, + "height": 7579 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20418, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 676 }9369BD5C-15EC-4009-B1C4-E52053E8006A" + }, + "fileCreated": "2025-06-21T09:21:52.4478158+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478159+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478157+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100677 + }, + "imageDetail": { + "width": 7564, + "height": 9660 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52533, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 677 }4F8EB962-AAF0-4E9D-8FA5-EEDFABB1C419" + }, + "fileCreated": "2025-06-21T09:21:52.4478161+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478162+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100678 + }, + "imageDetail": { + "width": 5009, + "height": 2576 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56608, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 678 }599F4832-8D50-4BD5-A201-B8672C7D52DD" + }, + "fileCreated": "2025-06-21T09:21:52.4478165+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100679 + }, + "imageDetail": { + "width": 3968, + "height": 5255 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54026, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 679 }2B299A5D-EE54-41DC-9877-6BEFD70E0216" + }, + "fileCreated": "2025-06-21T09:21:52.4478169+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478169+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478167+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100680 + }, + "imageDetail": { + "width": 4592, + "height": 9759 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34879, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 680 }B1C1FF2D-1E19-4ABC-9FF8-4A68580D69BD" + }, + "fileCreated": "2025-06-21T09:21:52.4478172+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478173+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100683 + }, + "imageDetail": { + "width": 3105, + "height": 4205 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72973, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 683 }843D6F24-9EF2-4F35-841D-7087DE182B1B" + }, + "fileCreated": "2025-06-21T09:21:52.4478217+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478215+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100684 + }, + "imageDetail": { + "width": 8997, + "height": 8414 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98373, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 684 }98792E7F-7D23-4A9C-BB86-8A6BFD338FDB" + }, + "fileCreated": "2025-06-21T09:21:52.447822+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478221+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478221+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478219+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100688 + }, + "imageDetail": { + "width": 7217, + "height": 3580 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 688 }243E1624-DA8B-4320-AA8D-EFFD349304A8" + }, + "fileCreated": "2025-06-21T09:21:52.4478236+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478236+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478237+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100689 + }, + "imageDetail": { + "width": 991, + "height": 4631 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99011, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 689 }133A5B85-17F9-4310-99ED-5FEBDAB753F6" + }, + "fileCreated": "2025-06-21T09:21:52.447824+00:00", + "fileLastModified": "2025-07-14T09:21:52.447824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100690 + }, + "imageDetail": { + "width": 7716, + "height": 8993 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 690 }19637E2B-3506-4F53-AE8F-425CA62BB3A7" + }, + "fileCreated": "2025-06-21T09:21:52.4478243+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100693 + }, + "imageDetail": { + "width": 2834, + "height": 8125 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89971, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 693 }1C1F5C41-57C0-4EE3-98E3-D3A865D40B2A" + }, + "fileCreated": "2025-06-21T09:21:52.4478254+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478254+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100695 + }, + "imageDetail": { + "width": 7080, + "height": 2039 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53209, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 695 }9D044947-CECE-48FE-8BB6-EB40D624ECED" + }, + "fileCreated": "2025-06-21T09:21:52.4478261+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478262+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478262+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100699 + }, + "imageDetail": { + "width": 1850, + "height": 2242 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98494, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 699 }C43602A0-BED3-4779-B812-1F00EBB457F0" + }, + "fileCreated": "2025-06-21T09:21:52.44783+00:00", + "fileLastModified": "2025-07-14T09:21:52.44783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100700 + }, + "imageDetail": { + "width": 7665, + "height": 3711 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 82748, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 700 }049A5116-25B0-4ACF-B157-E7EA02C78E50" + }, + "fileCreated": "2025-06-21T09:21:52.4478303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478304+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478302+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100701 + }, + "imageDetail": { + "width": 7248, + "height": 9709 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82732, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 701 }F67BFE0E-752E-4C38-9F21-D8C096E9C2C0" + }, + "fileCreated": "2025-06-21T09:21:52.4478307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478307+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478308+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478305+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100704 + }, + "imageDetail": { + "width": 845, + "height": 5542 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31426, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 704 }900DB48F-8310-431F-9C30-69EC8E7861D7" + }, + "fileCreated": "2025-06-21T09:21:52.4478318+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478319+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478319+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478316+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100705 + }, + "imageDetail": { + "width": 5153, + "height": 8480 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80350, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 705 }8B8FEF86-DBCE-4939-8FB0-DC5A616950B4" + }, + "fileCreated": "2025-06-21T09:21:52.4478322+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478323+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478323+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100706 + }, + "imageDetail": { + "width": 3666, + "height": 7583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57523, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 706 }D53B3F08-835F-4642-9ADC-57EECF869F08" + }, + "fileCreated": "2025-06-21T09:21:52.4478326+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478327+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478327+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100710 + }, + "imageDetail": { + "width": 6370, + "height": 4474 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38719, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 710 }2F311B93-7017-49DF-B0DF-89E618DBD7DB" + }, + "fileCreated": "2025-06-21T09:21:52.4478368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478369+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478369+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100711 + }, + "imageDetail": { + "width": 4258, + "height": 4959 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 711 }50199C19-C8FE-410B-9273-712F2068B7F8" + }, + "fileCreated": "2025-06-21T09:21:52.4478372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478373+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478371+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100713 + }, + "imageDetail": { + "width": 1028, + "height": 7333 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94224, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 713 }12B3FA46-A8EC-445E-93B4-31562C8F2EBA" + }, + "fileCreated": "2025-06-21T09:21:52.4478379+00:00", + "fileLastModified": "2025-07-14T09:21:52.447838+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100714 + }, + "imageDetail": { + "width": 9424, + "height": 6488 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 714 }4F374B97-1F4D-49D6-8E85-C359EAC45804" + }, + "fileCreated": "2025-06-21T09:21:52.4478383+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478383+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478381+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100715 + }, + "imageDetail": { + "width": 2986, + "height": 2039 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 715 }88E5BE55-AECE-4D09-AADF-56685D8A6432" + }, + "fileCreated": "2025-06-21T09:21:52.4478386+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478387+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100716 + }, + "imageDetail": { + "width": 7344, + "height": 5816 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 716 }1D15A7BC-D1D5-4B8C-86D6-6916AAB70668" + }, + "fileCreated": "2025-06-21T09:21:52.447839+00:00", + "fileLastModified": "2025-07-14T09:21:52.447839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100717 + }, + "imageDetail": { + "width": 9159, + "height": 7384 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55953, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 717 }10B6E21D-CDB5-4225-A9CC-725C664F53A0" + }, + "fileCreated": "2025-06-21T09:21:52.4478393+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478394+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100719 + }, + "imageDetail": { + "width": 3071, + "height": 5200 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63617, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 719 }E59C1E91-B78D-4D99-B119-2B9631DBAF46" + }, + "fileCreated": "2025-06-21T09:21:52.44784+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478401+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478399+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100722 + }, + "imageDetail": { + "width": 5916, + "height": 9582 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 722 }E100B716-93ED-4BCE-9C21-E4B56357AA7A" + }, + "fileCreated": "2025-06-21T09:21:52.4478412+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478412+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478413+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100723 + }, + "imageDetail": { + "width": 4920, + "height": 6831 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59449, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 723 }CD617A77-A9EE-47A0-9512-20776343072F" + }, + "fileCreated": "2025-06-21T09:21:52.4478439+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478439+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447844+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100724 + }, + "imageDetail": { + "width": 932, + "height": 5826 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54028, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 724 }AF320C2C-C504-4E05-976E-E945DD3E57FE" + }, + "fileCreated": "2025-06-21T09:21:52.4478443+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478445+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478441+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100729 + }, + "imageDetail": { + "width": 8035, + "height": 8668 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93396, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 729 }C1D48111-9166-40B2-9D16-62AA2F4E9471" + }, + "fileCreated": "2025-06-21T09:21:52.4478462+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478462+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447846+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100730 + }, + "imageDetail": { + "width": 9377, + "height": 6297 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60855, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 730 }9E1CC318-9C09-46A0-9E6D-AAE7171C7BAD" + }, + "fileCreated": "2025-06-21T09:21:52.4478466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478466+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478467+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478464+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100731 + }, + "imageDetail": { + "width": 178, + "height": 4600 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52371, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 731 }32376497-8452-412A-8F3D-D000C6217F51" + }, + "fileCreated": "2025-06-21T09:21:52.447847+00:00", + "fileLastModified": "2025-07-14T09:21:52.447847+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100732 + }, + "imageDetail": { + "width": 9577, + "height": 5876 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20641, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 732 }8A57A93E-533D-4554-926A-336E819C7D0C" + }, + "fileCreated": "2025-06-21T09:21:52.4478473+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478474+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478475+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478472+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100733 + }, + "imageDetail": { + "width": 1006, + "height": 3789 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35247, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 733 }7EF1ED11-F338-4290-89C1-DA03A59A819B" + }, + "fileCreated": "2025-06-21T09:21:52.4478477+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478476+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100734 + }, + "imageDetail": { + "width": 313, + "height": 7095 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 734 }979EFEF9-E166-420A-AD30-F44CDAD76FB2" + }, + "fileCreated": "2025-06-21T09:21:52.4478481+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478481+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478482+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100738 + }, + "imageDetail": { + "width": 7444, + "height": 6406 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93173, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 738 }98A60205-2F4D-4EFA-94B3-7294EA9277D4" + }, + "fileCreated": "2025-06-21T09:21:52.447852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478521+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100739 + }, + "imageDetail": { + "width": 8623, + "height": 5205 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80722, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 739 }84366456-A45C-4AF5-9249-64DB239788D0" + }, + "fileCreated": "2025-06-21T09:21:52.4478524+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478524+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478525+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100740 + }, + "imageDetail": { + "width": 9945, + "height": 6547 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64744, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 740 }7CF1CE92-2F17-4554-888B-CE568894EB62" + }, + "fileCreated": "2025-06-21T09:21:52.4478527+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478528+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478526+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100741 + }, + "imageDetail": { + "width": 5720, + "height": 8839 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26156, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 741 }34A9C305-50D6-49B3-B839-E41B5135D5AA" + }, + "fileCreated": "2025-06-21T09:21:52.4478531+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478532+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478529+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100742 + }, + "imageDetail": { + "width": 183, + "height": 6595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98301, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 742 }A6E370E9-792A-40FB-BD61-926702A5FADA" + }, + "fileCreated": "2025-06-21T09:21:52.4478535+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478535+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478536+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478533+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100743 + }, + "imageDetail": { + "width": 3736, + "height": 2455 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33513, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 743 }ADCE167D-A04C-4A08-AE99-FF08CE9A0170" + }, + "fileCreated": "2025-06-21T09:21:52.4478538+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478539+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478537+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100744 + }, + "imageDetail": { + "width": 2222, + "height": 5275 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51640, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 744 }42E15E37-7188-44F1-A35A-CE71BF53AACE" + }, + "fileCreated": "2025-06-21T09:21:52.4478542+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478543+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447854+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100745 + }, + "imageDetail": { + "width": 6166, + "height": 8547 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 47429, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 745 }79CF1A32-EC43-452B-82A2-8CB50BE4D5FD" + }, + "fileCreated": "2025-06-21T09:21:52.4478546+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100748 + }, + "imageDetail": { + "width": 3258, + "height": 2662 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 748 }D478FE81-5768-4524-8A4B-2F09AC3E78CE" + }, + "fileCreated": "2025-06-21T09:21:52.447858+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478577+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100750 + }, + "imageDetail": { + "width": 7974, + "height": 6213 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 750 }F2AB2CA8-DB43-454B-9B76-AFF01344E2F4" + }, + "fileCreated": "2025-06-21T09:21:52.4478622+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478622+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478619+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100753 + }, + "imageDetail": { + "width": 1008, + "height": 3050 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56949, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 753 }C7A9A781-99B5-42FF-AD5D-70B09B746660" + }, + "fileCreated": "2025-06-21T09:21:52.4478637+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478638+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478635+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100756 + }, + "imageDetail": { + "width": 2263, + "height": 5931 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69869, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 756 }4130D837-6C0A-4A89-ABCE-8DD3F427B4A2" + }, + "fileCreated": "2025-06-21T09:21:52.4478652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478653+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100760 + }, + "imageDetail": { + "width": 1537, + "height": 2915 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 79351, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 760 }0FA0F7E6-B3F0-4490-B333-FB60F8A6700F" + }, + "fileCreated": "2025-06-21T09:21:52.4478674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478675+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478676+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100761 + }, + "imageDetail": { + "width": 7564, + "height": 4004 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34276, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 761 }B8374961-F8B1-410B-BFAE-8F131D6CE842" + }, + "fileCreated": "2025-06-21T09:21:52.447868+00:00", + "fileLastModified": "2025-07-14T09:21:52.447868+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478681+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100763 + }, + "imageDetail": { + "width": 8076, + "height": 6076 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29701, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 763 }15E91566-52D6-455D-A498-72473850D8A3" + }, + "fileCreated": "2025-06-21T09:21:52.4478691+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478692+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478693+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100768 + }, + "imageDetail": { + "width": 2105, + "height": 8901 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50381, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 768 }0022E0DF-CD0D-4F11-A5F1-0F73244F646F" + }, + "fileCreated": "2025-06-21T09:21:52.4478751+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478752+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478752+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100770 + }, + "imageDetail": { + "width": 5882, + "height": 4393 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 56160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 770 }A1ACBBBE-1776-4109-BEAE-74673432449F" + }, + "fileCreated": "2025-06-21T09:21:52.4478759+00:00", + "fileLastModified": "2025-07-14T09:21:52.447876+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478758+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100772 + }, + "imageDetail": { + "width": 8198, + "height": 9579 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60902, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 772 }09DED62B-A00D-4A33-9968-4A3670329C30" + }, + "fileCreated": "2025-06-21T09:21:52.4478767+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478767+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478765+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100773 + }, + "imageDetail": { + "width": 8326, + "height": 5357 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93836, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 773 }568A36E6-D1E5-415B-80C5-667E6126F6C2" + }, + "fileCreated": "2025-06-21T09:21:52.447877+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478771+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478771+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100779 + }, + "imageDetail": { + "width": 9836, + "height": 9617 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41689, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 779 }15072D08-B73C-4AE8-8D2E-FF43B62B0E92" + }, + "fileCreated": "2025-06-21T09:21:52.4478831+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478832+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478832+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100783 + }, + "imageDetail": { + "width": 9286, + "height": 3855 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64850, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 783 }7ACB19B6-0627-4657-A907-44793332196C" + }, + "fileCreated": "2025-06-21T09:21:52.4478846+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478847+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478847+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100784 + }, + "imageDetail": { + "width": 1897, + "height": 9757 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48339, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 784 }21CEA042-661E-45F9-873C-970FE98BB5BB" + }, + "fileCreated": "2025-06-21T09:21:52.447885+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478851+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100785 + }, + "imageDetail": { + "width": 6582, + "height": 8925 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 785 }B3E9F979-364E-46AD-8A83-4CAD623462F3" + }, + "fileCreated": "2025-06-21T09:21:52.4478854+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478854+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478852+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100787 + }, + "imageDetail": { + "width": 8067, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 46068, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 787 }BA3A69FA-B1E9-485C-8541-79444F644951" + }, + "fileCreated": "2025-06-21T09:21:52.4478861+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478862+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100790 + }, + "imageDetail": { + "width": 7958, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 78280, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 790 }D7974E8A-328C-4981-9079-25F7437EA46F" + }, + "fileCreated": "2025-06-21T09:21:52.4478873+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478874+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478874+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478872+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100791 + }, + "imageDetail": { + "width": 933, + "height": 2532 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 791 }8374C050-3A71-4CB8-AE40-740B0CF1E639" + }, + "fileCreated": "2025-06-21T09:21:52.4478912+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478913+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100794 + }, + "imageDetail": { + "width": 2284, + "height": 6798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22766, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 794 }1DF74A6C-6A17-4D48-831B-F4E9635CAAB7" + }, + "fileCreated": "2025-06-21T09:21:52.4478923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478924+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478922+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100795 + }, + "imageDetail": { + "width": 5728, + "height": 2694 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 795 }47A3E586-FCAB-4430-A244-A5B65BF58C19" + }, + "fileCreated": "2025-06-21T09:21:52.4478927+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478927+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478925+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100797 + }, + "imageDetail": { + "width": 345, + "height": 7122 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77873, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 797 }9376B52C-012C-4F35-A554-5681F31E08AF" + }, + "fileCreated": "2025-06-21T09:21:52.4478934+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478935+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478935+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478932+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100803 + }, + "imageDetail": { + "width": 2313, + "height": 8464 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 91389, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 803 }770AB3C9-DF6F-4B7E-B29C-FC94B4CAAC5F" + }, + "fileCreated": "2025-06-21T09:21:52.4478956+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478957+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478957+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100805 + }, + "imageDetail": { + "width": 5341, + "height": 6367 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 805 }162F19D4-4328-463A-B989-10EC7E6F2F62" + }, + "fileCreated": "2025-06-21T09:21:52.4478994+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478994+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478995+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100807 + }, + "imageDetail": { + "width": 8482, + "height": 9641 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96829, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 807 }366F5E1D-3E55-4566-8BDC-60AE8C8E235E" + }, + "fileCreated": "2025-06-21T09:21:52.4479001+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479002+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479002+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100808 + }, + "imageDetail": { + "width": 9526, + "height": 3027 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86291, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 808 }3553C008-2210-4562-8B4D-CB257B5F1D99" + }, + "fileCreated": "2025-06-21T09:21:52.4479005+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479006+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100809 + }, + "imageDetail": { + "width": 4969, + "height": 9434 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83232, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 809 }134E17D1-93A8-45B4-91AF-CDD46B7F98A9" + }, + "fileCreated": "2025-06-21T09:21:52.4479009+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479007+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100811 + }, + "imageDetail": { + "width": 4563, + "height": 9727 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59212, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 811 }2F6AC7BD-35F0-49D3-8276-3FBC086BB241" + }, + "fileCreated": "2025-06-21T09:21:52.4479016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479016+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479017+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100812 + }, + "imageDetail": { + "width": 3011, + "height": 4919 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90495, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 812 }D764C773-7229-4036-B20F-EEF18AB3EF78" + }, + "fileCreated": "2025-06-21T09:21:52.4479019+00:00", + "fileLastModified": "2025-07-14T09:21:52.447902+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479018+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100814 + }, + "imageDetail": { + "width": 1393, + "height": 6773 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 814 }B3493C6A-2106-4274-BF82-C4EE28F8BAD0" + }, + "fileCreated": "2025-06-21T09:21:52.4479026+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479027+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479025+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100816 + }, + "imageDetail": { + "width": 9628, + "height": 5519 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 816 }F20E745F-4D98-4B8D-B89C-904C7E7F1178" + }, + "fileCreated": "2025-06-21T09:21:52.4479034+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479034+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479032+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100817 + }, + "imageDetail": { + "width": 2099, + "height": 9085 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74992, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 817 }A52139EF-597F-4FBE-AD08-67B7E443F08E" + }, + "fileCreated": "2025-06-21T09:21:52.4479038+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479038+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479038+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479036+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100818 + }, + "imageDetail": { + "width": 7459, + "height": 7002 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 818 }0A5FC00C-F707-4240-8118-7BD91771DECF" + }, + "fileCreated": "2025-06-21T09:21:52.4479142+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479139+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100820 + }, + "imageDetail": { + "width": 8820, + "height": 9729 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35271, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 820 }988FA8E4-63B7-4205-AEF9-3AA042D482BC" + }, + "fileCreated": "2025-06-21T09:21:52.447915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479151+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100821 + }, + "imageDetail": { + "width": 1212, + "height": 6541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89469, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 821 }474A42FD-0BF7-4FB5-BD58-08323EE899D1" + }, + "fileCreated": "2025-06-21T09:21:52.4479153+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479154+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479155+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100822 + }, + "imageDetail": { + "width": 691, + "height": 2927 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 822 }37B40833-238C-4527-B802-F1EA04645ADA" + }, + "fileCreated": "2025-06-21T09:21:52.4479158+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479158+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479159+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100823 + }, + "imageDetail": { + "width": 7470, + "height": 6459 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78341, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 823 }60AD823B-D495-45EC-A37B-89226AE86178" + }, + "fileCreated": "2025-06-21T09:21:52.4479162+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479162+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479163+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447916+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100824 + }, + "imageDetail": { + "width": 5324, + "height": 6882 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 824 }5EDAFC2F-0284-4F92-9EFC-9FB21EE19125" + }, + "fileCreated": "2025-06-21T09:21:52.4479166+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479166+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479166+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100825 + }, + "imageDetail": { + "width": 6212, + "height": 7179 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 825 }C12EF85E-94EE-4AB0-B77B-42E564AA513D" + }, + "fileCreated": "2025-06-21T09:21:52.4479169+00:00", + "fileLastModified": "2025-07-14T09:21:52.447917+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447917+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479168+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100826 + }, + "imageDetail": { + "width": 8202, + "height": 3575 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49652, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 826 }2532BDC9-2B53-4946-BE2C-C1B8FF49C335" + }, + "fileCreated": "2025-06-21T09:21:52.4479173+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479174+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100829 + }, + "imageDetail": { + "width": 4153, + "height": 8122 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82160, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 829 }15207680-8327-47F3-967F-CCDC7B82277E" + }, + "fileCreated": "2025-06-21T09:21:52.4479184+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479184+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479185+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479182+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100832 + }, + "imageDetail": { + "width": 4329, + "height": 7914 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55755, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 832 }E4A7008B-F4F7-4DFD-B302-7962EFD2ED9E" + }, + "fileCreated": "2025-06-21T09:21:52.4479223+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479224+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479222+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100833 + }, + "imageDetail": { + "width": 6366, + "height": 5565 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27044, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 833 }16D70E12-17B5-4AA0-B80C-C4F954F86A17" + }, + "fileCreated": "2025-06-21T09:21:52.4479227+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479227+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100834 + }, + "imageDetail": { + "width": 9101, + "height": 9816 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 834 }CDB9AA08-AD3A-43DC-BAD3-9A19B63113E3" + }, + "fileCreated": "2025-06-21T09:21:52.447923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479231+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479232+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479229+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100837 + }, + "imageDetail": { + "width": 9320, + "height": 8317 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 837 }CE720773-3771-41F5-929C-D9F4954E5A0B" + }, + "fileCreated": "2025-06-21T09:21:52.4479242+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479242+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479243+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447924+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100838 + }, + "imageDetail": { + "width": 5646, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35613, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 838 }90626691-FDD0-4EDC-8377-05C3D15EAD3B" + }, + "fileCreated": "2025-06-21T09:21:52.4479246+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479246+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479247+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100839 + }, + "imageDetail": { + "width": 4332, + "height": 8493 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73427, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 839 }3AD03F92-19C6-4396-8DDA-33C4EFB72A77" + }, + "fileCreated": "2025-06-21T09:21:52.447925+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479251+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100840 + }, + "imageDetail": { + "width": 6242, + "height": 7091 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 840 }E53D1CB7-2A07-4362-86A8-3F14540F0A48" + }, + "fileCreated": "2025-06-21T09:21:52.4479254+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479254+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100841 + }, + "imageDetail": { + "width": 5187, + "height": 6393 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81103, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 841 }14BAFE6D-E7AE-46FC-A86A-B32A6B095C66" + }, + "fileCreated": "2025-06-21T09:21:52.4479257+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479258+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479258+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100843 + }, + "imageDetail": { + "width": 6657, + "height": 2762 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 843 }A50EF7CB-3A16-442D-A060-EADC9E6E8BDD" + }, + "fileCreated": "2025-06-21T09:21:52.4479265+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479265+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479263+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100844 + }, + "imageDetail": { + "width": 357, + "height": 8756 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 844 }14C024D0-3021-491D-9CF0-46A0D9A953B9" + }, + "fileCreated": "2025-06-21T09:21:52.4479269+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479269+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479267+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100846 + }, + "imageDetail": { + "width": 8448, + "height": 2913 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38827, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 846 }3BC2C7E4-AD2A-4E3D-B2F4-2580F2E46BA3" + }, + "fileCreated": "2025-06-21T09:21:52.4479308+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479308+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479309+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479306+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100851 + }, + "imageDetail": { + "width": 8633, + "height": 4257 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43799, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 851 }037CAEF6-6CB8-4CCD-AEA5-F25875FDB18E" + }, + "fileCreated": "2025-06-21T09:21:52.4479327+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479327+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100859 + }, + "imageDetail": { + "width": 2286, + "height": 8647 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87145, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 859 }4AAEAE0B-69FA-4B98-9F58-B6C8DAF10888" + }, + "fileCreated": "2025-06-21T09:21:52.4479385+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479385+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100862 + }, + "imageDetail": { + "width": 3805, + "height": 3800 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 862 }E03E2E19-5CD4-4B42-8754-EF0BA36A6F4C" + }, + "fileCreated": "2025-06-21T09:21:52.4479396+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479396+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479397+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100863 + }, + "imageDetail": { + "width": 8880, + "height": 6508 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57405, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 863 }A98D6518-4CE3-4601-8925-C30199467EFB" + }, + "fileCreated": "2025-06-21T09:21:52.44794+00:00", + "fileLastModified": "2025-07-14T09:21:52.44794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479398+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100864 + }, + "imageDetail": { + "width": 8405, + "height": 2639 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86717, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 864 }B10DDC4E-3752-4103-A940-FF6985258E31" + }, + "fileCreated": "2025-06-21T09:21:52.4479403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479404+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479404+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479402+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100865 + }, + "imageDetail": { + "width": 6958, + "height": 9963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59098, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 865 }FCC9E54C-F44D-4486-9243-6D24D0F5C49C" + }, + "fileCreated": "2025-06-21T09:21:52.4479407+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479408+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100866 + }, + "imageDetail": { + "width": 9207, + "height": 5096 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70224, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 866 }FA418DA8-7B3D-492E-8370-48A0582B0B0D" + }, + "fileCreated": "2025-06-21T09:21:52.4479411+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479412+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100867 + }, + "imageDetail": { + "width": 7019, + "height": 4871 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91087, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 867 }77EAA3C1-6DA1-44E6-AA75-2547D9BD06D8" + }, + "fileCreated": "2025-06-21T09:21:52.4479415+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479415+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479413+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100870 + }, + "imageDetail": { + "width": 4689, + "height": 7225 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 870 }006DBD5D-AFD3-44C6-90C2-53288101C14B" + }, + "fileCreated": "2025-06-21T09:21:52.4479425+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479426+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479426+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100876 + }, + "imageDetail": { + "width": 7953, + "height": 8254 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 876 }F4AF4525-FF8B-465D-BE95-EE968B40CB9F" + }, + "fileCreated": "2025-06-21T09:21:52.4479466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479467+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479465+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100879 + }, + "imageDetail": { + "width": 6207, + "height": 9695 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 42529, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 879 }A22BA155-8429-43D6-A229-1F821E19A133" + }, + "fileCreated": "2025-06-21T09:21:52.4479477+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479477+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479478+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479475+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100886 + }, + "imageDetail": { + "width": 6442, + "height": 3756 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 886 }7F2A805B-530C-482D-9022-9BB3F384F137" + }, + "fileCreated": "2025-06-21T09:21:52.4479547+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479545+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100891 + }, + "imageDetail": { + "width": 4866, + "height": 6052 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 87593, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 891 }AE726384-7640-46C2-AA69-9CE2BA318E13" + }, + "fileCreated": "2025-06-21T09:21:52.4479566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100893 + }, + "imageDetail": { + "width": 1943, + "height": 5741 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63495, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 893 }74D3A4FB-202C-4289-A68B-7AD4791A2D95" + }, + "fileCreated": "2025-06-21T09:21:52.4479573+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100898 + }, + "imageDetail": { + "width": 7305, + "height": 6853 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 898 }706DCB03-93B7-4D59-B1C7-BC63F6C81FE4" + }, + "fileCreated": "2025-06-21T09:21:52.4479592+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479592+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479593+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100899 + }, + "imageDetail": { + "width": 9503, + "height": 6423 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58483, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 899 }9CDB9528-C5E7-4077-8A5F-B987D1689E41" + }, + "fileCreated": "2025-06-21T09:21:52.4479596+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479596+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479594+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100904 + }, + "imageDetail": { + "width": 2598, + "height": 2006 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 904 }7885B076-D93C-49D3-914B-0D2E00AF4782" + }, + "fileCreated": "2025-06-21T09:21:52.447966+00:00", + "fileLastModified": "2025-07-14T09:21:52.447966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100907 + }, + "imageDetail": { + "width": 3615, + "height": 9832 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45122, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 907 }994E0632-9F73-46B4-BA69-22C0689DB9BC" + }, + "fileCreated": "2025-06-21T09:21:52.4479671+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479669+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100909 + }, + "imageDetail": { + "width": 2986, + "height": 7772 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33962, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 909 }FD4F3B65-C963-4226-A432-DA0F6A61E171" + }, + "fileCreated": "2025-06-21T09:21:52.4479678+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479679+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479679+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100914 + }, + "imageDetail": { + "width": 2262, + "height": 7062 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58663, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 914 }556BF562-CEC1-419C-B875-4D35410A2FD4" + }, + "fileCreated": "2025-06-21T09:21:52.4479739+00:00", + "fileLastModified": "2025-07-14T09:21:52.447974+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447974+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479738+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100915 + }, + "imageDetail": { + "width": 6536, + "height": 4857 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 915 }036FF2AD-E623-4145-BF41-72F668F060D1" + }, + "fileCreated": "2025-06-21T09:21:52.4479743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479744+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479742+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100916 + }, + "imageDetail": { + "width": 4887, + "height": 2129 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37236, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 916 }1DD595D7-8BCF-41D5-B75C-B772001A8399" + }, + "fileCreated": "2025-06-21T09:21:52.4479747+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479747+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479748+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100921 + }, + "imageDetail": { + "width": 420, + "height": 5475 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23237, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 921 }E935B383-FC6B-4A3D-8936-4D62D70CD6B4" + }, + "fileCreated": "2025-06-21T09:21:52.4479766+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479767+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479767+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479764+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100923 + }, + "imageDetail": { + "width": 4421, + "height": 5674 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37228, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 923 }86455BB7-33F0-446A-B34C-3174FF8E0203" + }, + "fileCreated": "2025-06-21T09:21:52.4479774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479775+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479775+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479772+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100926 + }, + "imageDetail": { + "width": 4967, + "height": 6229 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 926 }B2904480-9465-4B72-BDC6-025ED7AA4027" + }, + "fileCreated": "2025-06-21T09:21:52.4479785+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479785+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479786+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100927 + }, + "imageDetail": { + "width": 7631, + "height": 5718 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51601, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 927 }B2844CCC-7FD9-4D46-926D-3BE2A52E8E1C" + }, + "fileCreated": "2025-06-21T09:21:52.4479818+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479819+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479819+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100931 + }, + "imageDetail": { + "width": 1771, + "height": 2671 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 931 }EB8845F6-38F4-4B1C-B18D-C6A6A4F69CF1" + }, + "fileCreated": "2025-06-21T09:21:52.4479833+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479834+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479834+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100932 + }, + "imageDetail": { + "width": 3085, + "height": 9528 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92809, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 932 }A5989B29-504B-4444-A5FE-D81EB7EF928C" + }, + "fileCreated": "2025-06-21T09:21:52.4479837+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479838+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479838+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100936 + }, + "imageDetail": { + "width": 1143, + "height": 2304 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 936 }63941B1C-FD56-40C6-B3E4-6D6A8DB595F3" + }, + "fileCreated": "2025-06-21T09:21:52.4479852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479853+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479853+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100938 + }, + "imageDetail": { + "width": 4132, + "height": 2320 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54292, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 938 }26AD70F4-1394-4731-85F0-172763DF3822" + }, + "fileCreated": "2025-06-21T09:21:52.447986+00:00", + "fileLastModified": "2025-07-14T09:21:52.447986+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479861+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479858+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100939 + }, + "imageDetail": { + "width": 4368, + "height": 4595 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 939 }9A33587F-29CF-40FF-955E-A234F2A115C7" + }, + "fileCreated": "2025-06-21T09:21:52.4479864+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479864+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479865+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100940 + }, + "imageDetail": { + "width": 9461, + "height": 5185 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 940 }0993DEF4-2052-4D91-A44A-6B8CD1E3F887" + }, + "fileCreated": "2025-06-21T09:21:52.4479868+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479868+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100941 + }, + "imageDetail": { + "width": 9430, + "height": 8833 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 941 }ADDB7A56-2352-42C2-93F0-D6B0487F43A5" + }, + "fileCreated": "2025-06-21T09:21:52.4479901+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479901+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479902+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479899+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100943 + }, + "imageDetail": { + "width": 4256, + "height": 2380 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42957, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 943 }BB5E4B20-1D8F-4C8F-838C-9350A464B18E" + }, + "fileCreated": "2025-06-21T09:21:52.4479908+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479909+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479907+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100944 + }, + "imageDetail": { + "width": 7177, + "height": 4358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 944 }0653E587-7993-47E0-8322-B5F000E58ABA" + }, + "fileCreated": "2025-06-21T09:21:52.4479912+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479912+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100945 + }, + "imageDetail": { + "width": 5811, + "height": 4680 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77085, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 945 }DEF81025-6436-4287-8A3F-065B486A359C" + }, + "fileCreated": "2025-06-21T09:21:52.4479915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479916+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479916+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100946 + }, + "imageDetail": { + "width": 3299, + "height": 4029 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 946 }BDA2C712-A8D7-44CA-86F5-0BC9550F5A07" + }, + "fileCreated": "2025-06-21T09:21:52.4479919+00:00", + "fileLastModified": "2025-07-14T09:21:52.447992+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479918+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100947 + }, + "imageDetail": { + "width": 6313, + "height": 5278 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89531, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 947 }FCF71BD8-F05D-4A87-9A6A-5822A2DFB03A" + }, + "fileCreated": "2025-06-21T09:21:52.4479923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479924+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479924+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479922+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100950 + }, + "imageDetail": { + "width": 6455, + "height": 3451 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 950 }483CECE8-F19D-4802-AC59-8588A962AB8E" + }, + "fileCreated": "2025-06-21T09:21:52.4479934+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479935+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100951 + }, + "imageDetail": { + "width": 3436, + "height": 3176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70650, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 951 }4271EEF6-22AE-43D1-9F9D-465739719257" + }, + "fileCreated": "2025-06-21T09:21:52.4479938+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479938+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479939+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479936+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100953 + }, + "imageDetail": { + "width": 3022, + "height": 8907 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66300, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 953 }1173C26B-E2DE-4865-BCA3-361E2F7BA700" + }, + "fileCreated": "2025-06-21T09:21:52.4479945+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479946+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479946+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100957 + }, + "imageDetail": { + "width": 5838, + "height": 7771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24110, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 957 }F6B63454-370A-4ED2-BF16-C18E12125C97" + }, + "fileCreated": "2025-06-21T09:21:52.4479989+00:00", + "fileLastModified": "2025-07-14T09:21:52.447999+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479988+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100958 + }, + "imageDetail": { + "width": 1564, + "height": 7941 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 958 }9C1C59A4-1C39-480C-B88E-649B48F55475" + }, + "fileCreated": "2025-06-21T09:21:52.4479993+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479994+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100959 + }, + "imageDetail": { + "width": 6448, + "height": 3442 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 959 }2046EE63-0781-4670-818C-9E382E5E8ECB" + }, + "fileCreated": "2025-06-21T09:21:52.4479997+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479997+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100960 + }, + "imageDetail": { + "width": 7346, + "height": 8199 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42038, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 960 }2475EC63-FCF8-471C-B1DF-3A32D5BDC8CB" + }, + "fileCreated": "2025-06-21T09:21:52.448+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480001+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480001+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100963 + }, + "imageDetail": { + "width": 8579, + "height": 8380 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20234, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 963 }F4D7EE97-652A-4425-8A03-5E89B93CBDE8" + }, + "fileCreated": "2025-06-21T09:21:52.4480012+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480012+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100966 + }, + "imageDetail": { + "width": 6832, + "height": 3065 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 966 }E86DD0EB-4147-452F-A8CF-70EAC2042509" + }, + "fileCreated": "2025-06-21T09:21:52.4480022+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480023+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100968 + }, + "imageDetail": { + "width": 2326, + "height": 2533 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 968 }3EB48B47-DD8C-442F-81B2-36611BCF4FCD" + }, + "fileCreated": "2025-06-21T09:21:52.4480056+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480057+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100970 + }, + "imageDetail": { + "width": 8323, + "height": 4662 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22218, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 970 }71C79F72-269B-43F1-AA5B-3AD4896EFC4A" + }, + "fileCreated": "2025-06-21T09:21:52.4480064+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480065+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480063+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100971 + }, + "imageDetail": { + "width": 5531, + "height": 8986 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60085, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 971 }7B7CDC52-FD3F-4E0B-BE5F-1A616A0E4C59" + }, + "fileCreated": "2025-06-21T09:21:52.4480068+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480068+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480066+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100973 + }, + "imageDetail": { + "width": 1431, + "height": 3468 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 24522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 973 }C24C2AE1-647E-4867-9798-9B2C29E08545" + }, + "fileCreated": "2025-06-21T09:21:52.4480075+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480076+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480076+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100974 + }, + "imageDetail": { + "width": 2124, + "height": 4072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23905, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 974 }1DE2C28F-2193-45AB-8ED3-7EB8D09C1346" + }, + "fileCreated": "2025-06-21T09:21:52.4480079+00:00", + "fileLastModified": "2025-07-14T09:21:52.448008+00:00", + "fileLastViewed": "2025-07-14T09:21:52.448008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100975 + }, + "imageDetail": { + "width": 519, + "height": 8657 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55342, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 975 }D5A592F9-59E1-45D9-8145-EF02BDC0A8C0" + }, + "fileCreated": "2025-06-21T09:21:52.4480083+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480084+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480084+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100977 + }, + "imageDetail": { + "width": 6239, + "height": 8019 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62192, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 977 }24C30485-6BA2-42AE-9841-28E613059364" + }, + "fileCreated": "2025-06-21T09:21:52.4480091+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480089+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100979 + }, + "imageDetail": { + "width": 8077, + "height": 3032 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37929, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 979 }E6C2FDA3-F61F-4BA1-844B-290790960DC8" + }, + "fileCreated": "2025-06-21T09:21:52.4480098+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480098+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480099+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100980 + }, + "imageDetail": { + "width": 2401, + "height": 7132 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46873, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 980 }03D9DE30-1D7B-4275-9990-067B193BDBF0" + }, + "fileCreated": "2025-06-21T09:21:52.4480102+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480102+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480103+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100981 + }, + "imageDetail": { + "width": 5010, + "height": 5124 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 981 }73646C64-80EA-4511-BE98-32DB96FBFBC5" + }, + "fileCreated": "2025-06-21T09:21:52.4480106+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480106+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100982 + }, + "imageDetail": { + "width": 2251, + "height": 2089 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 982 }38B77003-034C-4282-99B8-775EFE9BCF4E" + }, + "fileCreated": "2025-06-21T09:21:52.4480126+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480126+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480127+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480124+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100984 + }, + "imageDetail": { + "width": 7980, + "height": 9894 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26136, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 984 }1BCC0A29-8246-420A-AEFD-13912B2F9DC8" + }, + "fileCreated": "2025-06-21T09:21:52.4480133+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480134+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480134+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480132+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100988 + }, + "imageDetail": { + "width": 8065, + "height": 5321 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27391, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 988 }02D4C5E2-88F5-4E32-BC96-3BEF9B381A32" + }, + "fileCreated": "2025-06-21T09:21:52.4480148+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480148+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480146+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100989 + }, + "imageDetail": { + "width": 9487, + "height": 6930 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74014, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 989 }260EB363-F187-4E1E-9E71-146DE78F9EBA" + }, + "fileCreated": "2025-06-21T09:21:52.4480151+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480152+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480152+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448015+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100992 + }, + "imageDetail": { + "width": 5965, + "height": 5809 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 25245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 992 }8F95A9C0-BD2D-4875-85D7-254C1ECBBA02" + }, + "fileCreated": "2025-06-21T09:21:52.4480163+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480164+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480164+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480162+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100993 + }, + "imageDetail": { + "width": 119, + "height": 4139 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 993 }E3606361-98C9-4D94-8D64-7D3F9E0C870C" + }, + "fileCreated": "2025-06-21T09:21:52.4480167+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480168+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480166+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100996 + }, + "imageDetail": { + "width": 2527, + "height": 3021 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98293, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 996 }8B98B92F-57A8-4434-BAC9-0B9420EADF07" + }, + "fileCreated": "2025-06-21T09:21:52.4480279+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100997 + }, + "imageDetail": { + "width": 3669, + "height": 3834 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24960, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 997 }078E5A37-7978-4EBE-A897-C8EC957C542F" + }, + "fileCreated": "2025-06-21T09:21:52.4480282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101000 + }, + "imageDetail": { + "width": 9325, + "height": 8182 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34395, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1000 }7CC15B76-6D68-4EEC-9A8F-E4F97583D05F" + }, + "fileCreated": "2025-06-21T09:21:52.4480293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480294+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480294+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101001 + }, + "imageDetail": { + "width": 4556, + "height": 2735 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70536, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1001 }64DE9205-AB4D-4BE6-B3E8-EC42D1182B5B" + }, + "fileCreated": "2025-06-21T09:30:58.5467016+00:00", + "fileLastModified": "2025-07-14T09:30:58.5468244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:58.5458075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101003 + }, + "imageDetail": { + "width": 8189, + "height": 2366 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21377, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1003 }A6DD5B24-D5FB-4963-BB84-588AB8FC8D2B" + }, + "fileCreated": "2025-06-21T09:30:59.9939582+00:00", + "fileLastModified": "2025-07-14T09:30:59.9939586+00:00", + "fileLastViewed": "2025-07-14T09:30:59.9939587+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9939564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101004 + }, + "imageDetail": { + "width": 7388, + "height": 8353 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63796, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1004 }FC3464B9-D0BE-4EE2-BF2C-EC443308DE6A" + }, + "fileCreated": "2025-06-21T09:30:59.9958338+00:00", + "fileLastModified": "2025-07-14T09:30:59.9958342+00:00", + "fileLastViewed": "2025-07-14T09:30:59.9958344+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9958317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101005 + }, + "imageDetail": { + "width": 7565, + "height": 3758 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32415, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1005 }E0CE6253-19D6-4D0B-BF9A-23259637F74B" + }, + "fileCreated": "2025-06-21T09:30:59.9973138+00:00", + "fileLastModified": "2025-07-14T09:30:59.9973141+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9973122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101007 + }, + "imageDetail": { + "width": 3865, + "height": 3912 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94121, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1007 }B0AA5D77-A4AB-41E2-82EC-4D4731B9395B" + }, + "fileCreated": "2025-06-21T09:30:59.9992021+00:00", + "fileLastModified": "2025-07-14T09:30:59.9992026+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9991995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101012 + }, + "imageDetail": { + "width": 4511, + "height": 3543 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1012 }0E001F4D-58A9-4AB1-A719-757BE9CF71B5" + }, + "fileCreated": "2025-06-21T09:31:00.0049828+00:00", + "fileLastModified": "2025-07-14T09:31:00.0049831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0049817+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101014 + }, + "imageDetail": { + "width": 4899, + "height": 6578 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80124, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1014 }727DAE93-51C1-4BED-9CDA-0B8D2F1C4864" + }, + "fileCreated": "2025-06-21T09:31:00.0066703+00:00", + "fileLastModified": "2025-07-14T09:31:00.0066706+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0066707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0066692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101015 + }, + "imageDetail": { + "width": 1777, + "height": 6118 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1015 }1A4A5C83-67F3-42D2-AA74-A7DE4366AA4F" + }, + "fileCreated": "2025-06-21T09:31:00.0075245+00:00", + "fileLastModified": "2025-07-14T09:31:00.0075248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0075235+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101016 + }, + "imageDetail": { + "width": 6359, + "height": 7437 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1016 }C9D011CD-242C-4B13-8D3E-1E2E052FCE6F" + }, + "fileCreated": "2025-06-21T09:31:00.0085472+00:00", + "fileLastModified": "2025-07-14T09:31:00.0085474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0085457+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101017 + }, + "imageDetail": { + "width": 1397, + "height": 9151 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22392, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1017 }1730FB4D-BB66-4AFF-B56E-A539499B4D43" + }, + "fileCreated": "2025-06-21T09:31:00.0094203+00:00", + "fileLastModified": "2025-07-14T09:31:00.0094206+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0094191+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101023 + }, + "imageDetail": { + "width": 8578, + "height": 4665 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68633, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1023 }89D7D2F3-320D-4685-84C7-C32293971F3B" + }, + "fileCreated": "2025-06-21T09:31:00.0154821+00:00", + "fileLastModified": "2025-07-14T09:31:00.0154828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0154766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101026 + }, + "imageDetail": { + "width": 1875, + "height": 6500 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22174, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1026 }9A8642ED-35B2-4F8F-A7C9-CF3CDA09444C" + }, + "fileCreated": "2025-06-21T09:31:00.0213932+00:00", + "fileLastModified": "2025-07-14T09:31:00.0213938+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0213899+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101027 + }, + "imageDetail": { + "width": 9411, + "height": 6631 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28526, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1027 }F6049EA2-93C9-4016-925B-1C9E807EAF9A" + }, + "fileCreated": "2025-06-21T09:31:00.023592+00:00", + "fileLastModified": "2025-07-14T09:31:00.0235925+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0235928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0235887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101028 + }, + "imageDetail": { + "width": 4340, + "height": 8381 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1028 }8AB6FB38-92A5-41CD-9036-DB0D144F2007" + }, + "fileCreated": "2025-06-21T09:31:00.0253962+00:00", + "fileLastModified": "2025-07-14T09:31:00.0254108+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0253939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101029 + }, + "imageDetail": { + "width": 7473, + "height": 4120 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 58163, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1029 }C5F3A778-3722-4BF2-9642-5B7BB55C333D" + }, + "fileCreated": "2025-06-21T09:31:00.0272132+00:00", + "fileLastModified": "2025-07-14T09:31:00.0272137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.027214+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.02721+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101031 + }, + "imageDetail": { + "width": 427, + "height": 7991 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44954, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1031 }C9563564-F28D-41C6-B196-13A1EEEE736E" + }, + "fileCreated": "2025-06-21T09:31:00.0308119+00:00", + "fileLastModified": "2025-07-14T09:31:00.0308125+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0308078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101033 + }, + "imageDetail": { + "width": 4324, + "height": 4183 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80475, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1033 }265079E0-DF68-4170-B5ED-239BBD8BB79B" + }, + "fileCreated": "2025-06-21T09:31:00.0339112+00:00", + "fileLastModified": "2025-07-14T09:31:00.0339116+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0339118+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0339079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101034 + }, + "imageDetail": { + "width": 4346, + "height": 7088 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53661, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1034 }E14555B0-E743-4426-B25D-361F144C0208" + }, + "fileCreated": "2025-06-21T09:31:00.0353714+00:00", + "fileLastModified": "2025-07-14T09:31:00.0353719+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0353693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101040 + }, + "imageDetail": { + "width": 1569, + "height": 6792 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50957, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1040 }C929EFFE-6FBA-4B99-BF93-F51C04E6D4F8" + }, + "fileCreated": "2025-06-21T09:31:00.0441284+00:00", + "fileLastModified": "2025-07-14T09:31:00.0441288+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0441267+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101041 + }, + "imageDetail": { + "width": 3164, + "height": 6434 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53462, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1041 }29C6583F-649A-4A8D-8C46-3B292001BD28" + }, + "fileCreated": "2025-06-21T09:31:00.045314+00:00", + "fileLastModified": "2025-07-14T09:31:00.0453144+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0453117+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101042 + }, + "imageDetail": { + "width": 4522, + "height": 7743 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54298, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1042 }A0313B7B-98F4-4990-899B-2F4D59F0FFA3" + }, + "fileCreated": "2025-06-21T09:31:00.0471037+00:00", + "fileLastModified": "2025-07-14T09:31:00.0471042+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0471014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101043 + }, + "imageDetail": { + "width": 206, + "height": 9769 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49483, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1043 }9FD35F39-5AA0-4E5C-9D84-0996D89BBC7A" + }, + "fileCreated": "2025-06-21T09:31:00.0484079+00:00", + "fileLastModified": "2025-07-14T09:31:00.0484087+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0484088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0484062+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101045 + }, + "imageDetail": { + "width": 9345, + "height": 8226 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45107, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1045 }3FB592F4-8314-4686-84E1-857B44F6C65D" + }, + "fileCreated": "2025-06-21T09:31:00.0510851+00:00", + "fileLastModified": "2025-07-14T09:31:00.0510855+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0510834+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101047 + }, + "imageDetail": { + "width": 517, + "height": 3218 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80073, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1047 }31384049-ADE8-44B8-BC5A-964E18C44B8B" + }, + "fileCreated": "2025-06-21T09:31:00.0534399+00:00", + "fileLastModified": "2025-07-14T09:31:00.0534403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0534386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101050 + }, + "imageDetail": { + "width": 7124, + "height": 8385 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1050 }473AAA80-5D47-4DF1-B658-61A7F7EA219C" + }, + "fileCreated": "2025-06-21T09:31:00.0577627+00:00", + "fileLastModified": "2025-07-14T09:31:00.0577631+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0577632+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0577606+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101052 + }, + "imageDetail": { + "width": 5887, + "height": 6300 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96534, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1052 }3239A05E-1219-4A2D-8FE2-92DB226B8EC1" + }, + "fileCreated": "2025-06-21T09:31:00.0614315+00:00", + "fileLastModified": "2025-07-14T09:31:00.0614319+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0614289+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101058 + }, + "imageDetail": { + "width": 3156, + "height": 3882 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95554, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1058 }B7E0E388-0AAF-498C-8028-8B6C759EAD2E" + }, + "fileCreated": "2025-06-21T09:31:00.0768322+00:00", + "fileLastModified": "2025-07-14T09:31:00.0768328+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0768332+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0768284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101059 + }, + "imageDetail": { + "width": 9994, + "height": 7051 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1059 }0C1DEC37-B97A-4E4D-9541-FB5735B60857" + }, + "fileCreated": "2025-06-21T09:31:00.0790976+00:00", + "fileLastModified": "2025-07-14T09:31:00.0790981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0790938+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101061 + }, + "imageDetail": { + "width": 4839, + "height": 7613 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1061 }38C58FF0-D0BA-4430-9BEC-23036B02B114" + }, + "fileCreated": "2025-06-21T09:31:00.0823515+00:00", + "fileLastModified": "2025-07-14T09:31:00.0823518+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0823502+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101062 + }, + "imageDetail": { + "width": 9275, + "height": 7332 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93112, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1062 }61BC25FE-41B6-422D-B827-5E944E0B4104" + }, + "fileCreated": "2025-06-21T09:31:00.0839432+00:00", + "fileLastModified": "2025-07-14T09:31:00.0839435+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0839417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101066 + }, + "imageDetail": { + "width": 5392, + "height": 2597 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87364, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1066 }1B719F84-2151-474B-9DCA-A07B6299BFC0" + }, + "fileCreated": "2025-06-21T09:31:00.0900225+00:00", + "fileLastModified": "2025-07-14T09:31:00.0900228+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.090021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101069 + }, + "imageDetail": { + "width": 4856, + "height": 6306 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81886, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1069 }34A147B7-3E38-4D3C-BC68-9052CA8EE2AE" + }, + "fileCreated": "2025-06-21T09:31:00.0948902+00:00", + "fileLastModified": "2025-07-14T09:31:00.0948905+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0948906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0948889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101070 + }, + "imageDetail": { + "width": 5410, + "height": 9899 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28306, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1070 }899BC793-BEA9-4827-957D-2EB812939CCA" + }, + "fileCreated": "2025-06-21T09:31:00.0963047+00:00", + "fileLastModified": "2025-07-14T09:31:00.096305+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0963034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101072 + }, + "imageDetail": { + "width": 8044, + "height": 9884 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64141, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1072 }C95D3353-AA58-4B8E-A8A0-F50E6C31226E" + }, + "fileCreated": "2025-06-21T09:31:00.0994052+00:00", + "fileLastModified": "2025-07-14T09:31:00.0994056+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0994038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101073 + }, + "imageDetail": { + "width": 7975, + "height": 3031 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36906, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1073 }47B858C6-511B-4CCD-9042-E0743BEF0E8C" + }, + "fileCreated": "2025-06-21T09:31:00.100825+00:00", + "fileLastModified": "2025-07-14T09:31:00.1008253+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1008255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1008239+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101075 + }, + "imageDetail": { + "width": 7616, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33261, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1075 }C1BE8861-3BF2-483A-A82E-6F2AE01187E9" + }, + "fileCreated": "2025-06-21T09:31:00.1043598+00:00", + "fileLastModified": "2025-07-14T09:31:00.1043602+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1043607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.104358+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101076 + }, + "imageDetail": { + "width": 8458, + "height": 7123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91125, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1076 }7CC02DF2-177E-42C8-963B-8DF81B4FD706" + }, + "fileCreated": "2025-06-21T09:31:00.105956+00:00", + "fileLastModified": "2025-07-14T09:31:00.1059564+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1059567+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1059538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101078 + }, + "imageDetail": { + "width": 4595, + "height": 7154 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69808, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1078 }404A3D2F-24F9-41BD-BDCB-6286D5AF135D" + }, + "fileCreated": "2025-06-21T09:31:00.1097238+00:00", + "fileLastModified": "2025-07-14T09:31:00.1097242+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1097244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1097221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101079 + }, + "imageDetail": { + "width": 7907, + "height": 8918 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23366, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1079 }D873E474-04CC-4F85-ACB8-8909C3F60763" + }, + "fileCreated": "2025-06-21T09:31:00.1111303+00:00", + "fileLastModified": "2025-07-14T09:31:00.1111306+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.111129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101080 + }, + "imageDetail": { + "width": 5397, + "height": 2873 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 31695, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1080 }84D830EC-DEEA-4C71-AAEE-95AC770F4A18" + }, + "fileCreated": "2025-06-21T09:31:00.1128324+00:00", + "fileLastModified": "2025-07-14T09:31:00.1128327+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1128304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101081 + }, + "imageDetail": { + "width": 5610, + "height": 4045 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58138, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1081 }4BADFCDA-E76C-41F2-9ABA-A61A972DD957" + }, + "fileCreated": "2025-06-21T09:31:00.1142745+00:00", + "fileLastModified": "2025-07-14T09:31:00.1142747+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1142749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1142729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101082 + }, + "imageDetail": { + "width": 4551, + "height": 5542 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1082 }71F4A0FD-014D-441C-9A0F-9FCFAE27E2CF" + }, + "fileCreated": "2025-06-21T09:31:00.1156734+00:00", + "fileLastModified": "2025-07-14T09:31:00.1156737+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1156739+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1156716+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101083 + }, + "imageDetail": { + "width": 5734, + "height": 6690 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46215, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1083 }6B59E35A-157B-44D7-94E4-2B62545A0AE9" + }, + "fileCreated": "2025-06-21T09:31:00.1176111+00:00", + "fileLastModified": "2025-07-14T09:31:00.1176116+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1176087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101084 + }, + "imageDetail": { + "width": 3330, + "height": 3065 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1084 }310C1693-7847-4096-9A98-16ECD527DDEE" + }, + "fileCreated": "2025-06-21T09:31:00.1194198+00:00", + "fileLastModified": "2025-07-14T09:31:00.1194202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1194176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101085 + }, + "imageDetail": { + "width": 6681, + "height": 6787 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1085 }03C2C9F3-B29E-479E-84DE-01E4FD569917" + }, + "fileCreated": "2025-06-21T09:31:00.1208485+00:00", + "fileLastModified": "2025-07-14T09:31:00.1208488+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1208471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101086 + }, + "imageDetail": { + "width": 984, + "height": 7041 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1086 }DF146231-BF34-48A3-8126-3DB4988B8C2C" + }, + "fileCreated": "2025-06-21T09:31:00.1224639+00:00", + "fileLastModified": "2025-07-14T09:31:00.1224642+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1224625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101087 + }, + "imageDetail": { + "width": 9435, + "height": 4003 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97088, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1087 }0BD96E29-EDA7-460A-B7B7-C74E447879DF" + }, + "fileCreated": "2025-06-21T09:31:00.1243925+00:00", + "fileLastModified": "2025-07-14T09:31:00.1243933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1243904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101089 + }, + "imageDetail": { + "width": 6265, + "height": 4438 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1089 }9CDC22DF-A5FA-4347-9706-FEE9F193F8CE" + }, + "fileCreated": "2025-06-21T09:31:00.1280221+00:00", + "fileLastModified": "2025-07-14T09:31:00.1280224+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1280226+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1280203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101090 + }, + "imageDetail": { + "width": 3129, + "height": 3001 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 26900, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1090 }D3186ADA-30CE-4078-AD5F-D47A006B5CEB" + }, + "fileCreated": "2025-06-21T09:31:00.1298587+00:00", + "fileLastModified": "2025-07-14T09:31:00.129859+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1298567+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101091 + }, + "imageDetail": { + "width": 6102, + "height": 8283 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57428, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1091 }EC8ABEBF-01F5-4D7E-A817-485047F51C6A" + }, + "fileCreated": "2025-06-21T09:31:00.1313059+00:00", + "fileLastModified": "2025-07-14T09:31:00.1313062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1313042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101092 + }, + "imageDetail": { + "width": 2547, + "height": 4798 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 80266, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1092 }FAFD9834-E823-4E99-9DCB-8DEE44C93D13" + }, + "fileCreated": "2025-06-21T09:31:00.1330796+00:00", + "fileLastModified": "2025-07-14T09:31:00.1330799+00:00", + "fileLastViewed": "2025-07-14T09:31:00.13308+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.133078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101094 + }, + "imageDetail": { + "width": 9736, + "height": 2016 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91787, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1094 }739081E6-BA37-49AE-8C79-5AB5F221DF01" + }, + "fileCreated": "2025-06-21T09:31:00.1366642+00:00", + "fileLastModified": "2025-07-14T09:31:00.1366645+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1366625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101095 + }, + "imageDetail": { + "width": 2697, + "height": 5828 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 37544, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1095 }81979120-07AF-4E64-BB90-4C8B45EE1F56" + }, + "fileCreated": "2025-06-21T09:31:00.1381134+00:00", + "fileLastModified": "2025-07-14T09:31:00.1381137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1381138+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1381121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101096 + }, + "imageDetail": { + "width": 3688, + "height": 9935 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1096 }99D9A890-6171-4701-A2A6-FB819B61B422" + }, + "fileCreated": "2025-06-21T09:31:00.1398001+00:00", + "fileLastModified": "2025-07-14T09:31:00.1398005+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1397981+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101097 + }, + "imageDetail": { + "width": 3772, + "height": 7655 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87582, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1097 }466FE77F-DB31-4A92-B84F-6A8F8FD34CF4" + }, + "fileCreated": "2025-06-21T09:31:00.1416069+00:00", + "fileLastModified": "2025-07-14T09:31:00.1416071+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1416055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101098 + }, + "imageDetail": { + "width": 690, + "height": 3778 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60106, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1098 }FC8471C3-B7B8-4106-B49F-7F1B01C0CF20" + }, + "fileCreated": "2025-06-21T09:31:00.1431524+00:00", + "fileLastModified": "2025-07-14T09:31:00.1431527+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1431528+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1431513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101099 + }, + "imageDetail": { + "width": 3148, + "height": 4561 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 37549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1099 }59EF910F-9569-457E-B4D6-21C3AEE34FE8" + }, + "fileCreated": "2025-06-21T09:31:00.1448353+00:00", + "fileLastModified": "2025-07-14T09:31:00.1448356+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1448357+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1448339+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101100 + }, + "imageDetail": { + "width": 9099, + "height": 4622 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1100 }8C57A5CB-ED9C-4B20-9646-6882F8F1673A" + }, + "fileCreated": "2025-06-21T09:31:00.1478042+00:00", + "fileLastModified": "2025-07-14T09:31:00.1478045+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1478028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101102 + }, + "imageDetail": { + "width": 3978, + "height": 8195 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1102 }AB81DB42-921E-403E-89F0-3D247D0B530E" + }, + "fileCreated": "2025-06-21T09:31:00.1508769+00:00", + "fileLastModified": "2025-07-14T09:31:00.1508772+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1508757+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101103 + }, + "imageDetail": { + "width": 9340, + "height": 7342 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1103 }37C97D6F-E3C7-437A-86E6-3ED576BB63A4" + }, + "fileCreated": "2025-06-21T09:31:00.1523218+00:00", + "fileLastModified": "2025-07-14T09:31:00.1523221+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1523222+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1523208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101104 + }, + "imageDetail": { + "width": 7046, + "height": 5824 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31679, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1104 }A5535D95-5C58-4E33-A0DE-8A0CDE5EA56A" + }, + "fileCreated": "2025-06-21T09:31:00.1541135+00:00", + "fileLastModified": "2025-07-14T09:31:00.1541138+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1541139+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1541121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101105 + }, + "imageDetail": { + "width": 9801, + "height": 8371 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53708, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1105 }AB2EE861-3D7E-4C30-800E-6AA435025FD6" + }, + "fileCreated": "2025-06-21T09:31:00.155968+00:00", + "fileLastModified": "2025-07-14T09:31:00.1559683+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1559684+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1559661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101106 + }, + "imageDetail": { + "width": 2943, + "height": 9018 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53840, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1106 }78E98285-9CCA-49F1-819A-5BAB823CC157" + }, + "fileCreated": "2025-06-21T09:31:00.1574456+00:00", + "fileLastModified": "2025-07-14T09:31:00.1574459+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1574444+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101107 + }, + "imageDetail": { + "width": 7885, + "height": 5489 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38721, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1107 }831DFEC8-C9F5-43C0-9D0A-31E96FF674F0" + }, + "fileCreated": "2025-06-21T09:31:00.1591828+00:00", + "fileLastModified": "2025-07-14T09:31:00.1591831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1591816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101110 + }, + "imageDetail": { + "width": 6167, + "height": 9413 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39718, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1110 }236B7060-6FF9-49CD-AE6F-8468F0C7333F" + }, + "fileCreated": "2025-06-21T09:31:00.1635797+00:00", + "fileLastModified": "2025-07-14T09:31:00.1635799+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1635786+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101112 + }, + "imageDetail": { + "width": 5461, + "height": 6308 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1112 }07F97035-AFB2-4AF4-B9A6-26BACCD60F41" + }, + "fileCreated": "2025-06-21T09:31:00.1667772+00:00", + "fileLastModified": "2025-07-14T09:31:00.1667775+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1667776+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1667761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101114 + }, + "imageDetail": { + "width": 3708, + "height": 5587 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1114 }47925C7C-1576-460A-B7E7-8089C0D3368C" + }, + "fileCreated": "2025-06-21T09:31:00.1702435+00:00", + "fileLastModified": "2025-07-14T09:31:00.1702439+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1702412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101117 + }, + "imageDetail": { + "width": 2572, + "height": 9124 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29503, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1117 }B5F61DA2-BC45-4F28-82AA-8652FBD7E8E5" + }, + "fileCreated": "2025-06-21T09:31:00.1753858+00:00", + "fileLastModified": "2025-07-14T09:31:00.1753862+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1753863+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1753845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101118 + }, + "imageDetail": { + "width": 2587, + "height": 6383 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1118 }A86D9E14-C02D-4F1F-B662-67893153A3FC" + }, + "fileCreated": "2025-06-21T09:31:00.1769328+00:00", + "fileLastModified": "2025-07-14T09:31:00.1769331+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1769317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101120 + }, + "imageDetail": { + "width": 9026, + "height": 7089 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77458, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1120 }68E6693C-1392-4898-8738-070A72A0BE5B" + }, + "fileCreated": "2025-06-21T09:31:00.1802904+00:00", + "fileLastModified": "2025-07-14T09:31:00.1802907+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1802893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101123 + }, + "imageDetail": { + "width": 7274, + "height": 9151 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55189, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1123 }E7214BEE-922E-48DC-AB82-3448E3202B7E" + }, + "fileCreated": "2025-06-21T09:31:00.1857624+00:00", + "fileLastModified": "2025-07-14T09:31:00.1857627+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1857629+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1857609+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101125 + }, + "imageDetail": { + "width": 3127, + "height": 6592 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42768, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1125 }7C957143-0EFB-4313-8006-D922E7A5AF03" + }, + "fileCreated": "2025-06-21T09:31:00.1895407+00:00", + "fileLastModified": "2025-07-14T09:31:00.189541+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1895411+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1895394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101128 + }, + "imageDetail": { + "width": 3374, + "height": 6137 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86704, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1128 }B88AF340-6C92-43C6-B2A4-119F76F1FD08" + }, + "fileCreated": "2025-06-21T09:31:00.194902+00:00", + "fileLastModified": "2025-07-14T09:31:00.1949023+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1949008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101130 + }, + "imageDetail": { + "width": 9478, + "height": 9817 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1130 }DE1555CA-1848-44FA-A807-AE436B67B2B3" + }, + "fileCreated": "2025-06-21T09:31:00.1985852+00:00", + "fileLastModified": "2025-07-14T09:31:00.1985855+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1985856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1985841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101131 + }, + "imageDetail": { + "width": 3227, + "height": 7716 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47775, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1131 }FFDCE9CD-9C7E-4CAE-96B6-D95C89F53622" + }, + "fileCreated": "2025-06-21T09:31:00.2007902+00:00", + "fileLastModified": "2025-07-14T09:31:00.2007905+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2007906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2007887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101133 + }, + "imageDetail": { + "width": 7512, + "height": 8615 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74385, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1133 }71A96E18-27B9-44DA-B07F-4743FFB0151B" + }, + "fileCreated": "2025-06-21T09:31:00.20913+00:00", + "fileLastModified": "2025-07-14T09:31:00.2091302+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2091289+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101134 + }, + "imageDetail": { + "width": 1503, + "height": 9527 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42575, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1134 }3362609F-A45F-4894-B587-5DDD546586A2" + }, + "fileCreated": "2025-06-21T09:31:00.211147+00:00", + "fileLastModified": "2025-07-14T09:31:00.2111473+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2111452+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101135 + }, + "imageDetail": { + "width": 580, + "height": 2870 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88791, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1135 }546DEBBA-9AD2-4475-B142-6314A742DEB1" + }, + "fileCreated": "2025-06-21T09:31:00.212869+00:00", + "fileLastModified": "2025-07-14T09:31:00.2128693+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2128695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2128678+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101137 + }, + "imageDetail": { + "width": 7723, + "height": 9470 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 99314, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1137 }F855EBF6-CB02-4020-B969-67B571D38702" + }, + "fileCreated": "2025-06-21T09:31:00.2287314+00:00", + "fileLastModified": "2025-07-14T09:31:00.2287319+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2287333+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.228728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101140 + }, + "imageDetail": { + "width": 8498, + "height": 7040 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64295, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1140 }F5FCF84F-CF0C-440A-A6F2-4BAB5C689E16" + }, + "fileCreated": "2025-06-21T09:31:00.237086+00:00", + "fileLastModified": "2025-07-14T09:31:00.2370867+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2370869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2370838+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101141 + }, + "imageDetail": { + "width": 3391, + "height": 5777 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72157, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1141 }D0FE9F82-8AC0-4309-ABCE-9AF850B773D3" + }, + "fileCreated": "2025-06-21T09:31:00.2390863+00:00", + "fileLastModified": "2025-07-14T09:31:00.2390867+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2390868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.239085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101142 + }, + "imageDetail": { + "width": 2453, + "height": 7378 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60795, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1142 }F8C172CB-6CC3-4BA5-AC16-CC28E18C8BD0" + }, + "fileCreated": "2025-06-21T09:31:00.2412721+00:00", + "fileLastModified": "2025-07-14T09:31:00.2412724+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2412726+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2412706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101143 + }, + "imageDetail": { + "width": 4515, + "height": 3957 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38703, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1143 }3B457BCB-6B90-4ADC-838A-4AB17901CC00" + }, + "fileCreated": "2025-06-21T09:31:00.2433419+00:00", + "fileLastModified": "2025-07-14T09:31:00.2433423+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2433425+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2433393+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101146 + }, + "imageDetail": { + "width": 2528, + "height": 9738 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 21289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1146 }C775D166-BF27-4D70-84A8-DEC9042871C9" + }, + "fileCreated": "2025-06-21T09:31:00.249669+00:00", + "fileLastModified": "2025-07-14T09:31:00.2496693+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2496666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101147 + }, + "imageDetail": { + "width": 2285, + "height": 9219 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23997, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1147 }2B7BD441-61AB-44D7-A2E7-70C4D44C26DB" + }, + "fileCreated": "2025-06-21T09:31:00.2518434+00:00", + "fileLastModified": "2025-07-14T09:31:00.2518437+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2518417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101148 + }, + "imageDetail": { + "width": 8902, + "height": 4716 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35727, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1148 }E582F684-061B-4D28-BEC7-4477E7FE107D" + }, + "fileCreated": "2025-06-21T09:31:00.254016+00:00", + "fileLastModified": "2025-07-14T09:31:00.2540172+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2540173+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2540144+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101150 + }, + "imageDetail": { + "width": 3222, + "height": 9631 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50888, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1150 }57794BE4-265F-49E6-A26B-02EC6D5739CB" + }, + "fileCreated": "2025-06-21T09:31:00.2580797+00:00", + "fileLastModified": "2025-07-14T09:31:00.2580801+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2580802+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2580783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101151 + }, + "imageDetail": { + "width": 7480, + "height": 5760 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77917, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1151 }8F17104F-26DD-4BC0-B5E7-3142B4F0C1E5" + }, + "fileCreated": "2025-06-21T09:31:00.2601132+00:00", + "fileLastModified": "2025-07-14T09:31:00.2601136+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2601137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2601108+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101153 + }, + "imageDetail": { + "width": 1213, + "height": 3404 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34099, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1153 }47CB64FA-6424-4106-A010-7981B3FF803D" + }, + "fileCreated": "2025-06-21T09:31:00.2647034+00:00", + "fileLastModified": "2025-07-14T09:31:00.2647038+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2647041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2647012+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101154 + }, + "imageDetail": { + "width": 4266, + "height": 9281 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70608, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1154 }397E3EA0-FC4E-496D-8EF0-6CF0724EE712" + }, + "fileCreated": "2025-06-21T09:31:00.2666982+00:00", + "fileLastModified": "2025-07-14T09:31:00.2666985+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2666969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101155 + }, + "imageDetail": { + "width": 4301, + "height": 2949 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1155 }839D52AD-E854-4E48-B01B-295DBCE89041" + }, + "fileCreated": "2025-06-21T09:31:00.268814+00:00", + "fileLastModified": "2025-07-14T09:31:00.2688143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2688125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101157 + }, + "imageDetail": { + "width": 9518, + "height": 5200 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60211, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1157 }3DCDE6A9-8931-4433-85EF-72D0452C8B65" + }, + "fileCreated": "2025-06-21T09:31:00.272769+00:00", + "fileLastModified": "2025-07-14T09:31:00.2727693+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2727672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101159 + }, + "imageDetail": { + "width": 8088, + "height": 3623 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22667, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1159 }0239548E-FFF9-4CFA-A036-69C9FCE04166" + }, + "fileCreated": "2025-06-21T09:31:00.2774965+00:00", + "fileLastModified": "2025-07-14T09:31:00.2774968+00:00", + "fileLastViewed": "2025-07-14T09:31:00.277497+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2774952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101162 + }, + "imageDetail": { + "width": 5474, + "height": 7273 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1162 }95A498A2-FB6B-4CD1-80C1-EC5421B6693A" + }, + "fileCreated": "2025-06-21T09:31:00.283664+00:00", + "fileLastModified": "2025-07-14T09:31:00.2836644+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2836628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101166 + }, + "imageDetail": { + "width": 6897, + "height": 7819 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90457, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1166 }FA80F189-5158-4A82-861B-0B20B1D33079" + }, + "fileCreated": "2025-06-21T09:31:00.2925971+00:00", + "fileLastModified": "2025-07-14T09:31:00.2925981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2925945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101168 + }, + "imageDetail": { + "width": 3020, + "height": 8219 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68443, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1168 }2E42A876-52C3-43F7-8A4D-04C99A7703AD" + }, + "fileCreated": "2025-06-21T09:31:00.2978185+00:00", + "fileLastModified": "2025-07-14T09:31:00.2978189+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2978191+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2978167+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101169 + }, + "imageDetail": { + "width": 9804, + "height": 5309 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 67592, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1169 }02BBCF3E-32C3-4C22-9380-C37663A34979" + }, + "fileCreated": "2025-06-21T09:31:00.2998239+00:00", + "fileLastModified": "2025-07-14T09:31:00.2998243+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2998244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2998227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101170 + }, + "imageDetail": { + "width": 5513, + "height": 7333 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 76264, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1170 }B54F0EB1-A998-4C0E-BEFF-D4D80B4AB689" + }, + "fileCreated": "2025-06-21T09:31:00.3020941+00:00", + "fileLastModified": "2025-07-14T09:31:00.3020945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3020927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101171 + }, + "imageDetail": { + "width": 7934, + "height": 2994 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89248, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1171 }D72767CD-6D8C-4FDF-BDB8-4546D9E12FF8" + }, + "fileCreated": "2025-06-21T09:31:00.3042249+00:00", + "fileLastModified": "2025-07-14T09:31:00.3042256+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3040485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101172 + }, + "imageDetail": { + "width": 4717, + "height": 6520 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1172 }31440ECF-A0C1-4F3B-AB94-1D299CA3BD5E" + }, + "fileCreated": "2025-06-21T09:31:00.3062531+00:00", + "fileLastModified": "2025-07-14T09:31:00.3062534+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3062519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101174 + }, + "imageDetail": { + "width": 6332, + "height": 8057 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1174 }30289A54-BA69-4ED5-851F-166ED41C2C7A" + }, + "fileCreated": "2025-06-21T09:31:00.3107674+00:00", + "fileLastModified": "2025-07-14T09:31:00.3107677+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3107678+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3107644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101184 + }, + "imageDetail": { + "width": 6464, + "height": 6798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1184 }AFDCAC9B-15A3-48E8-9832-DDBD28DFAA79" + }, + "fileCreated": "2025-06-21T09:31:00.3338751+00:00", + "fileLastModified": "2025-07-14T09:31:00.3338754+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3338756+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3338733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101186 + }, + "imageDetail": { + "width": 3279, + "height": 3358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1186 }205F20EE-2FC3-482C-B97B-C1D94F887AFE" + }, + "fileCreated": "2025-06-21T09:31:00.3390188+00:00", + "fileLastModified": "2025-07-14T09:31:00.3390192+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3390194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.339017+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101188 + }, + "imageDetail": { + "width": 7336, + "height": 2616 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1188 }AEB0A9FD-B5FB-486E-B646-569481CDF664" + }, + "fileCreated": "2025-06-21T09:31:00.3441774+00:00", + "fileLastModified": "2025-07-14T09:31:00.3441778+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3441779+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3441753+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101189 + }, + "imageDetail": { + "width": 8599, + "height": 6872 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75968, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1189 }B7FB2951-045B-4AFF-B680-B98C5E5591FD" + }, + "fileCreated": "2025-06-21T09:31:00.3467+00:00", + "fileLastModified": "2025-07-14T09:31:00.3467003+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3466982+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101192 + }, + "imageDetail": { + "width": 3070, + "height": 8050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1192 }B077BA9F-9C6A-4903-9C3F-CA343CED623F" + }, + "fileCreated": "2025-06-21T09:31:00.3552572+00:00", + "fileLastModified": "2025-07-14T09:31:00.3552576+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3552553+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101194 + }, + "imageDetail": { + "width": 7925, + "height": 5388 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81506, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1194 }4146E7FB-6BEA-49BB-B8F5-6D843DD01DD1" + }, + "fileCreated": "2025-06-21T09:31:00.3616475+00:00", + "fileLastModified": "2025-07-14T09:31:00.3616478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3616296+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101196 + }, + "imageDetail": { + "width": 7397, + "height": 3589 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1196 }94358BEF-4E82-4C2B-938F-7F371B02619D" + }, + "fileCreated": "2025-06-21T09:31:00.3664298+00:00", + "fileLastModified": "2025-07-14T09:31:00.3664302+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3664303+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3664277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101200 + }, + "imageDetail": { + "width": 7426, + "height": 5555 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51334, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1200 }98D1B267-F97A-4919-9BA6-4166EB931377" + }, + "fileCreated": "2025-06-21T09:31:00.3762999+00:00", + "fileLastModified": "2025-07-14T09:31:00.3763003+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3763004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3762975+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101204 + }, + "imageDetail": { + "width": 9331, + "height": 6730 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26782, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1204 }AACCAFDF-BFC0-4860-AEA1-3F0775650363" + }, + "fileCreated": "2025-06-21T09:31:00.387352+00:00", + "fileLastModified": "2025-07-14T09:31:00.3873527+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3873499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101205 + }, + "imageDetail": { + "width": 6102, + "height": 8417 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1205 }852EE89D-6308-44C0-8701-C1C0854FF4D8" + }, + "fileCreated": "2025-06-21T09:31:00.3898034+00:00", + "fileLastModified": "2025-07-14T09:31:00.3898037+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3898018+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101206 + }, + "imageDetail": { + "width": 1220, + "height": 8129 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1206 }A6C97B1C-442C-4336-867E-20A9A316ED3F" + }, + "fileCreated": "2025-06-21T09:31:00.3922744+00:00", + "fileLastModified": "2025-07-14T09:31:00.3922746+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3922748+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3922729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101210 + }, + "imageDetail": { + "width": 9784, + "height": 5686 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1210 }658276B9-9E80-4A86-B562-AA6CD12B96E6" + }, + "fileCreated": "2025-06-21T09:31:00.401938+00:00", + "fileLastModified": "2025-07-14T09:31:00.4019383+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4019386+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4019365+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101213 + }, + "imageDetail": { + "width": 7823, + "height": 6230 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96541, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1213 }D9C5978A-55C4-4390-A1E8-3A88BA7868C1" + }, + "fileCreated": "2025-06-21T09:31:00.4092417+00:00", + "fileLastModified": "2025-07-14T09:31:00.4092421+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4092422+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4092402+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101214 + }, + "imageDetail": { + "width": 7141, + "height": 9503 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27065, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1214 }FA7E08AD-A26F-47DC-97DD-415816E7A26A" + }, + "fileCreated": "2025-06-21T09:31:00.4117373+00:00", + "fileLastModified": "2025-07-14T09:31:00.4117376+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4117377+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4117355+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101215 + }, + "imageDetail": { + "width": 6925, + "height": 3136 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 72118, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1215 }F29BC070-0930-46CF-905C-E33D6A994E26" + }, + "fileCreated": "2025-06-21T09:31:00.414161+00:00", + "fileLastModified": "2025-07-14T09:31:00.4141614+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4141615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4141593+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101217 + }, + "imageDetail": { + "width": 3128, + "height": 7080 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88140, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1217 }2D3D3E10-D643-4AD9-A6B9-5140760190A9" + }, + "fileCreated": "2025-06-21T09:31:00.4189252+00:00", + "fileLastModified": "2025-07-14T09:31:00.4189255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4189237+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101218 + }, + "imageDetail": { + "width": 1942, + "height": 4765 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 33290, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1218 }B008BD6F-799F-4A01-A79F-6F2159DB5812" + }, + "fileCreated": "2025-06-21T09:31:00.4214407+00:00", + "fileLastModified": "2025-07-14T09:31:00.4214409+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4214388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101219 + }, + "imageDetail": { + "width": 1431, + "height": 5904 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 69560, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1219 }5F354412-FD48-4594-B723-03C9F7500160" + }, + "fileCreated": "2025-06-21T09:31:00.4238521+00:00", + "fileLastModified": "2025-07-14T09:31:00.4238524+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4238526+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4238509+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101220 + }, + "imageDetail": { + "width": 9663, + "height": 5677 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45309, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1220 }18A7AA47-5A48-49A8-A952-C322D2781372" + }, + "fileCreated": "2025-06-21T09:31:00.4259553+00:00", + "fileLastModified": "2025-07-14T09:31:00.4259556+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4259557+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4259542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101221 + }, + "imageDetail": { + "width": 7130, + "height": 6861 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1221 }4523AE15-8A58-46ED-8509-BD3B6A770ABB" + }, + "fileCreated": "2025-06-21T09:31:00.4283515+00:00", + "fileLastModified": "2025-07-14T09:31:00.4283517+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4283503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101223 + }, + "imageDetail": { + "width": 9362, + "height": 9293 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84920, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1223 }123E20D0-57F7-48F6-9501-B5E3ABE689DD" + }, + "fileCreated": "2025-06-21T09:31:00.4338826+00:00", + "fileLastModified": "2025-07-14T09:31:00.433883+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4338808+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101224 + }, + "imageDetail": { + "width": 4626, + "height": 9172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71821, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1224 }E6D84B4A-7CF5-43D2-889C-BD299DD6323B" + }, + "fileCreated": "2025-06-21T09:31:00.4365825+00:00", + "fileLastModified": "2025-07-14T09:31:00.4365828+00:00", + "fileLastViewed": "2025-07-14T09:31:00.436583+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.436581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101227 + }, + "imageDetail": { + "width": 2240, + "height": 4700 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73622, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1227 }4F016D8D-A466-4796-9C72-7EBA932FC844" + }, + "fileCreated": "2025-06-21T09:31:00.4440254+00:00", + "fileLastModified": "2025-07-14T09:31:00.4440257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4440241+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101228 + }, + "imageDetail": { + "width": 5706, + "height": 6250 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1228 }8002B3DA-D5C5-4BBB-B6D4-CC933BA7A92E" + }, + "fileCreated": "2025-06-21T09:31:00.4461965+00:00", + "fileLastModified": "2025-07-14T09:31:00.4461968+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4461969+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4461955+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101229 + }, + "imageDetail": { + "width": 4113, + "height": 4026 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77463, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1229 }FE2CCF3A-DDF2-4AC7-A38C-D735461EFFD8" + }, + "fileCreated": "2025-06-21T09:31:00.4492007+00:00", + "fileLastModified": "2025-07-14T09:31:00.449201+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4491989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101230 + }, + "imageDetail": { + "width": 9312, + "height": 5591 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1230 }161BE408-814B-4AE3-975E-482E9579DCB3" + }, + "fileCreated": "2025-06-21T09:31:00.4523671+00:00", + "fileLastModified": "2025-07-14T09:31:00.4523674+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4523646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101233 + }, + "imageDetail": { + "width": 5761, + "height": 6881 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40242, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1233 }B6590FEB-8096-4F4D-8126-17C2C9E96E1B" + }, + "fileCreated": "2025-06-21T09:31:00.460026+00:00", + "fileLastModified": "2025-07-14T09:31:00.4600263+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4600246+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101238 + }, + "imageDetail": { + "width": 7129, + "height": 2796 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58260, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1238 }483ED91B-B9E9-427C-A8F6-221C58E257C5" + }, + "fileCreated": "2025-06-21T09:31:00.4731341+00:00", + "fileLastModified": "2025-07-14T09:31:00.4731344+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4731326+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101239 + }, + "imageDetail": { + "width": 8319, + "height": 9474 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40021, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1239 }82D82972-5D7F-4A5B-AB88-B437C885ED30" + }, + "fileCreated": "2025-06-21T09:31:00.475619+00:00", + "fileLastModified": "2025-07-14T09:31:00.4756193+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4756194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4756173+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101243 + }, + "imageDetail": { + "width": 2993, + "height": 6225 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65370, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1243 }A2814762-8402-45F9-B6EA-BFCFB23EBE0B" + }, + "fileCreated": "2025-06-21T09:31:00.4863009+00:00", + "fileLastModified": "2025-07-14T09:31:00.4863012+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4862998+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101244 + }, + "imageDetail": { + "width": 9465, + "height": 8374 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73535, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1244 }3439E499-4F01-476B-886A-DCAB959C4F59" + }, + "fileCreated": "2025-06-21T09:31:00.4887704+00:00", + "fileLastModified": "2025-07-14T09:31:00.4887706+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4887692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101246 + }, + "imageDetail": { + "width": 7279, + "height": 7706 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1246 }F486C72F-6D5A-4E4E-9D42-D6BCA7E98585" + }, + "fileCreated": "2025-06-21T09:31:00.4939858+00:00", + "fileLastModified": "2025-07-14T09:31:00.4939861+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4939862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4939844+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101247 + }, + "imageDetail": { + "width": 5064, + "height": 9770 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 27702, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1247 }095A90AF-4457-4426-8437-7590EED05B33" + }, + "fileCreated": "2025-06-21T09:31:00.4969608+00:00", + "fileLastModified": "2025-07-14T09:31:00.4969612+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4969614+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4969592+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101249 + }, + "imageDetail": { + "width": 7109, + "height": 6831 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77070, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1249 }CEBE0AF3-EDD1-463F-841D-A4A670F957C5" + }, + "fileCreated": "2025-06-21T09:31:00.5026299+00:00", + "fileLastModified": "2025-07-14T09:31:00.5026303+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5026305+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5026278+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101256 + }, + "imageDetail": { + "width": 690, + "height": 4465 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91666, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1256 }6E2DB359-EA49-4A08-9572-2F874E99A9D8" + }, + "fileCreated": "2025-06-21T09:31:00.5227508+00:00", + "fileLastModified": "2025-07-14T09:31:00.5227512+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5227516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5227489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101257 + }, + "imageDetail": { + "width": 4808, + "height": 6935 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1257 }75DC2F72-9E68-4D57-8F15-B5B17BC482AC" + }, + "fileCreated": "2025-06-21T09:31:00.5261084+00:00", + "fileLastModified": "2025-07-14T09:31:00.5261087+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5261054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101258 + }, + "imageDetail": { + "width": 5186, + "height": 2007 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81172, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1258 }8AAFF47C-9DEE-4398-9797-C6E1D9CE9580" + }, + "fileCreated": "2025-06-21T09:31:00.5295831+00:00", + "fileLastModified": "2025-07-14T09:31:00.5295835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5295804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101260 + }, + "imageDetail": { + "width": 8672, + "height": 8860 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21536, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1260 }376C4B81-E931-4DD5-BC01-47FB32C0ED3F" + }, + "fileCreated": "2025-06-21T09:31:00.5357894+00:00", + "fileLastModified": "2025-07-14T09:31:00.5357902+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5357875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101261 + }, + "imageDetail": { + "width": 4155, + "height": 9689 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40134, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1261 }CE0E5987-34C0-4AE4-B68C-563A5619B4F1" + }, + "fileCreated": "2025-06-21T09:31:00.538682+00:00", + "fileLastModified": "2025-07-14T09:31:00.5386823+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5386801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101263 + }, + "imageDetail": { + "width": 4114, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1263 }B5BACFAB-2330-4537-B1D6-FB2073FB1593" + }, + "fileCreated": "2025-06-21T09:31:00.5452862+00:00", + "fileLastModified": "2025-07-14T09:31:00.5452866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5452836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101264 + }, + "imageDetail": { + "width": 8423, + "height": 4794 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1264 }3FAC5560-1EA1-4092-984D-194306360735" + }, + "fileCreated": "2025-06-21T09:31:00.5487745+00:00", + "fileLastModified": "2025-07-14T09:31:00.5487749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5487719+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101265 + }, + "imageDetail": { + "width": 2798, + "height": 3918 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87706, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1265 }3CEB9B2E-C682-475B-87DD-9600A02866FE" + }, + "fileCreated": "2025-06-21T09:31:00.5519965+00:00", + "fileLastModified": "2025-07-14T09:31:00.5519969+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5519944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101267 + }, + "imageDetail": { + "width": 4260, + "height": 8796 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92511, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1267 }12D4DBB2-E3AC-44C3-B7F0-702D71AEECAA" + }, + "fileCreated": "2025-06-21T09:31:00.5582336+00:00", + "fileLastModified": "2025-07-14T09:31:00.558234+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5582343+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.558203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101269 + }, + "imageDetail": { + "width": 995, + "height": 8999 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1269 }A5C63A92-5ED0-4EC9-9D48-E2E3D989CE62" + }, + "fileCreated": "2025-06-21T09:31:00.5645581+00:00", + "fileLastModified": "2025-07-14T09:31:00.5645585+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5645588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.564556+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101270 + }, + "imageDetail": { + "width": 2057, + "height": 3023 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 62475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1270 }7E5F7173-7327-46D5-A8AE-55F3B8EF1878" + }, + "fileCreated": "2025-06-21T09:31:00.5672507+00:00", + "fileLastModified": "2025-07-14T09:31:00.5672509+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5672511+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.567249+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101271 + }, + "imageDetail": { + "width": 8881, + "height": 5086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1271 }23E09595-8DDE-4C17-A458-36CF764FB5DB" + }, + "fileCreated": "2025-06-21T09:31:00.5702412+00:00", + "fileLastModified": "2025-07-14T09:31:00.5702416+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.570239+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101273 + }, + "imageDetail": { + "width": 9865, + "height": 2592 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96323, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1273 }D24829B5-0A37-4048-8781-8A84B2C4EC1B" + }, + "fileCreated": "2025-06-21T09:31:00.576561+00:00", + "fileLastModified": "2025-07-14T09:31:00.5765615+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5765617+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5765587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101275 + }, + "imageDetail": { + "width": 3107, + "height": 5280 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1275 }8723ADFA-8C48-4E3F-ABD6-7B3C17CA3BCD" + }, + "fileCreated": "2025-06-21T09:31:00.5843961+00:00", + "fileLastModified": "2025-07-14T09:31:00.5843966+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5843969+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5843941+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101285 + }, + "imageDetail": { + "width": 9980, + "height": 8531 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54173, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1285 }982DC904-4911-4958-8597-111ACF61162D" + }, + "fileCreated": "2025-06-21T09:31:00.6226747+00:00", + "fileLastModified": "2025-07-14T09:31:00.6226751+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6226727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101288 + }, + "imageDetail": { + "width": 8079, + "height": 2348 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22839, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1288 }DAE1B558-0366-47E3-A1C7-B5E5D7BA0830" + }, + "fileCreated": "2025-06-21T09:31:00.633376+00:00", + "fileLastModified": "2025-07-14T09:31:00.6333763+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6333742+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101289 + }, + "imageDetail": { + "width": 9091, + "height": 2322 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25283, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1289 }AE218FC7-EB24-4A85-8D4A-7944BF4A44D6" + }, + "fileCreated": "2025-06-21T09:31:00.6400075+00:00", + "fileLastModified": "2025-07-14T09:31:00.6400079+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6400055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101290 + }, + "imageDetail": { + "width": 6412, + "height": 2581 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60752, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1290 }215B101B-6ADE-4F42-99DA-94B2785301F4" + }, + "fileCreated": "2025-06-21T09:31:00.6478951+00:00", + "fileLastModified": "2025-07-14T09:31:00.6478956+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6478958+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6478909+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101292 + }, + "imageDetail": { + "width": 2549, + "height": 4670 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1292 }CF4FFF1B-C6A2-44C4-B773-884792D8CC8D" + }, + "fileCreated": "2025-06-21T09:31:00.6614244+00:00", + "fileLastModified": "2025-07-14T09:31:00.6614248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6614201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101294 + }, + "imageDetail": { + "width": 1233, + "height": 8680 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 51636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1294 }7F87BFF2-96D5-46C4-9AFC-6BDEA8008125" + }, + "fileCreated": "2025-06-21T09:31:00.6750232+00:00", + "fileLastModified": "2025-07-14T09:31:00.6750237+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6750238+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6750208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101295 + }, + "imageDetail": { + "width": 2026, + "height": 9374 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46421, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1295 }85395AB4-3D5C-42C6-BE39-46625BEAA82D" + }, + "fileCreated": "2025-06-21T09:31:00.6811408+00:00", + "fileLastModified": "2025-07-14T09:31:00.6811412+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6811378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101296 + }, + "imageDetail": { + "width": 5759, + "height": 3635 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1296 }F1600945-F262-41DA-8FCE-B920743F739F" + }, + "fileCreated": "2025-06-21T09:31:00.687395+00:00", + "fileLastModified": "2025-07-14T09:31:00.6873954+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6873956+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6873927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101299 + }, + "imageDetail": { + "width": 6104, + "height": 6308 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72689, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1299 }B59693C4-57B0-4BF3-B38F-0197AE695066" + }, + "fileCreated": "2025-06-21T09:31:00.7079681+00:00", + "fileLastModified": "2025-07-14T09:31:00.7079686+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7079688+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7079656+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101301 + }, + "imageDetail": { + "width": 9165, + "height": 2696 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56152, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1301 }F3D0ECAC-37FE-45CD-9EEC-85AF29D556EA" + }, + "fileCreated": "2025-06-21T09:31:00.7211641+00:00", + "fileLastModified": "2025-07-14T09:31:00.7211645+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7211647+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7211618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101302 + }, + "imageDetail": { + "width": 769, + "height": 3719 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1302 }B936C27C-02C6-40C7-B55A-12D21F912593" + }, + "fileCreated": "2025-06-21T09:31:00.7278346+00:00", + "fileLastModified": "2025-07-14T09:31:00.727835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7278317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101303 + }, + "imageDetail": { + "width": 4709, + "height": 2425 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87685, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1303 }0B9AECBE-7D04-457F-AC45-B76B65CCF4E9" + }, + "fileCreated": "2025-06-21T09:31:00.734071+00:00", + "fileLastModified": "2025-07-14T09:31:00.7340715+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7340719+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7340674+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101304 + }, + "imageDetail": { + "width": 6412, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1304 }277B0E75-B55A-442B-81AC-61AB94DB1A7E" + }, + "fileCreated": "2025-06-21T09:31:00.7404692+00:00", + "fileLastModified": "2025-07-14T09:31:00.7404697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7404667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101306 + }, + "imageDetail": { + "width": 9254, + "height": 3718 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83847, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1306 }54A61D96-BC97-4C4F-B01A-C95EA97425CD" + }, + "fileCreated": "2025-06-21T09:31:00.7540693+00:00", + "fileLastModified": "2025-07-14T09:31:00.7540703+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7540706+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7540667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101307 + }, + "imageDetail": { + "width": 6967, + "height": 4715 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96456, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1307 }62610FB5-9493-45E6-ABA5-45F3E83A381F" + }, + "fileCreated": "2025-06-21T09:31:00.7609063+00:00", + "fileLastModified": "2025-07-14T09:31:00.7609071+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7609078+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7608979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101308 + }, + "imageDetail": { + "width": 7451, + "height": 5133 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98330, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1308 }20BB1A16-420D-4AB6-8305-AA994E58E252" + }, + "fileCreated": "2025-06-21T09:31:00.7667748+00:00", + "fileLastModified": "2025-07-14T09:31:00.7667753+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7667755+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7667728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101312 + }, + "imageDetail": { + "width": 6851, + "height": 7676 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98926, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1312 }E220BDE6-FE98-475F-9A14-01E33820C2A0" + }, + "fileCreated": "2025-06-21T09:31:00.7914644+00:00", + "fileLastModified": "2025-07-14T09:31:00.7914651+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7914618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101313 + }, + "imageDetail": { + "width": 8251, + "height": 8799 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58255, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1313 }0AF7C2DD-545A-40F0-8EB4-49FEFB3C7C4D" + }, + "fileCreated": "2025-06-21T09:31:00.7974867+00:00", + "fileLastModified": "2025-07-14T09:31:00.797487+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7974872+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7974851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101314 + }, + "imageDetail": { + "width": 7793, + "height": 9747 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1314 }58343216-A30B-47A2-961E-2CC708385230" + }, + "fileCreated": "2025-06-21T09:31:00.8036916+00:00", + "fileLastModified": "2025-07-14T09:31:00.8036928+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8036931+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.803688+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101315 + }, + "imageDetail": { + "width": 7250, + "height": 4243 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29999, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1315 }995A1519-5B36-4917-BCCF-98F50F6D3C9F" + }, + "fileCreated": "2025-06-21T09:31:00.8106182+00:00", + "fileLastModified": "2025-07-14T09:31:00.8106189+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8106153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101316 + }, + "imageDetail": { + "width": 2480, + "height": 4315 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96249, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1316 }1313EA32-8743-4F43-AC78-B70795DF1EC8" + }, + "fileCreated": "2025-06-21T09:31:00.8167433+00:00", + "fileLastModified": "2025-07-14T09:31:00.8167438+00:00", + "fileLastViewed": "2025-07-14T09:31:00.816744+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8167412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101320 + }, + "imageDetail": { + "width": 1858, + "height": 4057 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1320 }EC4EBCC7-8DA9-4A8B-966C-D2B273EE7BFC" + }, + "fileCreated": "2025-06-21T09:31:00.8423398+00:00", + "fileLastModified": "2025-07-14T09:31:00.8423403+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8423405+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8423374+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101322 + }, + "imageDetail": { + "width": 5249, + "height": 4794 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28325, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1322 }6DF0055F-26DA-49FB-B64E-B028A14A37EA" + }, + "fileCreated": "2025-06-21T09:31:00.8555772+00:00", + "fileLastModified": "2025-07-14T09:31:00.8555779+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8555745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101324 + }, + "imageDetail": { + "width": 2233, + "height": 9810 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91453, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1324 }C3B1C894-7157-4E03-8616-5A5D95526020" + }, + "fileCreated": "2025-06-21T09:31:00.8685746+00:00", + "fileLastModified": "2025-07-14T09:31:00.8685759+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8685763+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8685703+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101326 + }, + "imageDetail": { + "width": 8306, + "height": 8748 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79542, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1326 }41F4B4A7-F1CF-405E-B015-59561F06D3BA" + }, + "fileCreated": "2025-06-21T09:31:00.8817687+00:00", + "fileLastModified": "2025-07-14T09:31:00.8817694+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8817697+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8817654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101327 + }, + "imageDetail": { + "width": 6258, + "height": 3391 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45601, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1327 }96FDE535-8DD9-4D26-9515-1279988E7DB2" + }, + "fileCreated": "2025-06-21T09:31:00.8879214+00:00", + "fileLastModified": "2025-07-14T09:31:00.8879217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8879196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101329 + }, + "imageDetail": { + "width": 5911, + "height": 2564 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75547, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1329 }34AC77DB-0166-4AF3-8440-C34D186313E5" + }, + "fileCreated": "2025-06-21T09:31:00.9003141+00:00", + "fileLastModified": "2025-07-14T09:31:00.9003144+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9003145+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9003122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101331 + }, + "imageDetail": { + "width": 5390, + "height": 9191 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42791, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1331 }8129FAB3-DA5D-4F8D-BA87-4CDED38ED9B6" + }, + "fileCreated": "2025-06-21T09:31:00.9131531+00:00", + "fileLastModified": "2025-07-14T09:31:00.9131536+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9131491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101334 + }, + "imageDetail": { + "width": 214, + "height": 6336 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53805, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1334 }67AAF9C3-8C72-4D17-A63B-D92044966F88" + }, + "fileCreated": "2025-06-21T09:31:00.9329865+00:00", + "fileLastModified": "2025-07-14T09:31:00.932987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9329835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101335 + }, + "imageDetail": { + "width": 2234, + "height": 6784 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1335 }F6688827-3DCC-40AC-8646-AB04493E0F45" + }, + "fileCreated": "2025-06-21T09:31:00.9388692+00:00", + "fileLastModified": "2025-07-14T09:31:00.9388696+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9388673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101336 + }, + "imageDetail": { + "width": 3816, + "height": 2171 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98724, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1336 }CC2C204A-DEEC-4912-B8EB-CD3461209489" + }, + "fileCreated": "2025-06-21T09:31:00.9451253+00:00", + "fileLastModified": "2025-07-14T09:31:00.9451257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9451227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101337 + }, + "imageDetail": { + "width": 2687, + "height": 2348 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84499, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1337 }3F385162-5C50-42EF-BF6A-9AEAB79FEC8B" + }, + "fileCreated": "2025-06-21T09:31:00.9511663+00:00", + "fileLastModified": "2025-07-14T09:31:00.9511672+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9511647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101342 + }, + "imageDetail": { + "width": 306, + "height": 7553 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94171, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1342 }F4F89896-CD34-4A88-91FD-542D07866CB8" + }, + "fileCreated": "2025-06-21T09:31:00.9843777+00:00", + "fileLastModified": "2025-07-14T09:31:00.9843782+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9843784+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9843749+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101343 + }, + "imageDetail": { + "width": 1665, + "height": 4603 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73073, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1343 }ABE3868E-5CFC-458E-9904-6F465CF59699" + }, + "fileCreated": "2025-06-21T09:31:00.9909537+00:00", + "fileLastModified": "2025-07-14T09:31:00.9909542+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9909512+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101344 + }, + "imageDetail": { + "width": 2750, + "height": 2934 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96007, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1344 }76E9FC39-75C4-4BBD-A376-FF3CE730C7B3" + }, + "fileCreated": "2025-06-21T09:31:00.9976808+00:00", + "fileLastModified": "2025-07-14T09:31:00.9976812+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9976815+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9976781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101345 + }, + "imageDetail": { + "width": 310, + "height": 5970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1345 }EE681281-5891-4E37-8D0A-939987420093" + }, + "fileCreated": "2025-06-21T09:31:01.0039176+00:00", + "fileLastModified": "2025-07-14T09:31:01.0039178+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0039158+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101348 + }, + "imageDetail": { + "width": 8925, + "height": 9427 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1348 }1F23C7CC-C487-4501-9304-C4C891620BF6" + }, + "fileCreated": "2025-06-21T09:31:01.0240124+00:00", + "fileLastModified": "2025-07-14T09:31:01.0240127+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0240103+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101350 + }, + "imageDetail": { + "width": 4007, + "height": 4549 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 44385, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1350 }8E02A9AE-DFB1-4595-BFDE-E60DAD04853C" + }, + "fileCreated": "2025-06-21T09:31:01.0367036+00:00", + "fileLastModified": "2025-07-14T09:31:01.036704+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0367041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0366856+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101352 + }, + "imageDetail": { + "width": 8664, + "height": 9418 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67288, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1352 }1F11251F-750C-44E7-8F51-363B2556AB58" + }, + "fileCreated": "2025-06-21T09:31:01.0493824+00:00", + "fileLastModified": "2025-07-14T09:31:01.0493827+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0493807+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101353 + }, + "imageDetail": { + "width": 230, + "height": 9971 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94684, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1353 }3838B345-99F0-4718-9CF1-DF6EDEB04546" + }, + "fileCreated": "2025-06-21T09:31:01.0564162+00:00", + "fileLastModified": "2025-07-14T09:31:01.0564165+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0564167+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0564141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101355 + }, + "imageDetail": { + "width": 9309, + "height": 3003 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1355 }D14B9035-7EB8-4D53-8A05-B900075EFC1A" + }, + "fileCreated": "2025-06-21T09:31:01.0699866+00:00", + "fileLastModified": "2025-07-14T09:31:01.069987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0699835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101358 + }, + "imageDetail": { + "width": 7427, + "height": 7790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 79199, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1358 }A260F1B4-3052-43FC-8A17-9537594596E4" + }, + "fileCreated": "2025-06-21T09:31:01.0895562+00:00", + "fileLastModified": "2025-07-14T09:31:01.0895565+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0895566+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0895544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101360 + }, + "imageDetail": { + "width": 7211, + "height": 8055 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1360 }01D8CD33-ED71-44C9-97DE-6F92C6BC75C6" + }, + "fileCreated": "2025-06-21T09:31:01.1055431+00:00", + "fileLastModified": "2025-07-14T09:31:01.1055438+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1055445+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1055392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101366 + }, + "imageDetail": { + "width": 374, + "height": 8477 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1366 }82DB7615-E483-4501-A5EC-4843242E9E15" + }, + "fileCreated": "2025-06-21T09:31:01.1591606+00:00", + "fileLastModified": "2025-07-14T09:31:01.1591612+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1591615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1591579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101371 + }, + "imageDetail": { + "width": 7399, + "height": 9457 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94368, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1371 }F70656B4-19F2-492E-A1FC-FF579982DCC6" + }, + "fileCreated": "2025-06-21T09:31:01.1963135+00:00", + "fileLastModified": "2025-07-14T09:31:01.1963141+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1963144+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1963105+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101372 + }, + "imageDetail": { + "width": 9766, + "height": 2226 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34598, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1372 }ABC594B2-BB86-4BA9-A1A2-94C7E44D02F8" + }, + "fileCreated": "2025-06-21T09:31:01.2037873+00:00", + "fileLastModified": "2025-07-14T09:31:01.203788+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2037884+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2037842+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101375 + }, + "imageDetail": { + "width": 7230, + "height": 8426 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 92592, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1375 }0AED73CF-97DD-4C66-A20D-B3F8813A5252" + }, + "fileCreated": "2025-06-21T09:31:01.2258464+00:00", + "fileLastModified": "2025-07-14T09:31:01.2258471+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2258437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101376 + }, + "imageDetail": { + "width": 170, + "height": 6668 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85022, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1376 }70EDD0FD-DBAB-4596-B2F1-CD45C7463AEF" + }, + "fileCreated": "2025-06-21T09:31:01.2330868+00:00", + "fileLastModified": "2025-07-14T09:31:01.2330874+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.233084+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101381 + }, + "imageDetail": { + "width": 2951, + "height": 9315 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96472, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1381 }CD520EEF-1652-456D-970F-F7809F46FCF1" + }, + "fileCreated": "2025-06-21T09:31:01.277635+00:00", + "fileLastModified": "2025-07-14T09:31:01.2776357+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.277631+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101383 + }, + "imageDetail": { + "width": 2220, + "height": 4330 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79064, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1383 }62D450FA-94B8-433A-8AE3-7A5A45D47BE7" + }, + "fileCreated": "2025-06-21T09:31:01.2938005+00:00", + "fileLastModified": "2025-07-14T09:31:01.2938015+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2938018+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.293798+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101385 + }, + "imageDetail": { + "width": 7894, + "height": 9460 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35894, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1385 }DCFD0037-822A-4179-9DA4-BD2A4A064C6D" + }, + "fileCreated": "2025-06-21T09:31:01.310004+00:00", + "fileLastModified": "2025-07-14T09:31:01.3100045+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3100049+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3100016+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101389 + }, + "imageDetail": { + "width": 7835, + "height": 4329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46817, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1389 }0A3CC622-8BE8-491D-A793-533F37BDB782" + }, + "fileCreated": "2025-06-21T09:31:01.3406802+00:00", + "fileLastModified": "2025-07-14T09:31:01.3406809+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3406811+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3406784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101391 + }, + "imageDetail": { + "width": 6835, + "height": 7008 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22159, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1391 }31E1CCCC-6132-456A-813A-59D4D99F2130" + }, + "fileCreated": "2025-06-21T09:31:01.3566863+00:00", + "fileLastModified": "2025-07-14T09:31:01.3566868+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3566869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3566837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101394 + }, + "imageDetail": { + "width": 5796, + "height": 2116 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1394 }D7FD4EA4-E9FE-439A-A82D-16EBB4260E39" + }, + "fileCreated": "2025-06-21T09:31:01.3784492+00:00", + "fileLastModified": "2025-07-14T09:31:01.3784497+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3784498+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3784473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101395 + }, + "imageDetail": { + "width": 2563, + "height": 8522 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63287, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1395 }4F4C875A-07D5-44F0-B9EB-C39266C6105E" + }, + "fileCreated": "2025-06-21T09:31:01.3860917+00:00", + "fileLastModified": "2025-07-14T09:31:01.3860921+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3860923+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3860893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101397 + }, + "imageDetail": { + "width": 5279, + "height": 2519 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67055, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1397 }8AF744E4-3157-42C6-975A-1187CD7A00F6" + }, + "fileCreated": "2025-06-21T09:31:01.4004417+00:00", + "fileLastModified": "2025-07-14T09:31:01.4004422+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4004401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101398 + }, + "imageDetail": { + "width": 9660, + "height": 4603 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26828, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1398 }20E00DE2-2048-4243-B245-7AEC87DF0831" + }, + "fileCreated": "2025-06-21T09:31:01.4074621+00:00", + "fileLastModified": "2025-07-14T09:31:01.4074624+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4074625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4074608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101399 + }, + "imageDetail": { + "width": 425, + "height": 2830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79712, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1399 }05604F32-4B2D-47B2-8964-A989FE7E9D39" + }, + "fileCreated": "2025-06-21T09:31:01.4146444+00:00", + "fileLastModified": "2025-07-14T09:31:01.4146448+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.414643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101400 + }, + "imageDetail": { + "width": 5250, + "height": 7105 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1400 }A870E005-FAF6-47F9-8864-4CAAE1DE1D42" + }, + "fileCreated": "2025-06-21T09:31:01.4216345+00:00", + "fileLastModified": "2025-07-14T09:31:01.4216348+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4216332+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101402 + }, + "imageDetail": { + "width": 7812, + "height": 2350 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1402 }57B27CD3-8BF6-4472-B69B-EF8B3CD714D7" + }, + "fileCreated": "2025-06-21T09:31:01.436503+00:00", + "fileLastModified": "2025-07-14T09:31:01.4365034+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4365035+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4365005+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101404 + }, + "imageDetail": { + "width": 4790, + "height": 6497 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72590, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1404 }B265ED8B-CC55-4A73-945E-E9CFBE609C98" + }, + "fileCreated": "2025-06-21T09:31:01.4521363+00:00", + "fileLastModified": "2025-07-14T09:31:01.4521367+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4521342+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101405 + }, + "imageDetail": { + "width": 5738, + "height": 3378 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 77335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1405 }D368465D-9B2B-43ED-89AE-9828145D25A2" + }, + "fileCreated": "2025-06-21T09:31:01.4604837+00:00", + "fileLastModified": "2025-07-14T09:31:01.4604842+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4604809+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101407 + }, + "imageDetail": { + "width": 7317, + "height": 6513 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1407 }3C565105-F7F7-4C15-BBAF-47FC3A3F14FB" + }, + "fileCreated": "2025-06-21T09:31:01.4758509+00:00", + "fileLastModified": "2025-07-14T09:31:01.4758514+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4758516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4758483+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101408 + }, + "imageDetail": { + "width": 5435, + "height": 9712 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58312, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1408 }262BBA57-4323-4EC3-B6BC-78BDD08842D3" + }, + "fileCreated": "2025-06-21T09:31:01.4841045+00:00", + "fileLastModified": "2025-07-14T09:31:01.4841052+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4841022+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101409 + }, + "imageDetail": { + "width": 1471, + "height": 9961 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23328, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1409 }3B3FEB8D-D976-445B-ACBF-2D10E19F4890" + }, + "fileCreated": "2025-06-21T09:31:01.491971+00:00", + "fileLastModified": "2025-07-14T09:31:01.4919713+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4919715+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.491969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101411 + }, + "imageDetail": { + "width": 7582, + "height": 7182 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32284, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1411 }B21AB763-A218-4349-B77C-D3FB61D2B75A" + }, + "fileCreated": "2025-06-21T09:31:01.5075583+00:00", + "fileLastModified": "2025-07-14T09:31:01.5075587+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5075561+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101413 + }, + "imageDetail": { + "width": 1909, + "height": 7982 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75943, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1413 }F12586B6-3F9D-446C-890E-0127DCA5FC3B" + }, + "fileCreated": "2025-06-21T09:31:01.5221819+00:00", + "fileLastModified": "2025-07-14T09:31:01.5221822+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5221823+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5221801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101416 + }, + "imageDetail": { + "width": 4783, + "height": 4044 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44692, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1416 }5EF0F679-2183-45C8-8807-599D38804858" + }, + "fileCreated": "2025-06-21T09:31:01.536109+00:00", + "fileLastModified": "2025-07-14T09:31:01.5361092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5361075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101419 + }, + "imageDetail": { + "width": 744, + "height": 5944 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1419 }2483B2C9-6B66-4CB4-8D0D-6AF35D006ED5" + }, + "fileCreated": "2025-06-21T09:31:01.5438095+00:00", + "fileLastModified": "2025-07-14T09:31:01.5438097+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5438081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101420 + }, + "imageDetail": { + "width": 6909, + "height": 8963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75502, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1420 }EF3E445A-96C8-493D-A71D-D7A18BDA973C" + }, + "fileCreated": "2025-06-21T09:31:01.5460528+00:00", + "fileLastModified": "2025-07-14T09:31:01.5460531+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5460515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101422 + }, + "imageDetail": { + "width": 9230, + "height": 9632 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66113, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1422 }24110954-86E4-44B7-A998-A70F13FE01D9" + }, + "fileCreated": "2025-06-21T09:31:01.551342+00:00", + "fileLastModified": "2025-07-14T09:31:01.5513423+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5513396+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101424 + }, + "imageDetail": { + "width": 931, + "height": 8529 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96863, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1424 }4C8AB4C0-6B9E-4412-925E-59B54357B6E9" + }, + "fileCreated": "2025-06-21T09:31:01.5560157+00:00", + "fileLastModified": "2025-07-14T09:31:01.5560159+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5560145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101425 + }, + "imageDetail": { + "width": 9324, + "height": 9169 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88370, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1425 }1B716B46-6976-4A4C-A65B-CBB3A53E05C8" + }, + "fileCreated": "2025-06-21T09:31:01.5582017+00:00", + "fileLastModified": "2025-07-14T09:31:01.5582019+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5582002+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101427 + }, + "imageDetail": { + "width": 1370, + "height": 4375 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28632, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1427 }DC763C68-571A-4282-B001-E5A6E7635C46" + }, + "fileCreated": "2025-06-21T09:31:01.5629036+00:00", + "fileLastModified": "2025-07-14T09:31:01.5629039+00:00", + "fileLastViewed": "2025-07-14T09:31:01.562904+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5629021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101432 + }, + "imageDetail": { + "width": 2583, + "height": 3583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89723, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1432 }774D66E4-BF11-48BE-85FC-60A78401E749" + }, + "fileCreated": "2025-06-21T09:31:01.5722618+00:00", + "fileLastModified": "2025-07-14T09:31:01.5722621+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5722622+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5722607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101433 + }, + "imageDetail": { + "width": 3240, + "height": 4305 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90443, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1433 }B2365EFA-90CB-45DE-BBB3-5EAF478E43B2" + }, + "fileCreated": "2025-06-21T09:31:01.5738131+00:00", + "fileLastModified": "2025-07-14T09:31:01.5738133+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.573812+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101435 + }, + "imageDetail": { + "width": 1640, + "height": 2806 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98409, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1435 }04534DB7-7537-48D9-B881-BD8A4EA47DFD" + }, + "fileCreated": "2025-06-21T09:31:01.57695+00:00", + "fileLastModified": "2025-07-14T09:31:01.5769502+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5769486+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101436 + }, + "imageDetail": { + "width": 1501, + "height": 9758 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1436 }AB743E9F-7DF4-4FCD-B3EE-76E18A75CF3D" + }, + "fileCreated": "2025-06-21T09:31:01.5784368+00:00", + "fileLastModified": "2025-07-14T09:31:01.5784371+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5784372+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5784357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101437 + }, + "imageDetail": { + "width": 4687, + "height": 7581 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23230, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1437 }BD560362-4C0C-4DB2-99F7-9940D170A0B3" + }, + "fileCreated": "2025-06-21T09:31:01.580545+00:00", + "fileLastModified": "2025-07-14T09:31:01.5805452+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5805434+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101441 + }, + "imageDetail": { + "width": 653, + "height": 8857 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66661, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1441 }6A8151D8-F103-4021-9A81-D24F4B76209B" + }, + "fileCreated": "2025-06-21T09:31:01.5879164+00:00", + "fileLastModified": "2025-07-14T09:31:01.5879166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5879153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101442 + }, + "imageDetail": { + "width": 3663, + "height": 8128 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1442 }527FCB17-7CF8-43B2-8A57-A55F3436CFB1" + }, + "fileCreated": "2025-06-21T09:31:01.5894467+00:00", + "fileLastModified": "2025-07-14T09:31:01.589447+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5894471+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5894456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101443 + }, + "imageDetail": { + "width": 5199, + "height": 5743 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1443 }15993580-20C9-48BB-9EEF-B1E4E86425E7" + }, + "fileCreated": "2025-06-21T09:31:01.5909151+00:00", + "fileLastModified": "2025-07-14T09:31:01.5909153+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5909154+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5909141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101444 + }, + "imageDetail": { + "width": 3755, + "height": 5792 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77305, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1444 }5CC87C16-5976-45D2-8127-BB4BDB473D6D" + }, + "fileCreated": "2025-06-21T09:31:01.592378+00:00", + "fileLastModified": "2025-07-14T09:31:01.5923782+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5923783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5923769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101445 + }, + "imageDetail": { + "width": 3329, + "height": 9914 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24944, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1445 }ECCC436C-33CB-44A7-BB59-966FC76FC8AF" + }, + "fileCreated": "2025-06-21T09:31:01.5937682+00:00", + "fileLastModified": "2025-07-14T09:31:01.5937684+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5937672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101446 + }, + "imageDetail": { + "width": 1603, + "height": 4485 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53561, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1446 }85C137B7-7298-49F5-A2E2-7BA6BACC1714" + }, + "fileCreated": "2025-06-21T09:31:01.5952403+00:00", + "fileLastModified": "2025-07-14T09:31:01.5952405+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5952392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101450 + }, + "imageDetail": { + "width": 9843, + "height": 4825 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51642, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1450 }1198416A-C514-43DF-A412-FC173F7499D5" + }, + "fileCreated": "2025-06-21T09:31:01.6041334+00:00", + "fileLastModified": "2025-07-14T09:31:01.6041336+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6041339+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6041315+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101451 + }, + "imageDetail": { + "width": 155, + "height": 3347 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33508, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1451 }C4B9D110-6AD1-42FE-A00E-D6C5505D052D" + }, + "fileCreated": "2025-06-21T09:31:01.6059386+00:00", + "fileLastModified": "2025-07-14T09:31:01.6059388+00:00", + "fileLastViewed": "2025-07-14T09:31:01.605939+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6059375+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101452 + }, + "imageDetail": { + "width": 7681, + "height": 8409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1452 }D6D5C85B-B430-42A6-AB1E-0AC00903B958" + }, + "fileCreated": "2025-06-21T09:31:01.6077617+00:00", + "fileLastModified": "2025-07-14T09:31:01.6077621+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6077623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6077601+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101453 + }, + "imageDetail": { + "width": 4699, + "height": 7567 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49457, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1453 }D0857524-2F68-4F96-994B-F9510B49D818" + }, + "fileCreated": "2025-06-21T09:31:01.6095624+00:00", + "fileLastModified": "2025-07-14T09:31:01.6095626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6095608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101458 + }, + "imageDetail": { + "width": 6093, + "height": 8197 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31348, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1458 }7C4F70A9-C563-4B91-8093-C34B509721D7" + }, + "fileCreated": "2025-06-21T09:31:01.6194188+00:00", + "fileLastModified": "2025-07-14T09:31:01.619419+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6194193+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6194171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101459 + }, + "imageDetail": { + "width": 6916, + "height": 4086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59184, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1459 }EA1D0C56-A94A-4526-A21E-7B1A580168F6" + }, + "fileCreated": "2025-06-21T09:31:01.6210414+00:00", + "fileLastModified": "2025-07-14T09:31:01.6210416+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.62104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101461 + }, + "imageDetail": { + "width": 4131, + "height": 7921 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1461 }B8D6CB91-5B18-4084-8667-2AECF647D84E" + }, + "fileCreated": "2025-06-21T09:31:01.6242313+00:00", + "fileLastModified": "2025-07-14T09:31:01.6242316+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6242317+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6242301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101465 + }, + "imageDetail": { + "width": 4895, + "height": 5711 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63921, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1465 }8447514E-1083-4D95-B4A2-150E829CB5B6" + }, + "fileCreated": "2025-06-21T09:31:01.6317487+00:00", + "fileLastModified": "2025-07-14T09:31:01.631749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6317468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101466 + }, + "imageDetail": { + "width": 7632, + "height": 6028 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24089, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1466 }EF8C55C8-4D85-44CF-B42F-86F934B2FFA6" + }, + "fileCreated": "2025-06-21T09:31:01.6334092+00:00", + "fileLastModified": "2025-07-14T09:31:01.6334094+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6334096+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6334076+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101468 + }, + "imageDetail": { + "width": 715, + "height": 9405 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77201, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1468 }C867EE65-CCBC-4F60-BBFD-4BAAA2BFB1D2" + }, + "fileCreated": "2025-06-21T09:31:01.6369199+00:00", + "fileLastModified": "2025-07-14T09:31:01.6369202+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6369204+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6369187+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101469 + }, + "imageDetail": { + "width": 3281, + "height": 9979 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49672, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1469 }BE44D54A-CE20-4990-B124-F99EEE2FBC60" + }, + "fileCreated": "2025-06-21T09:31:01.6384288+00:00", + "fileLastModified": "2025-07-14T09:31:01.638429+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6384292+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6384276+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101471 + }, + "imageDetail": { + "width": 617, + "height": 6320 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78860, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1471 }BE07348A-3CE7-407A-8315-F0B943E6B402" + }, + "fileCreated": "2025-06-21T09:31:01.6417462+00:00", + "fileLastModified": "2025-07-14T09:31:01.6417464+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6417466+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.641745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101472 + }, + "imageDetail": { + "width": 9258, + "height": 2535 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29518, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1472 }F9A48D83-F1CB-4A24-A1DB-7790919B5A6E" + }, + "fileCreated": "2025-06-21T09:31:01.6433056+00:00", + "fileLastModified": "2025-07-14T09:31:01.6433058+00:00", + "fileLastViewed": "2025-07-14T09:31:01.643306+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6433045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101474 + }, + "imageDetail": { + "width": 5263, + "height": 4385 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71255, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1474 }CC95EE2F-3515-4A73-8BC3-D4159DB0EEC5" + }, + "fileCreated": "2025-06-21T09:31:01.6473351+00:00", + "fileLastModified": "2025-07-14T09:31:01.6473353+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6473356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6473336+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101475 + }, + "imageDetail": { + "width": 3790, + "height": 7905 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91922, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1475 }42D3BECE-4309-49E7-82F6-B2775E791865" + }, + "fileCreated": "2025-06-21T09:31:01.6492089+00:00", + "fileLastModified": "2025-07-14T09:31:01.6492091+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6492094+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6492074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101479 + }, + "imageDetail": { + "width": 7912, + "height": 2503 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1479 }F210BBCC-4EA9-43F4-839D-9025BC3B8118" + }, + "fileCreated": "2025-06-21T09:31:01.6563685+00:00", + "fileLastModified": "2025-07-14T09:31:01.6563687+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6563668+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101480 + }, + "imageDetail": { + "width": 2960, + "height": 6166 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 73987, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1480 }56864511-89E6-4C7E-93D9-E3C28DAFBD11" + }, + "fileCreated": "2025-06-21T09:31:01.6579806+00:00", + "fileLastModified": "2025-07-14T09:31:01.6579808+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.657979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101481 + }, + "imageDetail": { + "width": 3540, + "height": 9079 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1481 }27FCBEF7-F7C7-44E7-8955-8209B9E83C81" + }, + "fileCreated": "2025-06-21T09:31:01.659763+00:00", + "fileLastModified": "2025-07-14T09:31:01.6597635+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6597607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101486 + }, + "imageDetail": { + "width": 9728, + "height": 7935 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40563, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1486 }615D118A-020D-4B23-BA8A-6CB120BD3A5E" + }, + "fileCreated": "2025-06-21T09:31:01.6689738+00:00", + "fileLastModified": "2025-07-14T09:31:01.668974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6689725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101487 + }, + "imageDetail": { + "width": 8248, + "height": 4649 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43233, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1487 }45D55647-7B44-4748-9963-BE6A5EB0521E" + }, + "fileCreated": "2025-06-21T09:31:01.670644+00:00", + "fileLastModified": "2025-07-14T09:31:01.6706442+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6706426+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101490 + }, + "imageDetail": { + "width": 4291, + "height": 7082 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 36187, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1490 }5D596814-DFDD-4482-A32B-B545FE51F9B7" + }, + "fileCreated": "2025-06-21T09:31:01.676358+00:00", + "fileLastModified": "2025-07-14T09:31:01.6763583+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6763588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6763557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101491 + }, + "imageDetail": { + "width": 5376, + "height": 5305 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 31169, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1491 }F89EF349-E4C3-4E99-891A-1FC72DAF1FA4" + }, + "fileCreated": "2025-06-21T09:31:01.6782847+00:00", + "fileLastModified": "2025-07-14T09:31:01.6782851+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6782854+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6782829+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101503 + }, + "imageDetail": { + "width": 5572, + "height": 8040 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1503 }BC89BBD6-D428-4EB1-BEC2-ABCBFBDA653A" + }, + "fileCreated": "2025-06-21T09:31:01.7012502+00:00", + "fileLastModified": "2025-07-14T09:31:01.7012504+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7012487+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101504 + }, + "imageDetail": { + "width": 9010, + "height": 5254 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1504 }C24834F3-6F72-4E96-95B4-A1F285F13C77" + }, + "fileCreated": "2025-06-21T09:31:01.7030607+00:00", + "fileLastModified": "2025-07-14T09:31:01.7030609+00:00", + "fileLastViewed": "2025-07-14T09:31:01.703061+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7030591+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101505 + }, + "imageDetail": { + "width": 7093, + "height": 8628 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34989, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1505 }E1EC87F1-842F-44C3-A658-E7BD4B6675C1" + }, + "fileCreated": "2025-06-21T09:31:01.7053357+00:00", + "fileLastModified": "2025-07-14T09:31:01.7053359+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7053342+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101506 + }, + "imageDetail": { + "width": 4349, + "height": 5903 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1506 }741959A5-A791-4096-9BE0-3CC15AFAF663" + }, + "fileCreated": "2025-06-21T09:31:01.7072566+00:00", + "fileLastModified": "2025-07-14T09:31:01.7072568+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7072551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101507 + }, + "imageDetail": { + "width": 637, + "height": 8628 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72684, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1507 }57CDD65D-EA0C-4C26-A0B3-4DEA680E36B6" + }, + "fileCreated": "2025-06-21T09:31:01.7090416+00:00", + "fileLastModified": "2025-07-14T09:31:01.7090419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.70904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101509 + }, + "imageDetail": { + "width": 9703, + "height": 9723 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1509 }073949BC-6D6D-43FE-98A2-9CBA2A9C65C1" + }, + "fileCreated": "2025-06-21T09:31:01.7125827+00:00", + "fileLastModified": "2025-07-14T09:31:01.7125831+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7125833+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7125812+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101514 + }, + "imageDetail": { + "width": 8087, + "height": 9946 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80760, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1514 }7169BA2E-2FA7-4077-91D2-E76BB956AE93" + }, + "fileCreated": "2025-06-21T09:31:01.7220051+00:00", + "fileLastModified": "2025-07-14T09:31:01.7220052+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7220054+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7220032+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101517 + }, + "imageDetail": { + "width": 4937, + "height": 2569 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82654, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1517 }93012ACE-FBD7-4DB5-B787-45B705824A00" + }, + "fileCreated": "2025-06-21T09:31:01.7263966+00:00", + "fileLastModified": "2025-07-14T09:31:01.7263968+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7263957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101518 + }, + "imageDetail": { + "width": 8489, + "height": 5172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56668, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1518 }0D4757AE-4830-4A9C-B886-AB6236EDCECA" + }, + "fileCreated": "2025-06-21T09:31:01.7277967+00:00", + "fileLastModified": "2025-07-14T09:31:01.7277969+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7277957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101525 + }, + "imageDetail": { + "width": 1358, + "height": 8657 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27106, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1525 }83E46907-BA07-483D-93AA-DA1AEC2A0094" + }, + "fileCreated": "2025-06-21T09:31:01.7389665+00:00", + "fileLastModified": "2025-07-14T09:31:01.7389667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7389651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101526 + }, + "imageDetail": { + "width": 838, + "height": 4646 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 28475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1526 }A75500DF-FD1E-4A32-A948-1A57A00D0581" + }, + "fileCreated": "2025-06-21T09:31:01.740331+00:00", + "fileLastModified": "2025-07-14T09:31:01.7403312+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7403313+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7403299+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101527 + }, + "imageDetail": { + "width": 9127, + "height": 8083 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34325, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1527 }2030D9EC-A27A-4F78-AF6F-8DAE32410BB5" + }, + "fileCreated": "2025-06-21T09:31:01.7416576+00:00", + "fileLastModified": "2025-07-14T09:31:01.7416578+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7416579+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7416566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101528 + }, + "imageDetail": { + "width": 9736, + "height": 2703 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84945, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1528 }A57E8285-10BD-42BF-BFF1-9FBA489F20F5" + }, + "fileCreated": "2025-06-21T09:31:01.742985+00:00", + "fileLastModified": "2025-07-14T09:31:01.7429853+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7429733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101531 + }, + "imageDetail": { + "width": 4059, + "height": 7370 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78676, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1531 }BDBE8461-F0BE-4219-B0C6-242C8FA05330" + }, + "fileCreated": "2025-06-21T09:31:01.7473955+00:00", + "fileLastModified": "2025-07-14T09:31:01.7473957+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7473958+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7473946+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101532 + }, + "imageDetail": { + "width": 9471, + "height": 7598 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1532 }9D30176D-A069-469A-8876-5B2310F31048" + }, + "fileCreated": "2025-06-21T09:31:01.7487742+00:00", + "fileLastModified": "2025-07-14T09:31:01.7487744+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7487732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101533 + }, + "imageDetail": { + "width": 626, + "height": 6655 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 63618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1533 }12673DC6-3B2D-422F-AFFB-98290CBF9CA7" + }, + "fileCreated": "2025-06-21T09:31:01.7501334+00:00", + "fileLastModified": "2025-07-14T09:31:01.7501335+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7501324+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101537 + }, + "imageDetail": { + "width": 1723, + "height": 7640 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96819, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1537 }5109256F-2164-4BD2-AAE8-6B28B5E0601D" + }, + "fileCreated": "2025-06-21T09:31:01.7559861+00:00", + "fileLastModified": "2025-07-14T09:31:01.7559863+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7559851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101539 + }, + "imageDetail": { + "width": 9760, + "height": 2012 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64213, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1539 }C97D58E4-9742-4740-8F9A-F2C7F1593CC3" + }, + "fileCreated": "2025-06-21T09:31:01.7587756+00:00", + "fileLastModified": "2025-07-14T09:31:01.7587758+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7587745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101540 + }, + "imageDetail": { + "width": 150, + "height": 2720 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1540 }C0340F48-FEFC-42D8-8C60-FD15481A3B4E" + }, + "fileCreated": "2025-06-21T09:31:01.760687+00:00", + "fileLastModified": "2025-07-14T09:31:01.7606872+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7606859+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101541 + }, + "imageDetail": { + "width": 1199, + "height": 4042 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63445, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1541 }E3066ABE-17FE-4DCB-8049-3AACB1CADF6E" + }, + "fileCreated": "2025-06-21T09:31:01.7620145+00:00", + "fileLastModified": "2025-07-14T09:31:01.7620147+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7620135+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101544 + }, + "imageDetail": { + "width": 8623, + "height": 5436 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1544 }1173EE0C-34CC-4F47-B91F-FFF7CDD6ADFF" + }, + "fileCreated": "2025-06-21T09:31:01.7660831+00:00", + "fileLastModified": "2025-07-14T09:31:01.7660833+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7660834+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7660822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101545 + }, + "imageDetail": { + "width": 3753, + "height": 4963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1545 }E6C2BE39-4C0D-4D1D-85B2-E21285024BEF" + }, + "fileCreated": "2025-06-21T09:31:01.7673489+00:00", + "fileLastModified": "2025-07-14T09:31:01.767349+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7673492+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.767348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101547 + }, + "imageDetail": { + "width": 4649, + "height": 2808 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 61147, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1547 }322CCD2A-D5C5-431D-A7F9-1BC34D58A37F" + }, + "fileCreated": "2025-06-21T09:31:01.7705517+00:00", + "fileLastModified": "2025-07-14T09:31:01.7705519+00:00", + "fileLastViewed": "2025-07-14T09:31:01.770552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7705507+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101548 + }, + "imageDetail": { + "width": 601, + "height": 4977 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1548 }BEF71696-A162-4B8B-9A59-CE98D179E238" + }, + "fileCreated": "2025-06-21T09:31:01.7723809+00:00", + "fileLastModified": "2025-07-14T09:31:01.7723811+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7723812+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.77238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101549 + }, + "imageDetail": { + "width": 4709, + "height": 5479 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89508, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1549 }73273698-4FC2-4AB2-A193-AA98E208D85B" + }, + "fileCreated": "2025-06-21T09:31:01.7739339+00:00", + "fileLastModified": "2025-07-14T09:31:01.7739341+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7739328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101550 + }, + "imageDetail": { + "width": 5501, + "height": 9741 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85037, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1550 }DF0A4170-DC5D-439B-8C83-44F96E2ECE3B" + }, + "fileCreated": "2025-06-21T09:31:01.7752969+00:00", + "fileLastModified": "2025-07-14T09:31:01.7752971+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7752972+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7752959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101551 + }, + "imageDetail": { + "width": 7273, + "height": 4909 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1551 }3D46E7E3-2455-440F-BC69-80A9F5FFCE01" + }, + "fileCreated": "2025-06-21T09:31:01.7767368+00:00", + "fileLastModified": "2025-07-14T09:31:01.776737+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7767357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101555 + }, + "imageDetail": { + "width": 6192, + "height": 2369 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46886, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1555 }D5F99757-3E15-417D-BA6E-1973CCB0468F" + }, + "fileCreated": "2025-06-21T09:31:01.7834309+00:00", + "fileLastModified": "2025-07-14T09:31:01.783431+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7834294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101557 + }, + "imageDetail": { + "width": 8121, + "height": 3472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68053, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1557 }7D64FD4F-B328-4366-90F2-BAA2D8B8B56F" + }, + "fileCreated": "2025-06-21T09:31:01.7866208+00:00", + "fileLastModified": "2025-07-14T09:31:01.786621+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7866198+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101559 + }, + "imageDetail": { + "width": 1110, + "height": 9452 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22687, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1559 }4FFA73A8-E41B-48E0-A974-892F08CD46A9" + }, + "fileCreated": "2025-06-21T09:31:01.7895463+00:00", + "fileLastModified": "2025-07-14T09:31:01.7895465+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7895453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101561 + }, + "imageDetail": { + "width": 6383, + "height": 2623 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1561 }3AC40431-B647-4AD2-BD8F-D645F30FCF9E" + }, + "fileCreated": "2025-06-21T09:31:01.7922077+00:00", + "fileLastModified": "2025-07-14T09:31:01.7922079+00:00", + "fileLastViewed": "2025-07-14T09:31:01.792208+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7922067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101563 + }, + "imageDetail": { + "width": 9567, + "height": 5329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54569, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1563 }D8380E07-3938-4B13-9B5F-EC4CF6862AC6" + }, + "fileCreated": "2025-06-21T09:31:01.7948138+00:00", + "fileLastModified": "2025-07-14T09:31:01.794814+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7948128+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101564 + }, + "imageDetail": { + "width": 4760, + "height": 7620 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1564 }C6D73253-5957-44E0-BD0B-5F60E8479461" + }, + "fileCreated": "2025-06-21T09:31:01.7961983+00:00", + "fileLastModified": "2025-07-14T09:31:01.7961985+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7961986+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7961973+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101565 + }, + "imageDetail": { + "width": 7472, + "height": 5520 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97338, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1565 }CB6F1E64-6994-4B03-A51F-70CA7BB535B0" + }, + "fileCreated": "2025-06-21T09:31:01.7980568+00:00", + "fileLastModified": "2025-07-14T09:31:01.798057+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7980571+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7980559+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101568 + }, + "imageDetail": { + "width": 4760, + "height": 5245 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 37050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1568 }8CE21E6A-5DBF-4754-85D3-0BFF030DAF05" + }, + "fileCreated": "2025-06-21T09:31:01.8025933+00:00", + "fileLastModified": "2025-07-14T09:31:01.8025934+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8025923+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101569 + }, + "imageDetail": { + "width": 4382, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1569 }BB7A24CA-E974-4FBF-BF5B-D6D9C15831EE" + }, + "fileCreated": "2025-06-21T09:31:01.8039232+00:00", + "fileLastModified": "2025-07-14T09:31:01.8039234+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8039223+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101570 + }, + "imageDetail": { + "width": 4603, + "height": 8604 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34226, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1570 }6AA979A0-9F60-4EB7-AFBE-538C52567E61" + }, + "fileCreated": "2025-06-21T09:31:01.805322+00:00", + "fileLastModified": "2025-07-14T09:31:01.8053222+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8053223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8053211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101573 + }, + "imageDetail": { + "width": 7319, + "height": 3244 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92552, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1573 }2118667E-9D1B-4BA7-B041-9E55F7C79F84" + }, + "fileCreated": "2025-06-21T09:31:01.8100565+00:00", + "fileLastModified": "2025-07-14T09:31:01.8100566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8100552+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101575 + }, + "imageDetail": { + "width": 7231, + "height": 7883 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69346, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1575 }95E407E3-4048-452E-AA4D-77801D4F1FD1" + }, + "fileCreated": "2025-06-21T09:31:01.8127128+00:00", + "fileLastModified": "2025-07-14T09:31:01.8127129+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8127118+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101577 + }, + "imageDetail": { + "width": 7324, + "height": 2418 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1577 }90361B87-FFE1-49B3-B835-21A1D888BF88" + }, + "fileCreated": "2025-06-21T09:31:01.8160572+00:00", + "fileLastModified": "2025-07-14T09:31:01.8160574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8160558+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101582 + }, + "imageDetail": { + "width": 5076, + "height": 9906 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 65826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1582 }337FBA54-49A5-4850-A2B2-84C0F2FB254A" + }, + "fileCreated": "2025-06-21T09:31:01.82421+00:00", + "fileLastModified": "2025-07-14T09:31:01.8242102+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8242103+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.824209+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101586 + }, + "imageDetail": { + "width": 986, + "height": 7416 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1586 }89A293AD-A873-4A5A-B856-BAF770C48901" + }, + "fileCreated": "2025-06-21T09:31:01.8297321+00:00", + "fileLastModified": "2025-07-14T09:31:01.8297323+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8297324+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8297311+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101587 + }, + "imageDetail": { + "width": 7015, + "height": 7365 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1587 }3AEFCC6A-68E6-4935-B08C-0FF809E49C09" + }, + "fileCreated": "2025-06-21T09:31:01.8316182+00:00", + "fileLastModified": "2025-07-14T09:31:01.8316184+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8316164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101588 + }, + "imageDetail": { + "width": 8941, + "height": 2781 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1588 }51974FE4-994B-4531-BFF3-771AF63F92A5" + }, + "fileCreated": "2025-06-21T09:31:01.83312+00:00", + "fileLastModified": "2025-07-14T09:31:01.8331202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8331188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101590 + }, + "imageDetail": { + "width": 3184, + "height": 5113 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1590 }24C7939B-B4E5-475B-928B-1B9931A820F7" + }, + "fileCreated": "2025-06-21T09:31:01.8366651+00:00", + "fileLastModified": "2025-07-14T09:31:01.8366653+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8366641+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101594 + }, + "imageDetail": { + "width": 5356, + "height": 3522 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28956, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1594 }B1A2181D-F388-4637-A5C6-710ED79DDAC8" + }, + "fileCreated": "2025-06-21T09:31:01.843838+00:00", + "fileLastModified": "2025-07-14T09:31:01.8438382+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8438383+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8438364+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101597 + }, + "imageDetail": { + "width": 2801, + "height": 4444 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90142, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1597 }90CF8282-9D0D-405C-ACF6-3DB39EE9BC02" + }, + "fileCreated": "2025-06-21T09:31:01.8498639+00:00", + "fileLastModified": "2025-07-14T09:31:01.8498641+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8498643+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8498623+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101599 + }, + "imageDetail": { + "width": 9657, + "height": 7339 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1599 }1C0DDC98-8DAB-40B5-991F-9BDCD8B18F0F" + }, + "fileCreated": "2025-06-21T09:31:01.853642+00:00", + "fileLastModified": "2025-07-14T09:31:01.8536422+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8536423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8536409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101601 + }, + "imageDetail": { + "width": 8858, + "height": 7272 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40348, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1601 }86948EA3-DC7E-4078-8CE9-3FC720B15B94" + }, + "fileCreated": "2025-06-21T09:31:01.8570075+00:00", + "fileLastModified": "2025-07-14T09:31:01.8570077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8570066+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101603 + }, + "imageDetail": { + "width": 1297, + "height": 5164 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 91117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1603 }694B2433-8C1B-4CBE-9D18-44106A9B6E42" + }, + "fileCreated": "2025-06-21T09:31:01.8600885+00:00", + "fileLastModified": "2025-07-14T09:31:01.8600887+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8600888+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8600876+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101605 + }, + "imageDetail": { + "width": 1751, + "height": 9837 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53466, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1605 }2B9E1E61-745B-4180-9095-5DA032F98182" + }, + "fileCreated": "2025-06-21T09:31:01.864606+00:00", + "fileLastModified": "2025-07-14T09:31:01.8646062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8646048+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101606 + }, + "imageDetail": { + "width": 8110, + "height": 7631 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1606 }74F50E72-1EB0-4D7F-8870-751C37E3768C" + }, + "fileCreated": "2025-06-21T09:31:01.8663924+00:00", + "fileLastModified": "2025-07-14T09:31:01.8663929+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8663912+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101610 + }, + "imageDetail": { + "width": 4301, + "height": 9361 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1610 }E6603985-C8C9-4996-A2D2-52E9AF354CC4" + }, + "fileCreated": "2025-06-21T09:31:01.8728096+00:00", + "fileLastModified": "2025-07-14T09:31:01.8728098+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8728087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101612 + }, + "imageDetail": { + "width": 3520, + "height": 7672 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1612 }D36E8A18-69AA-4B28-9EAC-8ADBC895C2B6" + }, + "fileCreated": "2025-06-21T09:31:01.8763693+00:00", + "fileLastModified": "2025-07-14T09:31:01.8763695+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8763682+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101614 + }, + "imageDetail": { + "width": 7770, + "height": 7295 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72109, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1614 }10E09E0C-C3C1-4913-8BED-4D63E3C49C4C" + }, + "fileCreated": "2025-06-21T09:31:01.8798472+00:00", + "fileLastModified": "2025-07-14T09:31:01.8798474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8798461+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101617 + }, + "imageDetail": { + "width": 898, + "height": 9603 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62080, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1617 }8DFC4F2F-92A9-487A-A765-326C89AC926A" + }, + "fileCreated": "2025-06-21T09:31:01.8846227+00:00", + "fileLastModified": "2025-07-14T09:31:01.8846229+00:00", + "fileLastViewed": "2025-07-14T09:31:01.884623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8846218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101620 + }, + "imageDetail": { + "width": 7415, + "height": 3835 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1620 }CF3B1823-C1BF-4C70-A238-CCEB18661D41" + }, + "fileCreated": "2025-06-21T09:31:01.8897365+00:00", + "fileLastModified": "2025-07-14T09:31:01.8897367+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8897355+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101622 + }, + "imageDetail": { + "width": 942, + "height": 7004 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45790, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1622 }7173497D-2A34-4A1D-B899-0723053881D8" + }, + "fileCreated": "2025-06-21T09:31:01.8935352+00:00", + "fileLastModified": "2025-07-14T09:31:01.8935354+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8935356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8935338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101623 + }, + "imageDetail": { + "width": 4405, + "height": 6985 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80995, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1623 }B48C4A10-9E9B-4DDE-8D7D-C7F092C8357A" + }, + "fileCreated": "2025-06-21T09:31:01.8951485+00:00", + "fileLastModified": "2025-07-14T09:31:01.8951487+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8951488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8951473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101624 + }, + "imageDetail": { + "width": 9216, + "height": 2485 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 97052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1624 }CB710152-9D7A-41C0-A57D-3DA8232F2279" + }, + "fileCreated": "2025-06-21T09:31:01.8967043+00:00", + "fileLastModified": "2025-07-14T09:31:01.8967045+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8967034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101625 + }, + "imageDetail": { + "width": 9611, + "height": 8019 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1625 }7E643E20-F734-4C28-B917-9FABC81FFA9B" + }, + "fileCreated": "2025-06-21T09:31:01.8982737+00:00", + "fileLastModified": "2025-07-14T09:31:01.898274+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8982741+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8982727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101627 + }, + "imageDetail": { + "width": 5623, + "height": 6203 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47239, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1627 }F995C4F0-369C-4D92-8788-E1ABB14C6EF3" + }, + "fileCreated": "2025-06-21T09:31:01.9026945+00:00", + "fileLastModified": "2025-07-14T09:31:01.9026947+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9026934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101631 + }, + "imageDetail": { + "width": 1976, + "height": 2442 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 43639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1631 }0F701120-FB09-4938-832C-9BD31C599579" + }, + "fileCreated": "2025-06-21T09:31:01.9094185+00:00", + "fileLastModified": "2025-07-14T09:31:01.9094187+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9094175+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101632 + }, + "imageDetail": { + "width": 9730, + "height": 3698 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22231, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1632 }61C9EDEE-7C0A-4FCF-AF22-5ED047B8C324" + }, + "fileCreated": "2025-06-21T09:31:01.9109743+00:00", + "fileLastModified": "2025-07-14T09:31:01.9109746+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9109747+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9109732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101633 + }, + "imageDetail": { + "width": 960, + "height": 5147 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89055, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1633 }AB4AB9CF-C607-4ABE-B370-E17E71D1CC29" + }, + "fileCreated": "2025-06-21T09:31:01.912522+00:00", + "fileLastModified": "2025-07-14T09:31:01.9125222+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9125223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.912521+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101634 + }, + "imageDetail": { + "width": 3752, + "height": 6370 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68675, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1634 }B2CBAC34-515A-4D5C-B92F-87EA4ADD8DBF" + }, + "fileCreated": "2025-06-21T09:31:01.9150902+00:00", + "fileLastModified": "2025-07-14T09:31:01.9150904+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9150889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101635 + }, + "imageDetail": { + "width": 5588, + "height": 7887 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1635 }1705192D-477D-480A-85B0-5D96EFDB5463" + }, + "fileCreated": "2025-06-21T09:31:01.9167832+00:00", + "fileLastModified": "2025-07-14T09:31:01.9167834+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9167835+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9167821+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101641 + }, + "imageDetail": { + "width": 1337, + "height": 8472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1641 }11E789BB-5DC5-4272-B64F-6C265CEE3E6F" + }, + "fileCreated": "2025-06-21T09:31:01.9272941+00:00", + "fileLastModified": "2025-07-14T09:31:01.9272943+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9272944+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9272934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101642 + }, + "imageDetail": { + "width": 3350, + "height": 2331 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82812, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1642 }2984B3FF-9651-4477-8CB1-0AE418ED2D67" + }, + "fileCreated": "2025-06-21T09:31:01.9295305+00:00", + "fileLastModified": "2025-07-14T09:31:01.9295307+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9295295+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101649 + }, + "imageDetail": { + "width": 3121, + "height": 3729 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23382, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1649 }A230993B-082B-47FC-993E-DFCBFDB52034" + }, + "fileCreated": "2025-06-21T09:31:01.9426144+00:00", + "fileLastModified": "2025-07-14T09:31:01.9426146+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9426136+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101650 + }, + "imageDetail": { + "width": 9592, + "height": 6027 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71176, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1650 }1C0FEBBB-A9D9-445E-AF4C-3E16257BBFD2" + }, + "fileCreated": "2025-06-21T09:31:01.9442443+00:00", + "fileLastModified": "2025-07-14T09:31:01.9442446+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9442447+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9442436+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101651 + }, + "imageDetail": { + "width": 6198, + "height": 4956 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83317, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1651 }49533E51-534C-4563-BD0E-80F8570E204B" + }, + "fileCreated": "2025-06-21T09:31:01.9458857+00:00", + "fileLastModified": "2025-07-14T09:31:01.9458859+00:00", + "fileLastViewed": "2025-07-14T09:31:01.945886+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9458849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101652 + }, + "imageDetail": { + "width": 6283, + "height": 9581 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25926, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1652 }0FC67577-DAD9-40C5-8A5B-136683CE5014" + }, + "fileCreated": "2025-06-21T09:31:01.9474589+00:00", + "fileLastModified": "2025-07-14T09:31:01.9474591+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9474581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101653 + }, + "imageDetail": { + "width": 7006, + "height": 8180 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1653 }F2413FE5-EE6B-4B01-9FED-8D8924E9DFD1" + }, + "fileCreated": "2025-06-21T09:31:01.9491774+00:00", + "fileLastModified": "2025-07-14T09:31:01.9491776+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9491777+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9491766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101655 + }, + "imageDetail": { + "width": 6740, + "height": 8702 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59930, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1655 }91FF96C0-2D6E-4BD3-A2B7-049422B7CDA3" + }, + "fileCreated": "2025-06-21T09:31:01.952367+00:00", + "fileLastModified": "2025-07-14T09:31:01.9523673+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9523673+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9523663+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101658 + }, + "imageDetail": { + "width": 424, + "height": 5783 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1658 }A318A8D0-9EB4-4CFD-9EAE-489071BBA4FE" + }, + "fileCreated": "2025-06-21T09:31:01.9583999+00:00", + "fileLastModified": "2025-07-14T09:31:01.9584001+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9584002+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9583991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101660 + }, + "imageDetail": { + "width": 5134, + "height": 7577 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 41401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1660 }278326A5-42FA-4201-A95C-1201BC5BA480" + }, + "fileCreated": "2025-06-21T09:31:01.9615414+00:00", + "fileLastModified": "2025-07-14T09:31:01.9615416+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9615417+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9615406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101662 + }, + "imageDetail": { + "width": 3531, + "height": 5011 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44362, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1662 }43DCAEC4-D91B-4A01-A7DE-CEE33519FC03" + }, + "fileCreated": "2025-06-21T09:31:01.9645412+00:00", + "fileLastModified": "2025-07-14T09:31:01.9645414+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9645415+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9645406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101663 + }, + "imageDetail": { + "width": 551, + "height": 2289 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83163, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1663 }DBD1244F-85C7-46CD-86AA-313B76972AC4" + }, + "fileCreated": "2025-06-21T09:31:01.9667654+00:00", + "fileLastModified": "2025-07-14T09:31:01.9667656+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9667657+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9667647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101666 + }, + "imageDetail": { + "width": 8556, + "height": 2822 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 38461, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1666 }891B9412-8D59-425B-B072-2AF063AB5C98" + }, + "fileCreated": "2025-06-21T09:31:01.9735011+00:00", + "fileLastModified": "2025-07-14T09:31:01.9735014+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9735016+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9735001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101669 + }, + "imageDetail": { + "width": 4031, + "height": 3614 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86096, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1669 }6D1067E1-E8D6-4C42-9E95-537B1759C938" + }, + "fileCreated": "2025-06-21T09:31:01.9786467+00:00", + "fileLastModified": "2025-07-14T09:31:01.9786469+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.978646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101672 + }, + "imageDetail": { + "width": 1589, + "height": 6454 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41188, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1672 }8E332BCF-B8D9-47A2-B097-99879573FC9B" + }, + "fileCreated": "2025-06-21T09:31:01.9846369+00:00", + "fileLastModified": "2025-07-14T09:31:01.9846371+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9846362+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101673 + }, + "imageDetail": { + "width": 418, + "height": 2858 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1673 }1CF6A60F-D48F-4684-8520-3D127AE97795" + }, + "fileCreated": "2025-06-21T09:31:01.9868334+00:00", + "fileLastModified": "2025-07-14T09:31:01.9868337+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9868338+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9868325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101675 + }, + "imageDetail": { + "width": 4948, + "height": 9117 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1675 }FF1D1971-B8A1-41D2-98D3-480BE4A5146B" + }, + "fileCreated": "2025-06-21T09:31:01.9904033+00:00", + "fileLastModified": "2025-07-14T09:31:01.9904036+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9904027+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101677 + }, + "imageDetail": { + "width": 403, + "height": 5671 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90622, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1677 }207600A3-BF9B-40EB-8815-234812B3ECC4" + }, + "fileCreated": "2025-06-21T09:31:01.9946241+00:00", + "fileLastModified": "2025-07-14T09:31:01.9946244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9946233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101680 + }, + "imageDetail": { + "width": 9029, + "height": 3935 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1680 }CCF2A5D1-C4E7-4A36-BF65-CA9CF564AE8F" + }, + "fileCreated": "2025-06-21T09:31:02.0002245+00:00", + "fileLastModified": "2025-07-14T09:31:02.0002248+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0002249+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0002238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101681 + }, + "imageDetail": { + "width": 9555, + "height": 5816 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96839, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1681 }EFD1C05F-6365-47DB-897B-07BBDB3333FB" + }, + "fileCreated": "2025-06-21T09:31:02.0022673+00:00", + "fileLastModified": "2025-07-14T09:31:02.0022675+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0022666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101683 + }, + "imageDetail": { + "width": 4712, + "height": 7517 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35466, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1683 }E18FF622-73BB-4EE0-84EC-1FAE584FD7FB" + }, + "fileCreated": "2025-06-21T09:31:02.0057232+00:00", + "fileLastModified": "2025-07-14T09:31:02.0057234+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0057235+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0057225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101684 + }, + "imageDetail": { + "width": 6153, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35981, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1684 }C2638B55-1544-4AE9-BCAA-D44CCD1BAC11" + }, + "fileCreated": "2025-06-21T09:31:02.0079759+00:00", + "fileLastModified": "2025-07-14T09:31:02.0079761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0079751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101685 + }, + "imageDetail": { + "width": 9906, + "height": 5115 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 68424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1685 }A7738AC0-76DF-4D06-AE0F-CBAD6A57A39B" + }, + "fileCreated": "2025-06-21T09:31:02.0096852+00:00", + "fileLastModified": "2025-07-14T09:31:02.0096855+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0096856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0096845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101690 + }, + "imageDetail": { + "width": 402, + "height": 9309 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1690 }37489DE7-C321-431A-814A-E16FB309EE8F" + }, + "fileCreated": "2025-06-21T09:31:02.0187497+00:00", + "fileLastModified": "2025-07-14T09:31:02.0187499+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0187489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101694 + }, + "imageDetail": { + "width": 3905, + "height": 8099 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29967, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1694 }AE72AB48-F47E-411C-BF3C-09BA48DA85CD" + }, + "fileCreated": "2025-06-21T09:31:02.0259793+00:00", + "fileLastModified": "2025-07-14T09:31:02.0259795+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0259796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0259787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101695 + }, + "imageDetail": { + "width": 811, + "height": 6883 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1695 }09547E01-C542-48AC-9537-1C2A940893FF" + }, + "fileCreated": "2025-06-21T09:31:02.02777+00:00", + "fileLastModified": "2025-07-14T09:31:02.0277702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0277693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101696 + }, + "imageDetail": { + "width": 1180, + "height": 6682 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83851, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1696 }EEF66121-1BF7-462C-8ABE-9D7D25377383" + }, + "fileCreated": "2025-06-21T09:31:02.0294964+00:00", + "fileLastModified": "2025-07-14T09:31:02.0294966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0294861+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101700 + }, + "imageDetail": { + "width": 2757, + "height": 8763 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1700 }3FCADFF7-DCE3-404A-9C2C-C99A9084893C" + }, + "fileCreated": "2025-06-21T09:31:02.0376964+00:00", + "fileLastModified": "2025-07-14T09:31:02.0376966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0376952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101702 + }, + "imageDetail": { + "width": 3668, + "height": 7226 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1702 }536ACDF9-7021-43BA-9663-53A6FE7C3CB0" + }, + "fileCreated": "2025-06-21T09:31:02.0412451+00:00", + "fileLastModified": "2025-07-14T09:31:02.0412453+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0412454+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.041244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101703 + }, + "imageDetail": { + "width": 6553, + "height": 5192 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53956, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1703 }1260AA81-C4D7-4CB4-8E73-6851116F456B" + }, + "fileCreated": "2025-06-21T09:31:02.042894+00:00", + "fileLastModified": "2025-07-14T09:31:02.0428942+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0428943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0428933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101709 + }, + "imageDetail": { + "width": 3929, + "height": 3724 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59480, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1709 }E85017C4-005C-4FFA-908E-3E7AD2270B6C" + }, + "fileCreated": "2025-06-21T09:31:02.0541338+00:00", + "fileLastModified": "2025-07-14T09:31:02.054134+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0541327+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101712 + }, + "imageDetail": { + "width": 4275, + "height": 9200 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1712 }C499905B-79DC-4BB4-A37F-CB0C8E5EEE2B" + }, + "fileCreated": "2025-06-21T09:31:02.0603531+00:00", + "fileLastModified": "2025-07-14T09:31:02.0603533+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0603534+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0603523+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101713 + }, + "imageDetail": { + "width": 8214, + "height": 5802 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61477, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1713 }48392511-286A-4950-9343-7B0D1D60F1C1" + }, + "fileCreated": "2025-06-21T09:31:02.0620058+00:00", + "fileLastModified": "2025-07-14T09:31:02.062006+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0620051+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101714 + }, + "imageDetail": { + "width": 5319, + "height": 8814 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54620, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1714 }518BD0C2-94B7-4221-A348-158D70CE2B5A" + }, + "fileCreated": "2025-06-21T09:31:02.0640685+00:00", + "fileLastModified": "2025-07-14T09:31:02.0640687+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0640661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101716 + }, + "imageDetail": { + "width": 6670, + "height": 9986 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 41463, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1716 }21B41DEA-B868-43DE-A98F-2480831F4282" + }, + "fileCreated": "2025-06-21T09:31:02.0676807+00:00", + "fileLastModified": "2025-07-14T09:31:02.0676809+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0676799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101718 + }, + "imageDetail": { + "width": 597, + "height": 6123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1718 }28CB8747-BCEB-47DD-B3A7-89AE7BE75322" + }, + "fileCreated": "2025-06-21T09:31:02.071801+00:00", + "fileLastModified": "2025-07-14T09:31:02.0718013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0718004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101720 + }, + "imageDetail": { + "width": 3084, + "height": 7999 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 66684, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1720 }1FEC5161-0EFA-4320-8AC4-6F2412A453A5" + }, + "fileCreated": "2025-06-21T09:31:02.0752192+00:00", + "fileLastModified": "2025-07-14T09:31:02.0752195+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0752196+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0752185+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101721 + }, + "imageDetail": { + "width": 8527, + "height": 5969 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23790, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1721 }C0FD0D20-68C1-4C68-993B-219DDBEE4EC5" + }, + "fileCreated": "2025-06-21T09:31:02.076888+00:00", + "fileLastModified": "2025-07-14T09:31:02.0768882+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0768883+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0768874+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101724 + }, + "imageDetail": { + "width": 7041, + "height": 9445 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45268, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1724 }68E08DBC-A5EC-46B4-B6B9-AA303C162763" + }, + "fileCreated": "2025-06-21T09:31:02.0822856+00:00", + "fileLastModified": "2025-07-14T09:31:02.0822858+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0822847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101725 + }, + "imageDetail": { + "width": 3915, + "height": 3767 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67516, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1725 }26700C9D-148E-412E-BFEE-D60D78E08664" + }, + "fileCreated": "2025-06-21T09:31:02.0839364+00:00", + "fileLastModified": "2025-07-14T09:31:02.0839366+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0839357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101726 + }, + "imageDetail": { + "width": 792, + "height": 4358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96356, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1726 }13B4C8F0-00F1-4630-9DAE-A190C856E95A" + }, + "fileCreated": "2025-06-21T09:31:02.0855623+00:00", + "fileLastModified": "2025-07-14T09:31:02.0855625+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0855616+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101727 + }, + "imageDetail": { + "width": 1581, + "height": 3729 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41542, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1727 }815E86BF-3896-4296-BCB5-36AC47685C41" + }, + "fileCreated": "2025-06-21T09:31:02.0871266+00:00", + "fileLastModified": "2025-07-14T09:31:02.0871268+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0871268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0871259+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101731 + }, + "imageDetail": { + "width": 5086, + "height": 6197 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49800, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1731 }1470D080-5A14-45FF-ADF2-8E7828DFC929" + }, + "fileCreated": "2025-06-21T09:31:02.093959+00:00", + "fileLastModified": "2025-07-14T09:31:02.0939592+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0939583+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101732 + }, + "imageDetail": { + "width": 1624, + "height": 5050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45751, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1732 }38CE82CD-D56F-46CE-B58A-FD04F63F6111" + }, + "fileCreated": "2025-06-21T09:31:02.0962394+00:00", + "fileLastModified": "2025-07-14T09:31:02.0962397+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0962399+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0962385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101733 + }, + "imageDetail": { + "width": 7020, + "height": 2391 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54128, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1733 }B8C51B35-5567-49EF-A073-8F55DA50BE3F" + }, + "fileCreated": "2025-06-21T09:31:02.0980559+00:00", + "fileLastModified": "2025-07-14T09:31:02.0980562+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.098055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101735 + }, + "imageDetail": { + "width": 8677, + "height": 5132 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1735 }879AF7B5-134C-4F74-B0D8-C7B0E82797EC" + }, + "fileCreated": "2025-06-21T09:31:02.1012752+00:00", + "fileLastModified": "2025-07-14T09:31:02.1012755+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1012746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101736 + }, + "imageDetail": { + "width": 2466, + "height": 5340 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62170, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1736 }64CCBE16-1D5D-424F-B630-1E897AA3F8FC" + }, + "fileCreated": "2025-06-21T09:31:02.1034809+00:00", + "fileLastModified": "2025-07-14T09:31:02.1034811+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1034803+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101737 + }, + "imageDetail": { + "width": 4105, + "height": 8974 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59320, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1737 }C943F625-C57B-447C-8243-D26FF965EE77" + }, + "fileCreated": "2025-06-21T09:31:02.1050588+00:00", + "fileLastModified": "2025-07-14T09:31:02.105059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1050581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101738 + }, + "imageDetail": { + "width": 5792, + "height": 3494 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81316, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1738 }5748DE4F-94EF-4600-850D-EABB66953956" + }, + "fileCreated": "2025-06-21T09:31:02.1067312+00:00", + "fileLastModified": "2025-07-14T09:31:02.1067314+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1067315+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1067304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101742 + }, + "imageDetail": { + "width": 6229, + "height": 5605 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1742 }C2FA1EE7-998F-4734-B86E-580FA3B2EBDD" + }, + "fileCreated": "2025-06-21T09:31:02.114024+00:00", + "fileLastModified": "2025-07-14T09:31:02.1140243+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1140244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1140234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101743 + }, + "imageDetail": { + "width": 615, + "height": 7072 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87820, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1743 }9215505A-7689-4232-A5AC-89CFF36E08A8" + }, + "fileCreated": "2025-06-21T09:31:02.1162766+00:00", + "fileLastModified": "2025-07-14T09:31:02.1162783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1162759+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101745 + }, + "imageDetail": { + "width": 9098, + "height": 7101 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 68229, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1745 }D4302B2F-E3DF-4922-9886-17C8BAE2DA4A" + }, + "fileCreated": "2025-06-21T09:31:02.1198348+00:00", + "fileLastModified": "2025-07-14T09:31:02.1198351+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1198341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101747 + }, + "imageDetail": { + "width": 8281, + "height": 8617 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59153, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1747 }06A8A426-6FBB-442B-965B-C107E991996C" + }, + "fileCreated": "2025-06-21T09:31:02.1230621+00:00", + "fileLastModified": "2025-07-14T09:31:02.1230623+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1230624+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1230614+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101749 + }, + "imageDetail": { + "width": 4349, + "height": 8135 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47167, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1749 }3765C90F-C875-4CE6-9355-ABC8FCED0B65" + }, + "fileCreated": "2025-06-21T09:31:02.1276543+00:00", + "fileLastModified": "2025-07-14T09:31:02.1276546+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1276534+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101750 + }, + "imageDetail": { + "width": 1918, + "height": 5293 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 60887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1750 }99EBE7BB-E477-4FB0-BF71-AC3ED2EF951D" + }, + "fileCreated": "2025-06-21T09:31:02.1297099+00:00", + "fileLastModified": "2025-07-14T09:31:02.1297101+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1297102+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.129709+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101751 + }, + "imageDetail": { + "width": 9790, + "height": 9305 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32359, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1751 }92C0FC0E-D068-4E43-A9A3-D87BDD349FFB" + }, + "fileCreated": "2025-06-21T09:31:02.1314627+00:00", + "fileLastModified": "2025-07-14T09:31:02.1314629+00:00", + "fileLastViewed": "2025-07-14T09:31:02.131463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1314617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101752 + }, + "imageDetail": { + "width": 9347, + "height": 2444 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92235, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1752 }171966DD-620C-4802-BB1D-F53953EE935D" + }, + "fileCreated": "2025-06-21T09:31:02.1331779+00:00", + "fileLastModified": "2025-07-14T09:31:02.1331782+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1331783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1331769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101754 + }, + "imageDetail": { + "width": 9341, + "height": 7846 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1754 }7B95F41E-B70A-4787-AE01-4453EC017762" + }, + "fileCreated": "2025-06-21T09:31:02.1364973+00:00", + "fileLastModified": "2025-07-14T09:31:02.1364975+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1364976+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1364966+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101761 + }, + "imageDetail": { + "width": 5778, + "height": 6981 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24487, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1761 }406385F2-1418-4616-B8AC-541143C41206" + }, + "fileCreated": "2025-06-21T09:31:02.15569+00:00", + "fileLastModified": "2025-07-14T09:31:02.1556904+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1556883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101763 + }, + "imageDetail": { + "width": 7924, + "height": 3098 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1763 }3DA9B9BD-EA8F-4101-81C1-D5A413B14EC9" + }, + "fileCreated": "2025-06-21T09:31:02.1623117+00:00", + "fileLastModified": "2025-07-14T09:31:02.162312+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1623107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101764 + }, + "imageDetail": { + "width": 1192, + "height": 8747 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35893, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1764 }1337DFCA-3C15-42D1-9B3A-8F4490A7CCE1" + }, + "fileCreated": "2025-06-21T09:31:02.1646189+00:00", + "fileLastModified": "2025-07-14T09:31:02.1646192+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1646178+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101765 + }, + "imageDetail": { + "width": 6899, + "height": 5852 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1765 }FDC92566-5CA3-4F3D-B3FF-7E405EB3B7E9" + }, + "fileCreated": "2025-06-21T09:31:02.1674932+00:00", + "fileLastModified": "2025-07-14T09:31:02.1674936+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1674938+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1674911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101766 + }, + "imageDetail": { + "width": 8952, + "height": 7183 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1766 }379486EB-3DB3-4432-9066-F5BF9C522C34" + }, + "fileCreated": "2025-06-21T09:31:02.1701362+00:00", + "fileLastModified": "2025-07-14T09:31:02.1701368+00:00", + "fileLastViewed": "2025-07-14T09:31:02.170137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1701348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101767 + }, + "imageDetail": { + "width": 1677, + "height": 8520 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98048, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1767 }2012AF19-9DB5-4699-9938-150A5E3571A8" + }, + "fileCreated": "2025-06-21T09:31:02.1734996+00:00", + "fileLastModified": "2025-07-14T09:31:02.1734999+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1734987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101768 + }, + "imageDetail": { + "width": 785, + "height": 3370 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92363, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1768 }88F14329-195D-4FEC-98FB-A3C63646A3EB" + }, + "fileCreated": "2025-06-21T09:31:02.1753423+00:00", + "fileLastModified": "2025-07-14T09:31:02.1753426+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1753427+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1753414+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101771 + }, + "imageDetail": { + "width": 4684, + "height": 7744 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1771 }6379BFF9-A416-4DC0-B2B0-AA0A26EF8B3B" + }, + "fileCreated": "2025-06-21T09:31:02.181209+00:00", + "fileLastModified": "2025-07-14T09:31:02.1812092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1812081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101772 + }, + "imageDetail": { + "width": 158, + "height": 4660 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21359, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1772 }3AB8F473-142D-461F-96BC-D48626C3E5D2" + }, + "fileCreated": "2025-06-21T09:31:02.1830754+00:00", + "fileLastModified": "2025-07-14T09:31:02.1830756+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1830757+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1830746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101773 + }, + "imageDetail": { + "width": 7905, + "height": 7530 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47153, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1773 }B9D68E0D-AEB5-43BA-8D70-50571EE23D25" + }, + "fileCreated": "2025-06-21T09:31:02.1848733+00:00", + "fileLastModified": "2025-07-14T09:31:02.1848735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1848726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101776 + }, + "imageDetail": { + "width": 1089, + "height": 9375 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1776 }B8D7E55B-AC23-4820-BE27-94077CA3E434" + }, + "fileCreated": "2025-06-21T09:31:02.1909961+00:00", + "fileLastModified": "2025-07-14T09:31:02.1909964+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1909952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101777 + }, + "imageDetail": { + "width": 3933, + "height": 4895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42966, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1777 }A2B4E5D0-49C7-44D4-8832-C6E6BE07DE60" + }, + "fileCreated": "2025-06-21T09:31:02.1929744+00:00", + "fileLastModified": "2025-07-14T09:31:02.1929748+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1929749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1929738+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101779 + }, + "imageDetail": { + "width": 9004, + "height": 6745 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54148, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1779 }848F833F-8C59-48AF-AF10-F85E4BA2FD21" + }, + "fileCreated": "2025-06-21T09:31:02.1966055+00:00", + "fileLastModified": "2025-07-14T09:31:02.1966057+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1966058+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1966034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101780 + }, + "imageDetail": { + "width": 5405, + "height": 4833 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50383, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1780 }66548FBB-7492-48F4-B7E5-D15BD0023E45" + }, + "fileCreated": "2025-06-21T09:31:02.1993291+00:00", + "fileLastModified": "2025-07-14T09:31:02.1993294+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1993295+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1993284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101781 + }, + "imageDetail": { + "width": 8384, + "height": 5336 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29142, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1781 }53CD35E6-2D3B-495E-A935-A8C5436C66BE" + }, + "fileCreated": "2025-06-21T09:31:02.2011179+00:00", + "fileLastModified": "2025-07-14T09:31:02.2011181+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2011182+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2011171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101782 + }, + "imageDetail": { + "width": 8344, + "height": 6728 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91340, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1782 }AED406B4-18FB-47E0-BF00-BD5A9D4090B3" + }, + "fileCreated": "2025-06-21T09:31:02.2029037+00:00", + "fileLastModified": "2025-07-14T09:31:02.202904+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2029041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2028816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101783 + }, + "imageDetail": { + "width": 1874, + "height": 6904 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28136, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1783 }BF3537AE-D41B-4042-8C5C-1F69CC5C25B7" + }, + "fileCreated": "2025-06-21T09:31:02.2052028+00:00", + "fileLastModified": "2025-07-14T09:31:02.2052031+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2052033+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.205202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101786 + }, + "imageDetail": { + "width": 2489, + "height": 3044 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1786 }859D5631-DB03-4876-9F95-F1DB0BCD432F" + }, + "fileCreated": "2025-06-21T09:31:02.2110792+00:00", + "fileLastModified": "2025-07-14T09:31:02.2110795+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2110796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2110784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101788 + }, + "imageDetail": { + "width": 2175, + "height": 7790 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60127, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1788 }2E4143AF-67D6-4FF8-9DAD-74DFF4C9C0CA" + }, + "fileCreated": "2025-06-21T09:31:02.2148505+00:00", + "fileLastModified": "2025-07-14T09:31:02.2148507+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2148508+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2148498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101789 + }, + "imageDetail": { + "width": 134, + "height": 5647 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33295, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1789 }E2398489-AB1F-47F2-A0CA-9D21A4693C9E" + }, + "fileCreated": "2025-06-21T09:31:02.21664+00:00", + "fileLastModified": "2025-07-14T09:31:02.2166402+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2166403+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2166392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101790 + }, + "imageDetail": { + "width": 6846, + "height": 4993 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1790 }8D0C04DD-7EA4-409C-A687-EF9F7DECE6D6" + }, + "fileCreated": "2025-06-21T09:31:02.2184088+00:00", + "fileLastModified": "2025-07-14T09:31:02.218409+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2184091+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.218408+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101793 + }, + "imageDetail": { + "width": 8266, + "height": 4043 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21662, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1793 }B715F306-1552-4139-B8BD-4B2D17BD6964" + }, + "fileCreated": "2025-06-21T09:31:02.2244118+00:00", + "fileLastModified": "2025-07-14T09:31:02.224412+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2244121+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.224411+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101797 + }, + "imageDetail": { + "width": 5966, + "height": 7771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24958, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1797 }7388C675-3780-494D-B329-D219963AAE07" + }, + "fileCreated": "2025-06-21T09:31:02.231912+00:00", + "fileLastModified": "2025-07-14T09:31:02.2319122+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2319123+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2319112+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101799 + }, + "imageDetail": { + "width": 7149, + "height": 5499 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 57731, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1799 }103E089F-E9DC-4D6F-BC49-B1660410B308" + }, + "fileCreated": "2025-06-21T09:31:02.235429+00:00", + "fileLastModified": "2025-07-14T09:31:02.2354292+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2354293+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2354281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101802 + }, + "imageDetail": { + "width": 2089, + "height": 4292 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54199, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1802 }AAE5E1A7-7B12-460A-BB5A-C7C9B9CDD20E" + }, + "fileCreated": "2025-06-21T09:31:02.2412105+00:00", + "fileLastModified": "2025-07-14T09:31:02.2412107+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2412094+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101804 + }, + "imageDetail": { + "width": 7762, + "height": 8634 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80883, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1804 }B4C082E5-7CFE-4FE3-843A-12806676DA5D" + }, + "fileCreated": "2025-06-21T09:31:02.2454738+00:00", + "fileLastModified": "2025-07-14T09:31:02.2454741+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2454731+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101806 + }, + "imageDetail": { + "width": 7754, + "height": 4018 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45345, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1806 }FA1BE8C9-F5F0-41F0-BC46-01EFE471CAB1" + }, + "fileCreated": "2025-06-21T09:31:02.2490595+00:00", + "fileLastModified": "2025-07-14T09:31:02.2490597+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2490598+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2490587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101811 + }, + "imageDetail": { + "width": 7000, + "height": 4211 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76467, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1811 }D0E3B791-D357-4BB9-AD79-B286061926CE" + }, + "fileCreated": "2025-06-21T09:31:02.2594001+00:00", + "fileLastModified": "2025-07-14T09:31:02.2594004+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2593993+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101815 + }, + "imageDetail": { + "width": 7031, + "height": 3622 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63979, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1815 }744BE455-FD84-4CD4-8972-0FE513FE6DDA" + }, + "fileCreated": "2025-06-21T09:31:02.2677+00:00", + "fileLastModified": "2025-07-14T09:31:02.2677003+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2677004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2676992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101816 + }, + "imageDetail": { + "width": 6309, + "height": 2610 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38074, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1816 }5EACB594-1BC1-4741-BD25-7C295FC96395" + }, + "fileCreated": "2025-06-21T09:31:02.2695491+00:00", + "fileLastModified": "2025-07-14T09:31:02.2695495+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2695496+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2695482+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101820 + }, + "imageDetail": { + "width": 7628, + "height": 9611 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1820 }5C2264CA-B4DE-4FC1-A324-A2A9FAE21944" + }, + "fileCreated": "2025-06-21T09:31:02.2775845+00:00", + "fileLastModified": "2025-07-14T09:31:02.2775847+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2775848+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2775837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101821 + }, + "imageDetail": { + "width": 7732, + "height": 5932 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1821 }0CE7B4B5-CB5C-4C36-9555-025FB1DDA50B" + }, + "fileCreated": "2025-06-21T09:31:02.2799821+00:00", + "fileLastModified": "2025-07-14T09:31:02.2799823+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2799811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101823 + }, + "imageDetail": { + "width": 1721, + "height": 5441 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36318, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1823 }1DC87763-4CCE-409C-BF3E-718301600791" + }, + "fileCreated": "2025-06-21T09:31:02.2843478+00:00", + "fileLastModified": "2025-07-14T09:31:02.2843481+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2843471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101825 + }, + "imageDetail": { + "width": 9330, + "height": 6711 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1825 }9080D2EC-A253-4D8F-92F8-53E6FB017CD6" + }, + "fileCreated": "2025-06-21T09:31:02.2880729+00:00", + "fileLastModified": "2025-07-14T09:31:02.2880731+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2880733+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2880721+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101827 + }, + "imageDetail": { + "width": 6090, + "height": 7781 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 76097, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1827 }0E29DE2C-6D0A-4DEF-B063-0A4F6863DCE8" + }, + "fileCreated": "2025-06-21T09:31:02.2920877+00:00", + "fileLastModified": "2025-07-14T09:31:02.2920879+00:00", + "fileLastViewed": "2025-07-14T09:31:02.292088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.292087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101828 + }, + "imageDetail": { + "width": 9883, + "height": 3053 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1828 }C1E33176-0AC3-4245-8044-868D4D169431" + }, + "fileCreated": "2025-06-21T09:31:02.2938881+00:00", + "fileLastModified": "2025-07-14T09:31:02.2938883+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.293887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101832 + }, + "imageDetail": { + "width": 3649, + "height": 2210 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1832 }811630EB-8C79-4F78-9E15-91881A9C8773" + }, + "fileCreated": "2025-06-21T09:31:02.3021558+00:00", + "fileLastModified": "2025-07-14T09:31:02.3021561+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3021547+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101834 + }, + "imageDetail": { + "width": 1518, + "height": 8108 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84392, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1834 }BC7E1D2E-881F-4874-B42E-153BE5A2268B" + }, + "fileCreated": "2025-06-21T09:31:02.3056723+00:00", + "fileLastModified": "2025-07-14T09:31:02.3056725+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3056726+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3056712+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101836 + }, + "imageDetail": { + "width": 5481, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1836 }156D0E15-6981-4501-994C-2E76A9E38BE4" + }, + "fileCreated": "2025-06-21T09:31:02.3094005+00:00", + "fileLastModified": "2025-07-14T09:31:02.3094007+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3094008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3093997+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101838 + }, + "imageDetail": { + "width": 6169, + "height": 4909 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1838 }0AF3997A-998C-4659-BF9A-00A66DDEE352" + }, + "fileCreated": "2025-06-21T09:31:02.3138126+00:00", + "fileLastModified": "2025-07-14T09:31:02.3138128+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3138116+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101839 + }, + "imageDetail": { + "width": 507, + "height": 7826 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1839 }F61E04D0-2556-46B3-936A-3FE91F4A0BA6" + }, + "fileCreated": "2025-06-21T09:31:02.3156062+00:00", + "fileLastModified": "2025-07-14T09:31:02.3156064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3156053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101840 + }, + "imageDetail": { + "width": 7682, + "height": 7589 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1840 }D19A57C6-1BA4-43B2-990A-1A9666507ED6" + }, + "fileCreated": "2025-06-21T09:31:02.3173668+00:00", + "fileLastModified": "2025-07-14T09:31:02.3173671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3173661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101841 + }, + "imageDetail": { + "width": 2025, + "height": 3661 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36732, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1841 }ECAD29E8-3C9F-4C0B-B738-85E65EED5118" + }, + "fileCreated": "2025-06-21T09:31:02.3191745+00:00", + "fileLastModified": "2025-07-14T09:31:02.3191747+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3191737+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101846 + }, + "imageDetail": { + "width": 7585, + "height": 7194 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87607, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1846 }650968A5-57C0-4CBD-87D1-D23EEFE8FF35" + }, + "fileCreated": "2025-06-21T09:31:02.3288268+00:00", + "fileLastModified": "2025-07-14T09:31:02.3288271+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3288272+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3288256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101847 + }, + "imageDetail": { + "width": 8299, + "height": 4177 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97319, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1847 }674105B3-3D99-4965-AC3B-583889CA4713" + }, + "fileCreated": "2025-06-21T09:31:02.3307898+00:00", + "fileLastModified": "2025-07-14T09:31:02.33079+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3307889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101850 + }, + "imageDetail": { + "width": 6517, + "height": 9229 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 40606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1850 }8DF520C4-C977-47BB-A588-0CDD8D0F122F" + }, + "fileCreated": "2025-06-21T09:31:02.336868+00:00", + "fileLastModified": "2025-07-14T09:31:02.3368682+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3368683+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3368673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101852 + }, + "imageDetail": { + "width": 7363, + "height": 2614 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 33779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1852 }725D2335-BC85-4B35-9279-E816D90C74DF" + }, + "fileCreated": "2025-06-21T09:31:02.3405733+00:00", + "fileLastModified": "2025-07-14T09:31:02.3405735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3405725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101853 + }, + "imageDetail": { + "width": 4740, + "height": 5961 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26379, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1853 }9D232D5C-9BA8-49FD-A353-3CA2E7225FE4" + }, + "fileCreated": "2025-06-21T09:31:02.3423952+00:00", + "fileLastModified": "2025-07-14T09:31:02.3423953+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3423955+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3423945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101857 + }, + "imageDetail": { + "width": 6645, + "height": 7968 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1857 }06CF4F46-BF4A-461D-8FD7-B4D8D13BF982" + }, + "fileCreated": "2025-06-21T09:31:02.3517687+00:00", + "fileLastModified": "2025-07-14T09:31:02.3517689+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3517692+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3517679+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101861 + }, + "imageDetail": { + "width": 4376, + "height": 9660 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52709, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1861 }1D94BF13-9A35-44E9-844B-059EC911D1E9" + }, + "fileCreated": "2025-06-21T09:31:02.3603391+00:00", + "fileLastModified": "2025-07-14T09:31:02.3603394+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.360338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101864 + }, + "imageDetail": { + "width": 9421, + "height": 4754 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41030, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1864 }7BEE8A2A-E9B0-442A-AED9-19C06091315E" + }, + "fileCreated": "2025-06-21T09:31:02.3661949+00:00", + "fileLastModified": "2025-07-14T09:31:02.3661952+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.366194+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101868 + }, + "imageDetail": { + "width": 2038, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1868 }58448D8D-FB72-4499-B771-A12BCE3A68FF" + }, + "fileCreated": "2025-06-21T09:31:02.3744663+00:00", + "fileLastModified": "2025-07-14T09:31:02.3744666+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3744667+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3744652+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101869 + }, + "imageDetail": { + "width": 5387, + "height": 4501 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44371, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1869 }10F67327-ABAC-4288-BBA5-EBD53F9C55F6" + }, + "fileCreated": "2025-06-21T09:31:02.3768695+00:00", + "fileLastModified": "2025-07-14T09:31:02.3768698+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3768699+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3768687+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101870 + }, + "imageDetail": { + "width": 1916, + "height": 5769 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95427, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1870 }990C5696-889E-44C5-BD8A-4117EAB44D93" + }, + "fileCreated": "2025-06-21T09:31:02.3786619+00:00", + "fileLastModified": "2025-07-14T09:31:02.3786622+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3786622+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3786611+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101871 + }, + "imageDetail": { + "width": 3768, + "height": 4254 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43681, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1871 }6785BA35-8EE4-4593-A28C-FAB73D15340B" + }, + "fileCreated": "2025-06-21T09:31:02.3810163+00:00", + "fileLastModified": "2025-07-14T09:31:02.3810165+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3810166+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3810152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101874 + }, + "imageDetail": { + "width": 4074, + "height": 8050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1874 }50A6E285-7FDB-442E-AEFD-21633D13EAD4" + }, + "fileCreated": "2025-06-21T09:31:02.3868123+00:00", + "fileLastModified": "2025-07-14T09:31:02.3868125+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3868115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101875 + }, + "imageDetail": { + "width": 638, + "height": 5738 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1875 }7C0D66C7-68F5-43D5-9C73-08DD14654904" + }, + "fileCreated": "2025-06-21T09:31:02.3886584+00:00", + "fileLastModified": "2025-07-14T09:31:02.388659+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3886591+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3886572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101876 + }, + "imageDetail": { + "width": 1348, + "height": 8558 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1876 }1E607F39-200C-4FFA-956E-E034BB7BB600" + }, + "fileCreated": "2025-06-21T09:31:02.391793+00:00", + "fileLastModified": "2025-07-14T09:31:02.3917933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3917911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101878 + }, + "imageDetail": { + "width": 3371, + "height": 3354 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67046, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1878 }E300C167-E466-4D79-9C64-F10772007D03" + }, + "fileCreated": "2025-06-21T09:31:02.3956758+00:00", + "fileLastModified": "2025-07-14T09:31:02.3956761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3956751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101880 + }, + "imageDetail": { + "width": 6987, + "height": 4033 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88169, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1880 }E3572030-D76B-400F-9FC9-5DCDB3AB656B" + }, + "fileCreated": "2025-06-21T09:31:02.3993522+00:00", + "fileLastModified": "2025-07-14T09:31:02.3993524+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3993515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101884 + }, + "imageDetail": { + "width": 5792, + "height": 7426 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1884 }61036A1F-411B-492C-B8F3-B36B248B2522" + }, + "fileCreated": "2025-06-21T09:31:02.4075016+00:00", + "fileLastModified": "2025-07-14T09:31:02.4075018+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4075008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101891 + }, + "imageDetail": { + "width": 757, + "height": 6103 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84157, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1891 }261F4271-A33A-4DC6-9BD2-92C62865FBA2" + }, + "fileCreated": "2025-06-21T09:31:02.4218426+00:00", + "fileLastModified": "2025-07-14T09:31:02.4218428+00:00", + "fileLastViewed": "2025-07-14T09:31:02.421843+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4218412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101892 + }, + "imageDetail": { + "width": 4128, + "height": 6322 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 51655, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1892 }5CCF4734-B574-458F-8DD0-023B7BC4CC8A" + }, + "fileCreated": "2025-06-21T09:31:02.424255+00:00", + "fileLastModified": "2025-07-14T09:31:02.4242553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4242542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101896 + }, + "imageDetail": { + "width": 7193, + "height": 2936 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68373, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1896 }1E6096FE-7AA4-42D6-BD17-CD1C6F996B74" + }, + "fileCreated": "2025-06-21T09:31:02.4318962+00:00", + "fileLastModified": "2025-07-14T09:31:02.4318964+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4318954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101897 + }, + "imageDetail": { + "width": 5840, + "height": 5871 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 97043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1897 }C28DFB79-92E1-4448-8912-21A632A8E375" + }, + "fileCreated": "2025-06-21T09:31:02.4342253+00:00", + "fileLastModified": "2025-07-14T09:31:02.4342255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4342246+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101899 + }, + "imageDetail": { + "width": 6798, + "height": 9665 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1899 }0324BB0C-79BE-4A83-836F-78DE1CA96012" + }, + "fileCreated": "2025-06-21T09:31:02.4384483+00:00", + "fileLastModified": "2025-07-14T09:31:02.4384485+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.438447+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101900 + }, + "imageDetail": { + "width": 4280, + "height": 2607 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83581, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1900 }415145C5-E4A3-4F8D-9CF4-9F089BAE792A" + }, + "fileCreated": "2025-06-21T09:31:02.4404743+00:00", + "fileLastModified": "2025-07-14T09:31:02.4404745+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4404735+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101902 + }, + "imageDetail": { + "width": 6833, + "height": 7176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89490, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1902 }671A6A0A-8324-4BEB-8159-6CF4B3F4A05A" + }, + "fileCreated": "2025-06-21T09:31:02.444294+00:00", + "fileLastModified": "2025-07-14T09:31:02.4442942+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4442943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4442933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101909 + }, + "imageDetail": { + "width": 3607, + "height": 7362 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1909 }19E4170C-8653-48A1-A603-44754F29ED76" + }, + "fileCreated": "2025-06-21T09:31:02.4588718+00:00", + "fileLastModified": "2025-07-14T09:31:02.458872+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4588711+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101910 + }, + "imageDetail": { + "width": 8351, + "height": 4788 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27822, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1910 }F4799A09-2278-4B12-9F13-B11A9DFDAECF" + }, + "fileCreated": "2025-06-21T09:31:02.4608987+00:00", + "fileLastModified": "2025-07-14T09:31:02.4608989+00:00", + "fileLastViewed": "2025-07-14T09:31:02.460899+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.460898+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101911 + }, + "imageDetail": { + "width": 4079, + "height": 8364 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1911 }B58873E6-D5FC-403C-8FE8-A9F575C772DB" + }, + "fileCreated": "2025-06-21T09:31:02.4627815+00:00", + "fileLastModified": "2025-07-14T09:31:02.4627817+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4627818+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4627806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101913 + }, + "imageDetail": { + "width": 5422, + "height": 5939 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31343, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1913 }1D1D3324-35A4-440D-B5EF-C8363383B055" + }, + "fileCreated": "2025-06-21T09:31:02.4669788+00:00", + "fileLastModified": "2025-07-14T09:31:02.466979+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4669791+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.466978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101914 + }, + "imageDetail": { + "width": 5572, + "height": 2840 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23562, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1914 }A0793DB2-3475-4BFF-B94F-9620434EA102" + }, + "fileCreated": "2025-06-21T09:31:02.4692594+00:00", + "fileLastModified": "2025-07-14T09:31:02.4692596+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4692584+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101915 + }, + "imageDetail": { + "width": 316, + "height": 5510 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1915 }FA78FFC3-414E-4EEF-BC41-1173B5D8EF4D" + }, + "fileCreated": "2025-06-21T09:31:02.4711907+00:00", + "fileLastModified": "2025-07-14T09:31:02.4711909+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.47119+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101920 + }, + "imageDetail": { + "width": 5548, + "height": 7945 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 65550, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1920 }5BD0DED4-DC12-4F2E-9FF4-F31E3B414212" + }, + "fileCreated": "2025-06-21T09:31:02.4810062+00:00", + "fileLastModified": "2025-07-14T09:31:02.4810064+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4810065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4810055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101921 + }, + "imageDetail": { + "width": 5960, + "height": 9180 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87102, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1921 }0DD40F77-EE91-4A50-AD4E-C0A3C795D8C9" + }, + "fileCreated": "2025-06-21T09:31:02.4828256+00:00", + "fileLastModified": "2025-07-14T09:31:02.4828258+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4828259+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4828248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101924 + }, + "imageDetail": { + "width": 1241, + "height": 6072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1924 }44E47318-E4C7-4C83-A095-E9D3C14E3082" + }, + "fileCreated": "2025-06-21T09:31:02.4890101+00:00", + "fileLastModified": "2025-07-14T09:31:02.4890103+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4890104+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4890094+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101925 + }, + "imageDetail": { + "width": 6637, + "height": 6709 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1925 }6DEFC354-19DA-4AC9-9A26-FBB4C752E2FD" + }, + "fileCreated": "2025-06-21T09:31:02.4907373+00:00", + "fileLastModified": "2025-07-14T09:31:02.4907375+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4907376+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4907366+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101926 + }, + "imageDetail": { + "width": 1421, + "height": 8954 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1926 }9844B61F-DBE4-40B1-95EF-D51038300E92" + }, + "fileCreated": "2025-06-21T09:31:02.4925919+00:00", + "fileLastModified": "2025-07-14T09:31:02.4925921+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4925912+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101927 + }, + "imageDetail": { + "width": 9570, + "height": 9206 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35337, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1927 }1F91DB2E-2BCC-457E-82A1-609CB0FD1B8D" + }, + "fileCreated": "2025-06-21T09:31:02.4944994+00:00", + "fileLastModified": "2025-07-14T09:31:02.4944996+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4944987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101928 + }, + "imageDetail": { + "width": 7093, + "height": 6808 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73238, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1928 }F9619170-8AE7-44A5-95A3-95DEDD670D65" + }, + "fileCreated": "2025-06-21T09:31:02.4967247+00:00", + "fileLastModified": "2025-07-14T09:31:02.4967249+00:00", + "fileLastViewed": "2025-07-14T09:31:02.496725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.496724+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101931 + }, + "imageDetail": { + "width": 1843, + "height": 6309 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 51234, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1931 }95230EDB-1064-4000-87E2-7110364E14FB" + }, + "fileCreated": "2025-06-21T09:31:02.5021542+00:00", + "fileLastModified": "2025-07-14T09:31:02.5021544+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5021545+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5021536+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101934 + }, + "imageDetail": { + "width": 8234, + "height": 8329 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1934 }E712B74D-9A9F-463A-9DD2-7A2D638027AE" + }, + "fileCreated": "2025-06-21T09:31:02.5080293+00:00", + "fileLastModified": "2025-07-14T09:31:02.5080295+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5080286+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101936 + }, + "imageDetail": { + "width": 8686, + "height": 9901 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 79210, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1936 }0DD4B543-E76C-49DC-B095-00B3E9109308" + }, + "fileCreated": "2025-06-21T09:31:02.5116656+00:00", + "fileLastModified": "2025-07-14T09:31:02.5116658+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.511665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101938 + }, + "imageDetail": { + "width": 1347, + "height": 2150 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1938 }3CD616A9-6C35-49CE-AED2-E357AE6279BE" + }, + "fileCreated": "2025-06-21T09:31:02.5161461+00:00", + "fileLastModified": "2025-07-14T09:31:02.5161464+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5161465+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5161453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101940 + }, + "imageDetail": { + "width": 3402, + "height": 5123 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67185, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1940 }10A62567-3E72-4573-A9D5-5A16433D2648" + }, + "fileCreated": "2025-06-21T09:31:02.5197665+00:00", + "fileLastModified": "2025-07-14T09:31:02.5197667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5197658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101942 + }, + "imageDetail": { + "width": 4199, + "height": 3977 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47708, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1942 }592FCB45-A837-40CB-8A5B-52861F157F7B" + }, + "fileCreated": "2025-06-21T09:31:02.5234573+00:00", + "fileLastModified": "2025-07-14T09:31:02.5234575+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5234566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101943 + }, + "imageDetail": { + "width": 199, + "height": 5565 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89360, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1943 }1D7520AE-5C69-4400-9798-626761F9573D" + }, + "fileCreated": "2025-06-21T09:31:02.5258092+00:00", + "fileLastModified": "2025-07-14T09:31:02.5258094+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5258085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101944 + }, + "imageDetail": { + "width": 6875, + "height": 7493 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1944 }2A7BE138-F4D1-4AE5-A150-69101E4E9A8F" + }, + "fileCreated": "2025-06-21T09:31:02.527568+00:00", + "fileLastModified": "2025-07-14T09:31:02.5275682+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5275673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101945 + }, + "imageDetail": { + "width": 5249, + "height": 2471 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59404, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1945 }AB698292-C78F-4E62-9F41-9842C5D74FAC" + }, + "fileCreated": "2025-06-21T09:31:02.5293485+00:00", + "fileLastModified": "2025-07-14T09:31:02.5293487+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5293488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5293479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101946 + }, + "imageDetail": { + "width": 155, + "height": 5249 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96784, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1946 }CC3C96AB-5D1C-45FD-BF1A-C32FB8E86168" + }, + "fileCreated": "2025-06-21T09:31:02.5316891+00:00", + "fileLastModified": "2025-07-14T09:31:02.5316894+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5316882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101947 + }, + "imageDetail": { + "width": 1636, + "height": 4691 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1947 }B9716FC2-45AB-4496-A7A5-C2DCC09C6EF9" + }, + "fileCreated": "2025-06-21T09:31:02.5335225+00:00", + "fileLastModified": "2025-07-14T09:31:02.5335227+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5335218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101948 + }, + "imageDetail": { + "width": 2174, + "height": 4876 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28975, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1948 }FC00BAF2-F528-45EC-A891-29F5AD08BAF7" + }, + "fileCreated": "2025-06-21T09:31:02.5358916+00:00", + "fileLastModified": "2025-07-14T09:31:02.5358918+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5358908+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101951 + }, + "imageDetail": { + "width": 1404, + "height": 6680 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92081, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1951 }60D8F7F5-39C2-4D11-A55F-D1D363BC9277" + }, + "fileCreated": "2025-06-21T09:31:02.5413257+00:00", + "fileLastModified": "2025-07-14T09:31:02.541326+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5413261+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5413242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101952 + }, + "imageDetail": { + "width": 2116, + "height": 7119 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76138, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1952 }79966CC6-2921-4E70-A820-87894AA5EAC1" + }, + "fileCreated": "2025-06-21T09:31:02.5430869+00:00", + "fileLastModified": "2025-07-14T09:31:02.5430872+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5430873+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5430862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101954 + }, + "imageDetail": { + "width": 8339, + "height": 4919 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65843, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1954 }63507FDC-3317-4568-AF99-D2167623539D" + }, + "fileCreated": "2025-06-21T09:31:02.5479996+00:00", + "fileLastModified": "2025-07-14T09:31:02.5479998+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.547999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101956 + }, + "imageDetail": { + "width": 8895, + "height": 4377 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46838, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1956 }C88EFAC3-5664-4198-9A20-FE1D90C2E4FD" + }, + "fileCreated": "2025-06-21T09:31:02.5516243+00:00", + "fileLastModified": "2025-07-14T09:31:02.5516245+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5516236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101958 + }, + "imageDetail": { + "width": 3525, + "height": 6366 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1958 }050EC59C-3EB9-4EFB-8C0C-5486A89D8AF4" + }, + "fileCreated": "2025-06-21T09:31:02.5557858+00:00", + "fileLastModified": "2025-07-14T09:31:02.555786+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5557861+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5557851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101962 + }, + "imageDetail": { + "width": 1555, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82751, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1962 }A3FA235B-7CA1-400E-B425-7273EA078348" + }, + "fileCreated": "2025-06-21T09:31:02.5634348+00:00", + "fileLastModified": "2025-07-14T09:31:02.563435+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5634341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101965 + }, + "imageDetail": { + "width": 3793, + "height": 4215 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27071, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1965 }F8237387-A40D-40C7-BFE4-471732919FA8" + }, + "fileCreated": "2025-06-21T09:31:02.5695195+00:00", + "fileLastModified": "2025-07-14T09:31:02.5695197+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5695198+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5695188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101969 + }, + "imageDetail": { + "width": 4416, + "height": 5604 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29205, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1969 }4AD142BB-5491-4707-A7E3-F0885B2F5315" + }, + "fileCreated": "2025-06-21T09:31:02.5775266+00:00", + "fileLastModified": "2025-07-14T09:31:02.5775268+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.577526+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101972 + }, + "imageDetail": { + "width": 9792, + "height": 7187 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1972 }6C0F3570-7DE5-4341-9E91-9BE888BD112A" + }, + "fileCreated": "2025-06-21T09:31:02.583008+00:00", + "fileLastModified": "2025-07-14T09:31:02.5830082+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5830083+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5830074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101984 + }, + "imageDetail": { + "width": 5715, + "height": 9904 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26354, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1984 }D0A951BC-8364-42F3-9B25-E20BBB5F67FB" + }, + "fileCreated": "2025-06-21T09:31:02.6060223+00:00", + "fileLastModified": "2025-07-14T09:31:02.6060225+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6060216+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101985 + }, + "imageDetail": { + "width": 4265, + "height": 6240 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59001, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1985 }09E2B140-43FA-477C-9EA3-7F5166296C76" + }, + "fileCreated": "2025-06-21T09:31:02.6078336+00:00", + "fileLastModified": "2025-07-14T09:31:02.6078338+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.607833+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101986 + }, + "imageDetail": { + "width": 9019, + "height": 8560 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35858, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1986 }CB951E84-1D30-4BAB-AA12-2FC307CA7493" + }, + "fileCreated": "2025-06-21T09:31:02.6107499+00:00", + "fileLastModified": "2025-07-14T09:31:02.6107502+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6107488+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101988 + }, + "imageDetail": { + "width": 4204, + "height": 6995 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1988 }DE381E3C-E1A4-49EC-BDBF-294FDC08DFB1" + }, + "fileCreated": "2025-06-21T09:31:02.6150335+00:00", + "fileLastModified": "2025-07-14T09:31:02.6150337+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6150338+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6150328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101989 + }, + "imageDetail": { + "width": 495, + "height": 9526 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37820, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1989 }9F2CFE84-4DBE-43A4-9AEA-FA915CB13C03" + }, + "fileCreated": "2025-06-21T09:31:02.6169656+00:00", + "fileLastModified": "2025-07-14T09:31:02.6169658+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6169659+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6169649+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101993 + }, + "imageDetail": { + "width": 9558, + "height": 3924 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96283, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1993 }35A209D4-5490-485A-8C3C-687ADFBCD52C" + }, + "fileCreated": "2025-06-21T09:31:02.6253604+00:00", + "fileLastModified": "2025-07-14T09:31:02.6253606+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6253607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6253593+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101994 + }, + "imageDetail": { + "width": 4563, + "height": 5975 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1994 }E3402763-C17B-4386-9A56-D6B55A9E13EA" + }, + "fileCreated": "2025-06-21T09:31:02.6272113+00:00", + "fileLastModified": "2025-07-14T09:31:02.6272115+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6272116+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6272106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101995 + }, + "imageDetail": { + "width": 4467, + "height": 5928 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40441, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1995 }8649B9B4-8BE7-47A6-BF7B-85D88B1967F9" + }, + "fileCreated": "2025-06-21T09:31:02.6291319+00:00", + "fileLastModified": "2025-07-14T09:31:02.6291321+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6291313+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101997 + }, + "imageDetail": { + "width": 4075, + "height": 6065 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49576, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1997 }EA5CFC47-64BB-4418-97C1-AE12ECF467CD" + }, + "fileCreated": "2025-06-21T09:31:02.6333897+00:00", + "fileLastModified": "2025-07-14T09:31:02.63339+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6333891+00:00" } -] +] \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj index 1e46da8..fc9d7cb 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj @@ -19,7 +19,11 @@ runtime; build; native; contentfiles; analyzers; buildtransitive + + + + diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs index 43517ea..7537940 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDeletionStatusExtensionsShould.cs @@ -6,29 +6,25 @@ namespace AStar.Dev.Infrastructure.FilesDb; /// /// -public class FileDetailDeletionStatusExtensionsShould : IClassFixture +public class FileDetailDeletionStatusExtensionsShould (FilesContextFixture filesContextFixture) : IClassFixture { - private readonly FilesContextFixture filesContextFixture; - - public FileDetailDeletionStatusExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; - [Fact] public void ShouldReturnExpectedFileDetailsWhenIncludeDeletedOrDeletePendingIsFalse() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.IncludeDeletedOrDeletePending(false).ToList(); - result.Count.ShouldBe(1734); + result.Count.ShouldBe(2600); } [Fact] public void ShouldReturnExpectedFileDetailsWhenIncludeDeletedOrDeletePendingIsTrue() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.IncludeDeletedOrDeletePending(true).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs index f1bf2d3..35a18a9 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs @@ -5,22 +5,18 @@ namespace AStar.Dev.Infrastructure.FilesDb; -public class FileDetailDirectoryNameExtensionsShould : IClassFixture +public class FileDetailDirectoryNameExtensionsShould (FilesContextFixture filesContextFixture) : IClassFixture { - private readonly FilesContextFixture filesContextFixture; - - public FileDetailDirectoryNameExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; - [Fact] public void ShouldReturnExpectedFileDetailsWhenDirectoryNameSpecifiedAndRecursionIsFalse() { var searchDirectory = new DirectoryName(@"\one-level\"); - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.WhereDirectoryNameMatches(searchDirectory.Value, false).ToList(); - result.Count.ShouldBe(457); + result.Count.ShouldBe(693); } [Fact] @@ -28,10 +24,10 @@ public void ShouldReturnExpectedFileDetailsWhenDirectoryNameSpecifiedAndRecursio { var searchDirectory = new DirectoryName(@"\with"); - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.WhereDirectoryNameMatches(searchDirectory.Value, true).ToList(); - result.Count.ShouldBe(1084); + result.Count.ShouldBe(1621); } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs index 6e98f94..d1085cb 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailOrderingExtensionsShould.cs @@ -7,20 +7,16 @@ namespace AStar.Dev.Infrastructure.FilesDb; /// /// -public class FileDetailOrderingExtensionsShould : IClassFixture +public class FileDetailOrderingExtensionsShould (FilesContextFixture filesContextFixture) : IClassFixture { - private readonly FilesContextFixture filesContextFixture; - - public FileDetailOrderingExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; - [Fact] public void ShouldReturnExpectedFileDetailsOrderedByNameAscending() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OrderResultsBy(SortOrder.NameAscending).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); result[0].FileSize.ShouldBe(91451L); } @@ -28,11 +24,11 @@ public void ShouldReturnExpectedFileDetailsOrderedByNameAscending() [Fact] public void ShouldReturnExpectedFileDetailsOrderedByNameDescending() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OrderResultsBy(SortOrder.NameDescending).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); result[0].FileName.Value.ShouldBe(@"file.txt"); result[0].FileSize.ShouldBe(91801L); } @@ -40,11 +36,11 @@ public void ShouldReturnExpectedFileDetailsOrderedByNameDescending() [Fact] public void ShouldReturnExpectedFileDetailsOrderedBySizeAscending() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OrderResultsBy(SortOrder.SizeAscending).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); result[0].FileName.Value.ShouldBe(@"\some\file.png"); result[0].FileSize.ShouldBe(20024L); } @@ -52,11 +48,11 @@ public void ShouldReturnExpectedFileDetailsOrderedBySizeAscending() [Fact] public void ShouldReturnExpectedFileDetailsOrderedBySizeDescending() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OrderResultsBy(SortOrder.SizeDescending).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); result[0].FileName.Value.ShouldBe(@"\some\file.txt"); result[0].FileSize.ShouldBe(99889L); } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs index 9a00485..ae81d2a 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailPagingExtensionsShould.cs @@ -6,16 +6,12 @@ namespace AStar.Dev.Infrastructure.FilesDb; /// /// -public class FileDetailPagingExtensionsShould : IClassFixture +public class FileDetailPagingExtensionsShould (FilesContextFixture filesContextFixture) : IClassFixture { - private readonly FilesContextFixture filesContextFixture; - - public FileDetailPagingExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; - [Fact] public void ShouldReturnExpectedFirstPageOfTenResultsWithCorrectDetails() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.GetPage(1, 10).ToList(); @@ -27,7 +23,7 @@ public void ShouldReturnExpectedFirstPageOfTenResultsWithCorrectDetails() [Fact] public void ShouldReturnExpectedThirdPageOfTwentyResultsWithCorrectDetails() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.GetPage(28, 20).ToList(); @@ -39,7 +35,7 @@ public void ShouldReturnExpectedThirdPageOfTwentyResultsWithCorrectDetails() [Fact] public void ShouldReturnFirstPageOfResultsWhenPageRequestedIsZero() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.GetPage(0, 20).ToList(); @@ -51,7 +47,7 @@ public void ShouldReturnFirstPageOfResultsWhenPageRequestedIsZero() [Fact] public void ShouldReturnExpectedFiftyResultsWhenMaxItemsIsExceeded() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.GetPage(1, 51).ToList(); diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs index 3814a6d..63eb546 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs @@ -7,20 +7,16 @@ namespace AStar.Dev.Infrastructure.FilesDb; /// /// -public class FileDetailSearchTypeExtensionsShould : IClassFixture +public class FileDetailSearchTypeExtensionsShould (FilesContextFixture filesContextFixture) : IClassFixture { - private readonly FilesContextFixture filesContextFixture; - - public FileDetailSearchTypeExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; - [Fact] public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToAll() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OfSearchType(SearchType.All).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); result[0].FileName.Value.ShouldBe("file.txt"); result[0].FileSize.ShouldBe(91801L); } @@ -28,11 +24,11 @@ public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToAll() [Fact] public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToImages() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OfSearchType(SearchType.Images).ToList(); - result.Count.ShouldBe(1541); + result.Count.ShouldBe(2314); result[0].FileName.Value.ShouldBe(@"\some\file.gif"); result[0].FileSize.ShouldBe(22081L); } @@ -40,11 +36,11 @@ public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToImages() [Fact] public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicateImages() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OfSearchType(SearchType.DuplicateImages).ToList(); - result.Count.ShouldBe(5678); + result.Count.ShouldBe(1546); result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); result[0].FileSize.ShouldBe(91451L); } @@ -52,7 +48,7 @@ public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicateImages( [Fact] public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicates() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.OfSearchType(SearchType.Duplicates).ToList(); diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs index 1383773..4921463 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailTextContainsExtensionsShould.cs @@ -6,46 +6,42 @@ namespace AStar.Dev.Infrastructure.FilesDb; /// /// -public class FileDetailTextContainsExtensionsShould : IClassFixture +public class FileDetailTextContainsExtensionsShould (FilesContextFixture filesContextFixture) : IClassFixture { - private readonly FilesContextFixture filesContextFixture; - - public FileDetailTextContainsExtensionsShould(FilesContextFixture filesContextFixture) => this.filesContextFixture = filesContextFixture; - [Fact] public void ReturnTheExpectedFilesMatchingTheSuppliedTextWhenExistsInTheDirectoryNameOnly() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.SelectFilesMatching("with"); - result.Count().ShouldBe(1084); + result.Count().ShouldBe(1621); } [Fact] public void ReturnTheExpectedFilesMatchingTheSuppliedTextWhenExistsInTheFileNameOnly() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.SelectFilesMatching("file.gif"); - result.Count().ShouldBe(457); + result.Count().ShouldBe(693); } [Fact] public void ReturnTheExpectedFilesMatchingTheSuppliedTextWhenExistsInTheDirectoryNameAndTheFileName() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.SelectFilesMatching("some"); - result.Count().ShouldBe(1999); + result.Count().ShouldBe(2999); } [Fact] public void ReturnNoFilesWhenTheSuppliedTextDoesntExistsInTheDirectoryNameOrTheFileName() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.SelectFilesMatching("search-text that wont match"); @@ -55,10 +51,10 @@ public void ReturnNoFilesWhenTheSuppliedTextDoesntExistsInTheDirectoryNameOrTheF [Fact] public void ReturnAllFilesWhenTheSuppliedTextIsNull() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.SelectFilesMatching(null); - result.Count().ShouldBe(2000); + result.Count().ShouldBe(3000); } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs index 4aa0fd4..db817d5 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs @@ -19,20 +19,20 @@ public FilesContextLastViewedExtensionsShould(FilesContextFixture filesContextFi [Fact] public void ShouldReturnExpectedFileDetailsWhereLastViewedIsSetTo7Days() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.WhereLastViewedIsOlderThan(7, mockTimeProvider).ToList(); - result.Count.ShouldBe(1002); + result.Count.ShouldBe(1524); } [Fact] public void ShouldReturnExpectedFileDetailsWhereLastViewedIsSetTo0Days() { - var sut = filesContextFixture.SutWithFileDetails; + var sut = filesContextFixture.Sut; var result = sut.FileDetails.WhereLastViewedIsOlderThan(0, mockTimeProvider).ToList(); - result.Count.ShouldBe(2000); + result.Count.ShouldBe(3000); } } diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/TestData/files.json b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/TestData/files.json new file mode 100644 index 0000000..7fc9a5a --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/TestData/files.json @@ -0,0 +1,99002 @@ +[ + { + "fileClassifications": [], + "id": { + "value": 0 + }, + "imageDetail": { + "width": 6734, + "height": 6601 + }, + "fileName": { + "value": "file.txt" + }, + "directoryName": { + "value": "directory" + }, + "fullNameWithPath": "directory/file.txt", + "fileSize": 91801, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = directory }-file.txt-FileId { Value = 0 }" + }, + "fileCreated": "2025-06-21T09:29:47.5780443+00:00", + "fileLastModified": "2025-07-14T09:29:47.5782318+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:29:47.5773051+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1 + }, + "imageDetail": { + "width": 6394, + "height": 8458 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45197, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1 }" + }, + "fileCreated": "2025-06-21T09:21:52.4468007+00:00", + "fileLastModified": "2025-07-14T09:21:52.446945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4458268+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 2 + }, + "imageDetail": { + "width": 155, + "height": 2107 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22081, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 2 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473639+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473644+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447359+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 3 + }, + "imageDetail": { + "width": 9965, + "height": 9318 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91451, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 3 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473655+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473656+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473656+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 4 + }, + "imageDetail": { + "width": 7557, + "height": 4155 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47003, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 4 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473661+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473661+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473662+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 5 + }, + "imageDetail": { + "width": 8008, + "height": 3466 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 5 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473665+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473665+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473663+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 6 + }, + "imageDetail": { + "width": 8608, + "height": 9870 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86997, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 6 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473684+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473685+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473685+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473683+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 7 + }, + "imageDetail": { + "width": 7772, + "height": 8742 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92722, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 7 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473693+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473694+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473691+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 8 + }, + "imageDetail": { + "width": 8482, + "height": 2221 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31919, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 8 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473697+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473698+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473698+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473695+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 9 + }, + "imageDetail": { + "width": 7843, + "height": 4240 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33939, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 9 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473701+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473699+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 10 + }, + "imageDetail": { + "width": 318, + "height": 7603 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 10 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473706+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473707+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473705+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 11 + }, + "imageDetail": { + "width": 7005, + "height": 9981 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77037, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 11 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473711+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473712+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473712+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473709+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 12 + }, + "imageDetail": { + "width": 4741, + "height": 2166 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 12 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473715+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473716+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473716+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 13 + }, + "imageDetail": { + "width": 1384, + "height": 4976 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40597, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 13 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473719+00:00", + "fileLastModified": "2025-07-14T09:21:52.447372+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 14 + }, + "imageDetail": { + "width": 6054, + "height": 2698 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 14 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473728+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473729+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473729+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 15 + }, + "imageDetail": { + "width": 5168, + "height": 6117 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 70130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 15 }" + }, + "fileCreated": "2025-06-21T09:21:52.447376+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473758+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 16 + }, + "imageDetail": { + "width": 5509, + "height": 8877 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24422, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 16 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473764+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473765+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 17 + }, + "imageDetail": { + "width": 6000, + "height": 3842 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71086, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 17 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473769+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 18 + }, + "imageDetail": { + "width": 7853, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 95960, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 18 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473773+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473773+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473774+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473771+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 19 + }, + "imageDetail": { + "width": 6466, + "height": 6374 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71277, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 19 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473777+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473777+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473775+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 20 + }, + "imageDetail": { + "width": 4135, + "height": 3714 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99512, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 20 }" + }, + "fileCreated": "2025-06-21T09:21:52.447378+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473781+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473781+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473779+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 21 + }, + "imageDetail": { + "width": 2722, + "height": 8169 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 61750, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 21 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473785+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473785+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 22 + }, + "imageDetail": { + "width": 3521, + "height": 4694 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 22 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473788+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473789+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473789+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 23 + }, + "imageDetail": { + "width": 2012, + "height": 9592 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92757, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 23 }" + }, + "fileCreated": "2025-06-21T09:21:52.44738+00:00", + "fileLastModified": "2025-07-14T09:21:52.44738+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473801+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473791+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 24 + }, + "imageDetail": { + "width": 8117, + "height": 4511 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86514, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 24 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473804+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473804+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473805+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473802+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 25 + }, + "imageDetail": { + "width": 7067, + "height": 5602 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 25 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473808+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473809+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 26 + }, + "imageDetail": { + "width": 3621, + "height": 8914 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87843, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 26 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473812+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473812+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473813+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-14T09:21:52.4473812+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447381+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 27 + }, + "imageDetail": { + "width": 6151, + "height": 4770 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 27 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473816+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 28 + }, + "imageDetail": { + "width": 9210, + "height": 8849 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22558, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 28 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473838+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 29 + }, + "imageDetail": { + "width": 1911, + "height": 4515 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56039, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 29 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473842+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473843+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 30 + }, + "imageDetail": { + "width": 5269, + "height": 3306 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 37750, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 30 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473849+00:00", + "fileLastModified": "2025-07-14T09:21:52.447385+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447385+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473848+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 31 + }, + "imageDetail": { + "width": 2559, + "height": 3275 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67259, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 31 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473854+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473854+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473854+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473852+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 32 + }, + "imageDetail": { + "width": 8151, + "height": 3427 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 32 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473857+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473858+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473858+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473856+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 33 + }, + "imageDetail": { + "width": 2071, + "height": 8581 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73660, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 33 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473861+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473862+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-14T09:21:52.4473812+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 34 + }, + "imageDetail": { + "width": 5908, + "height": 4947 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 34 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473867+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 35 + }, + "imageDetail": { + "width": 2719, + "height": 2353 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 83504, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 35 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473877+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473878+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473869+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 36 + }, + "imageDetail": { + "width": 1905, + "height": 9679 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67766, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 36 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473881+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473881+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473879+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 37 + }, + "imageDetail": { + "width": 7916, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80133, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 37 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473884+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473885+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 38 + }, + "imageDetail": { + "width": 3184, + "height": 9737 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 33336, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 38 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473888+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473889+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473889+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 39 + }, + "imageDetail": { + "width": 3041, + "height": 2019 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 39 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473893+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473893+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 40 + }, + "imageDetail": { + "width": 2042, + "height": 2514 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 61689, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 40 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473897+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473897+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473895+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 41 + }, + "imageDetail": { + "width": 3000, + "height": 9939 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56131, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 41 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473959+00:00", + "fileLastModified": "2025-07-14T09:21:52.447396+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473958+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 42 + }, + "imageDetail": { + "width": 2491, + "height": 4700 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45804, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 42 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473963+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473963+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473961+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 43 + }, + "imageDetail": { + "width": 6792, + "height": 2328 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83304, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 43 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473966+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473967+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473967+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473965+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 44 + }, + "imageDetail": { + "width": 8224, + "height": 5740 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77990, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 44 }" + }, + "fileCreated": "2025-06-21T09:21:52.447397+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473971+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 45 + }, + "imageDetail": { + "width": 2975, + "height": 7495 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94107, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 45 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473974+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473972+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 46 + }, + "imageDetail": { + "width": 406, + "height": 6886 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89265, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 46 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473977+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473978+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473978+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473976+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 47 + }, + "imageDetail": { + "width": 7063, + "height": 9113 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 69576, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 47 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473981+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 48 + }, + "imageDetail": { + "width": 7101, + "height": 9596 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79075, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 48 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473984+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473985+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473986+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473983+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 49 + }, + "imageDetail": { + "width": 6521, + "height": 5139 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73093, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 49 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473988+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473989+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 50 + }, + "imageDetail": { + "width": 2911, + "height": 7704 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84656, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 50 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473992+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473992+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447399+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 51 + }, + "imageDetail": { + "width": 5814, + "height": 5735 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46024, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 51 }" + }, + "fileCreated": "2025-06-21T09:21:52.4473995+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473996+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473997+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473994+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 52 + }, + "imageDetail": { + "width": 6701, + "height": 5147 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96449, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 52 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473998+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 53 + }, + "imageDetail": { + "width": 6527, + "height": 7890 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73917, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 53 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474003+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474003+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 54 + }, + "imageDetail": { + "width": 390, + "height": 3835 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47345, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 54 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474046+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474047+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474044+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 55 + }, + "imageDetail": { + "width": 7870, + "height": 7852 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 26297, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 55 }" + }, + "fileCreated": "2025-06-21T09:21:52.447405+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474051+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474051+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474048+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 56 + }, + "imageDetail": { + "width": 6432, + "height": 9604 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 24029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 56 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474054+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474054+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474055+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474052+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 57 + }, + "imageDetail": { + "width": 8202, + "height": 8836 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89972, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 57 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474058+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474057+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 58 + }, + "imageDetail": { + "width": 7341, + "height": 8598 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71491, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 58 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474062+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 59 + }, + "imageDetail": { + "width": 6486, + "height": 6228 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34402, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 59 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474065+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474066+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474066+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474064+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 60 + }, + "imageDetail": { + "width": 196, + "height": 9140 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 60 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474069+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474069+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447407+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 61 + }, + "imageDetail": { + "width": 7901, + "height": 5508 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30173, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 61 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474072+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474073+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474071+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 62 + }, + "imageDetail": { + "width": 3476, + "height": 4057 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21189, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 62 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474076+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 63 + }, + "imageDetail": { + "width": 5632, + "height": 2892 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64949, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 63 }" + }, + "fileCreated": "2025-06-21T09:21:52.447408+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474081+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 64 + }, + "imageDetail": { + "width": 5697, + "height": 7843 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31900, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 64 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474084+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474084+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474085+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474082+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 65 + }, + "imageDetail": { + "width": 8819, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91710, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 65 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474088+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474088+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474089+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474086+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 66 + }, + "imageDetail": { + "width": 6917, + "height": 7451 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 87778, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 66 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474116+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474117+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 67 + }, + "imageDetail": { + "width": 1683, + "height": 4270 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55151, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 67 }" + }, + "fileCreated": "2025-06-21T09:21:52.447412+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474121+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474119+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 68 + }, + "imageDetail": { + "width": 2533, + "height": 8355 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23272, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 68 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 69 + }, + "imageDetail": { + "width": 8601, + "height": 7661 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22997, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 69 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474128+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474129+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 70 + }, + "imageDetail": { + "width": 328, + "height": 8883 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 78789, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 70 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474132+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447413+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 71 + }, + "imageDetail": { + "width": 2725, + "height": 5081 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53010, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 71 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474135+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 72 + }, + "imageDetail": { + "width": 2492, + "height": 6146 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 72 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474138+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474139+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474139+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 73 + }, + "imageDetail": { + "width": 350, + "height": 2357 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44889, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 73 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474142+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474142+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474143+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447414+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 74 + }, + "imageDetail": { + "width": 2503, + "height": 6462 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99071, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 74 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474146+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474146+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474147+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474144+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 75 + }, + "imageDetail": { + "width": 7838, + "height": 7082 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 75 }" + }, + "fileCreated": "2025-06-21T09:21:52.447415+00:00", + "fileLastModified": "2025-07-14T09:21:52.447415+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474148+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 76 + }, + "imageDetail": { + "width": 5716, + "height": 4767 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43593, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 76 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474154+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474154+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 77 + }, + "imageDetail": { + "width": 7540, + "height": 2587 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 77 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474157+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474158+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 78 + }, + "imageDetail": { + "width": 5378, + "height": 5304 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57002, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 78 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474161+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474161+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474159+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 79 + }, + "imageDetail": { + "width": 9024, + "height": 8208 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94978, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 79 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474164+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474165+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474163+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 80 + }, + "imageDetail": { + "width": 8107, + "height": 6625 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87664, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 80 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474192+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474192+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447419+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 81 + }, + "imageDetail": { + "width": 4570, + "height": 8040 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25569, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 81 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474195+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474196+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474196+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474194+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 82 + }, + "imageDetail": { + "width": 1872, + "height": 7027 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 82 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474199+00:00", + "fileLastModified": "2025-07-14T09:21:52.44742+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44742+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474198+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 83 + }, + "imageDetail": { + "width": 1104, + "height": 2983 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88604, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 83 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474203+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474204+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474204+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 84 + }, + "imageDetail": { + "width": 2860, + "height": 4956 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 88894, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 84 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474207+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474208+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474208+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474206+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 85 + }, + "imageDetail": { + "width": 5377, + "height": 8087 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 85 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474211+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474211+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474209+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 86 + }, + "imageDetail": { + "width": 5650, + "height": 3006 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 86 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474215+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474215+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474213+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 87 + }, + "imageDetail": { + "width": 5786, + "height": 4076 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62964, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 87 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474219+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474219+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474217+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 88 + }, + "imageDetail": { + "width": 4668, + "height": 5390 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95143, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 88 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474222+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474223+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 89 + }, + "imageDetail": { + "width": 8886, + "height": 9598 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95528, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 89 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474226+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474227+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474227+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 90 + }, + "imageDetail": { + "width": 327, + "height": 4955 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 96387, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 90 }" + }, + "fileCreated": "2025-06-21T09:21:52.447423+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474231+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474231+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474229+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 91 + }, + "imageDetail": { + "width": 2601, + "height": 6575 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51880, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 91 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474234+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474235+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 92 + }, + "imageDetail": { + "width": 9900, + "height": 9628 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69143, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 92 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474238+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474238+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 93 + }, + "imageDetail": { + "width": 9207, + "height": 6591 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88989, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 93 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474267+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 94 + }, + "imageDetail": { + "width": 5728, + "height": 7625 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21255, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 94 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474271+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474271+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474272+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474269+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 95 + }, + "imageDetail": { + "width": 3705, + "height": 5772 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51001, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 95 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474275+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 96 + }, + "imageDetail": { + "width": 3589, + "height": 6348 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 36256, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 96 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474278+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474279+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474279+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 97 + }, + "imageDetail": { + "width": 3634, + "height": 7974 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37667, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 97 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474283+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474283+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 98 + }, + "imageDetail": { + "width": 6140, + "height": 5341 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42190, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 98 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474286+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474286+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474285+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 99 + }, + "imageDetail": { + "width": 908, + "height": 3398 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59120, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 99 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447429+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100 + }, + "imageDetail": { + "width": 7079, + "height": 2335 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 100 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474294+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101 + }, + "imageDetail": { + "width": 9408, + "height": 7445 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 101 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474297+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474297+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474295+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 102 + }, + "imageDetail": { + "width": 3323, + "height": 8530 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 102 }" + }, + "fileCreated": "2025-06-21T09:21:52.44743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474301+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 103 + }, + "imageDetail": { + "width": 2770, + "height": 5680 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38231, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 103 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474304+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474304+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474302+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 104 + }, + "imageDetail": { + "width": 7614, + "height": 5105 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84941, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 104 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474308+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474306+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 105 + }, + "imageDetail": { + "width": 4272, + "height": 7595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21133, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 105 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474311+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474311+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474309+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 106 + }, + "imageDetail": { + "width": 9638, + "height": 4839 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50230, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 106 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474314+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474315+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474313+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 107 + }, + "imageDetail": { + "width": 7416, + "height": 9817 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23946, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 107 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474342+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474343+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447434+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 108 + }, + "imageDetail": { + "width": 3883, + "height": 2021 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33796, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 108 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474346+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474347+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474347+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474344+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 109 + }, + "imageDetail": { + "width": 6156, + "height": 9762 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88867, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 109 }" + }, + "fileCreated": "2025-06-21T09:21:52.447435+00:00", + "fileLastModified": "2025-07-14T09:21:52.447435+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474351+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 110 + }, + "imageDetail": { + "width": 893, + "height": 4188 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83394, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 110 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474354+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474354+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474352+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 111 + }, + "imageDetail": { + "width": 5013, + "height": 7928 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 111 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474357+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 112 + }, + "imageDetail": { + "width": 2676, + "height": 7260 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69847, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 112 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474361+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474361+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474362+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474359+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 113 + }, + "imageDetail": { + "width": 4915, + "height": 8402 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29072, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 113 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474365+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474365+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474363+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 114 + }, + "imageDetail": { + "width": 5226, + "height": 4752 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 114 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474369+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474369+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 115 + }, + "imageDetail": { + "width": 7299, + "height": 7055 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93669, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 115 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474373+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474373+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 116 + }, + "imageDetail": { + "width": 8347, + "height": 2351 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63978, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 116 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474376+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474377+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474377+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474375+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 117 + }, + "imageDetail": { + "width": 4468, + "height": 3331 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59216, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 117 }" + }, + "fileCreated": "2025-06-21T09:21:52.447438+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474381+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474381+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474379+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 118 + }, + "imageDetail": { + "width": 4112, + "height": 7329 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27323, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 118 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474384+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474385+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474385+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 119 + }, + "imageDetail": { + "width": 6780, + "height": 2125 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 78115, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 119 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474388+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474388+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474389+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 120 + }, + "imageDetail": { + "width": 8600, + "height": 3401 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95928, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 120 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474392+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474392+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474393+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447439+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 121 + }, + "imageDetail": { + "width": 9899, + "height": 7593 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96278, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 121 }" + }, + "fileCreated": "2025-06-21T09:21:52.447442+00:00", + "fileLastModified": "2025-07-14T09:21:52.447442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474421+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474418+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 122 + }, + "imageDetail": { + "width": 1800, + "height": 9694 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88683, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 122 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474424+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474424+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474422+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 123 + }, + "imageDetail": { + "width": 3613, + "height": 8385 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 42552, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 123 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474427+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474428+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474428+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474426+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 124 + }, + "imageDetail": { + "width": 9270, + "height": 6348 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82049, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 124 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474431+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474432+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447443+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 125 + }, + "imageDetail": { + "width": 2728, + "height": 8925 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43855, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 125 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474435+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474435+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474436+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474433+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 126 + }, + "imageDetail": { + "width": 5258, + "height": 9560 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 61105, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 126 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474439+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474439+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447444+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 127 + }, + "imageDetail": { + "width": 9205, + "height": 3830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33109, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 127 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474442+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474443+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474441+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 128 + }, + "imageDetail": { + "width": 5268, + "height": 6718 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 128 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474446+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474447+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474445+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 129 + }, + "imageDetail": { + "width": 2891, + "height": 6270 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 39386, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 129 }" + }, + "fileCreated": "2025-06-21T09:21:52.447445+00:00", + "fileLastModified": "2025-07-14T09:21:52.447445+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474451+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474448+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 130 + }, + "imageDetail": { + "width": 3001, + "height": 2704 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 130 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474455+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474455+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474456+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 131 + }, + "imageDetail": { + "width": 5573, + "height": 2724 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94826, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 131 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474613+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474614+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447461+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 132 + }, + "imageDetail": { + "width": 2335, + "height": 3152 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92058, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 132 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474619+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474619+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 133 + }, + "imageDetail": { + "width": 1507, + "height": 2977 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75008, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 133 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474622+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474623+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447462+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 134 + }, + "imageDetail": { + "width": 5282, + "height": 9268 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64012, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 134 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474626+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474626+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474627+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474624+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 135 + }, + "imageDetail": { + "width": 8883, + "height": 3959 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 135 }" + }, + "fileCreated": "2025-06-21T09:21:52.447463+00:00", + "fileLastModified": "2025-07-14T09:21:52.447463+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474631+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 136 + }, + "imageDetail": { + "width": 7332, + "height": 4072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 39130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 136 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474634+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474634+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474632+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 137 + }, + "imageDetail": { + "width": 7445, + "height": 4901 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62124, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 137 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474638+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474638+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474636+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 138 + }, + "imageDetail": { + "width": 4589, + "height": 6915 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53362, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 138 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474641+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474642+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447464+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 139 + }, + "imageDetail": { + "width": 7325, + "height": 4771 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45427, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 139 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474645+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474645+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474646+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 140 + }, + "imageDetail": { + "width": 1724, + "height": 8463 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 50013, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 140 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474649+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474649+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 141 + }, + "imageDetail": { + "width": 8184, + "height": 2317 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47677, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 141 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474653+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474653+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 142 + }, + "imageDetail": { + "width": 5985, + "height": 3533 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60652, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 142 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474656+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474657+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474657+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474655+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 143 + }, + "imageDetail": { + "width": 9095, + "height": 4067 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26598, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 143 }" + }, + "fileCreated": "2025-06-21T09:21:52.447466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474661+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 144 + }, + "imageDetail": { + "width": 6087, + "height": 3020 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81446, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 144 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474705+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474705+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474662+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 145 + }, + "imageDetail": { + "width": 1731, + "height": 9389 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32334, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 145 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474708+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474709+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474707+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 146 + }, + "imageDetail": { + "width": 2513, + "height": 5848 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69390, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 146 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474712+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474712+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474713+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 147 + }, + "imageDetail": { + "width": 1155, + "height": 6968 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77025, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 147 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474716+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474717+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474717+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 148 + }, + "imageDetail": { + "width": 4931, + "height": 4208 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63805, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 148 }" + }, + "fileCreated": "2025-06-21T09:21:52.447472+00:00", + "fileLastModified": "2025-07-14T09:21:52.447472+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474721+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 149 + }, + "imageDetail": { + "width": 4545, + "height": 9547 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29831, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 149 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474724+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474724+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 150 + }, + "imageDetail": { + "width": 9245, + "height": 5557 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 150 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474727+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474728+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474729+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 151 + }, + "imageDetail": { + "width": 7466, + "height": 3819 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20983, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 151 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474731+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474732+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 152 + }, + "imageDetail": { + "width": 7665, + "height": 3085 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80813, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 152 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474735+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 153 + }, + "imageDetail": { + "width": 8615, + "height": 2089 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68510, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 153 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474738+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474739+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474737+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 154 + }, + "imageDetail": { + "width": 5230, + "height": 8272 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30474, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 154 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474742+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474742+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447474+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 155 + }, + "imageDetail": { + "width": 1039, + "height": 8407 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49695, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 155 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474746+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474746+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474744+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 156 + }, + "imageDetail": { + "width": 7589, + "height": 6782 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61275, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 156 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474749+00:00", + "fileLastModified": "2025-07-14T09:21:52.447475+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474747+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 157 + }, + "imageDetail": { + "width": 5074, + "height": 3008 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30751, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 157 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474753+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474753+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 158 + }, + "imageDetail": { + "width": 6088, + "height": 3725 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 158 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474791+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474792+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 159 + }, + "imageDetail": { + "width": 2966, + "height": 4554 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43413, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 159 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474795+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474795+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474793+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 160 + }, + "imageDetail": { + "width": 2921, + "height": 7334 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 160 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474799+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474799+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474797+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 161 + }, + "imageDetail": { + "width": 5344, + "height": 8892 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40079, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 161 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474802+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474803+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 162 + }, + "imageDetail": { + "width": 7821, + "height": 2383 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67404, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 162 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474806+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474806+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 163 + }, + "imageDetail": { + "width": 1343, + "height": 8542 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44683, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 163 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474809+00:00", + "fileLastModified": "2025-07-14T09:21:52.447481+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474808+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 164 + }, + "imageDetail": { + "width": 9225, + "height": 4720 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38037, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 164 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474813+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474813+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 165 + }, + "imageDetail": { + "width": 9596, + "height": 8814 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32992, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 165 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474817+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474815+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 166 + }, + "imageDetail": { + "width": 2657, + "height": 8081 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62298, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 166 }" + }, + "fileCreated": "2025-06-21T09:21:52.447482+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474821+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474819+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 167 + }, + "imageDetail": { + "width": 5472, + "height": 2267 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71170, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 167 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474824+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 168 + }, + "imageDetail": { + "width": 8713, + "height": 7089 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93917, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 168 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474827+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 169 + }, + "imageDetail": { + "width": 5510, + "height": 6786 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29822, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 169 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474831+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474829+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 170 + }, + "imageDetail": { + "width": 2028, + "height": 8982 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 30605, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 170 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474834+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474833+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 171 + }, + "imageDetail": { + "width": 888, + "height": 9932 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47122, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 171 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474838+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474838+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 172 + }, + "imageDetail": { + "width": 9067, + "height": 5134 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 172 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474864+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 173 + }, + "imageDetail": { + "width": 2560, + "height": 5168 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93881, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 173 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474869+00:00", + "fileLastModified": "2025-07-14T09:21:52.447487+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474868+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 174 + }, + "imageDetail": { + "width": 7644, + "height": 7049 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 174 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474873+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474873+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474874+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474871+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 175 + }, + "imageDetail": { + "width": 5063, + "height": 2011 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62933, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 175 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474877+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474877+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 176 + }, + "imageDetail": { + "width": 2575, + "height": 9698 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61313, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 176 }" + }, + "fileCreated": "2025-06-21T09:21:52.447488+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474881+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474879+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 177 + }, + "imageDetail": { + "width": 7133, + "height": 9374 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71654, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 177 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474884+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474884+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474885+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 178 + }, + "imageDetail": { + "width": 8392, + "height": 2510 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26336, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 178 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474888+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474889+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474889+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 179 + }, + "imageDetail": { + "width": 6957, + "height": 9637 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98809, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 179 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474892+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474893+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 180 + }, + "imageDetail": { + "width": 5446, + "height": 8689 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 61545, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 180 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474896+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474894+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 181 + }, + "imageDetail": { + "width": 8023, + "height": 2557 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37426, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 181 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474899+00:00", + "fileLastModified": "2025-07-14T09:21:52.44749+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474898+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 182 + }, + "imageDetail": { + "width": 516, + "height": 3889 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45445, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 182 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474903+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474904+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474904+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474902+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 183 + }, + "imageDetail": { + "width": 6795, + "height": 4078 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81837, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 183 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474907+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474908+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474908+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474905+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 184 + }, + "imageDetail": { + "width": 6845, + "height": 5317 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81405, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 184 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474911+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474912+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474912+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 185 + }, + "imageDetail": { + "width": 2744, + "height": 8307 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59755, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 185 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474943+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474944+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 186 + }, + "imageDetail": { + "width": 6402, + "height": 4591 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22534, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 186 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474947+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474947+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 187 + }, + "imageDetail": { + "width": 4461, + "height": 4951 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22778, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 187 }" + }, + "fileCreated": "2025-06-21T09:21:52.447495+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474951+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474951+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474949+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 188 + }, + "imageDetail": { + "width": 2730, + "height": 3982 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 25029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 188 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474954+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474955+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474953+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 189 + }, + "imageDetail": { + "width": 8828, + "height": 9962 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 61079, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 189 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474958+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474958+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474959+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474956+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 190 + }, + "imageDetail": { + "width": 2238, + "height": 7018 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60829, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 190 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474962+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474962+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447496+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 191 + }, + "imageDetail": { + "width": 4017, + "height": 3278 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95889, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 191 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474965+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474964+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 192 + }, + "imageDetail": { + "width": 4803, + "height": 9368 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65990, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 192 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474969+00:00", + "fileLastModified": "2025-07-14T09:21:52.447497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474967+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 193 + }, + "imageDetail": { + "width": 2597, + "height": 8595 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88857, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 193 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474972+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474973+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474971+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 194 + }, + "imageDetail": { + "width": 9178, + "height": 2061 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41121, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 194 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474976+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474977+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474977+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474974+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 195 + }, + "imageDetail": { + "width": 9105, + "height": 3633 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64111, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 195 }" + }, + "fileCreated": "2025-06-21T09:21:52.447498+00:00", + "fileLastModified": "2025-07-14T09:21:52.447498+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474981+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 196 + }, + "imageDetail": { + "width": 536, + "height": 9080 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 196 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474984+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474985+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474982+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 197 + }, + "imageDetail": { + "width": 2105, + "height": 9462 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79984, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 197 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474988+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474988+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474989+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474986+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 198 + }, + "imageDetail": { + "width": 5570, + "height": 9155 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 84247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 198 }" + }, + "fileCreated": "2025-06-21T09:21:52.4474992+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474992+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 199 + }, + "imageDetail": { + "width": 5283, + "height": 8368 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 199 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475023+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475024+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475022+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 200 + }, + "imageDetail": { + "width": 1462, + "height": 6690 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 200 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475027+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475028+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475028+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475026+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 201 + }, + "imageDetail": { + "width": 1730, + "height": 6550 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63692, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 201 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475031+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475032+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 202 + }, + "imageDetail": { + "width": 9846, + "height": 4844 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58147, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 202 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475035+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475036+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475036+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 203 + }, + "imageDetail": { + "width": 6080, + "height": 2382 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 68715, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 203 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447504+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447504+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 204 + }, + "imageDetail": { + "width": 4815, + "height": 3029 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26560, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 204 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475043+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475044+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 205 + }, + "imageDetail": { + "width": 8325, + "height": 3757 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 21352, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 205 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 206 + }, + "imageDetail": { + "width": 1178, + "height": 9360 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 52599, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 206 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475051+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475051+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475052+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 207 + }, + "imageDetail": { + "width": 2286, + "height": 8671 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98541, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 207 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475055+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475055+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475056+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 208 + }, + "imageDetail": { + "width": 3279, + "height": 7457 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45175, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 208 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475059+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475059+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447506+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475057+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 209 + }, + "imageDetail": { + "width": 1670, + "height": 3925 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54274, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 209 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475062+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475063+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475061+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 210 + }, + "imageDetail": { + "width": 569, + "height": 3308 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 210 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475066+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475066+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475067+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475064+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 211 + }, + "imageDetail": { + "width": 1553, + "height": 3888 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31965, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 211 }" + }, + "fileCreated": "2025-06-21T09:21:52.447507+00:00", + "fileLastModified": "2025-07-14T09:21:52.447507+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475068+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 212 + }, + "imageDetail": { + "width": 632, + "height": 7251 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63725, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 212 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475073+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475074+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475074+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 213 + }, + "imageDetail": { + "width": 3480, + "height": 8316 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33172, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 213 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475101+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475101+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475099+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 214 + }, + "imageDetail": { + "width": 9522, + "height": 7511 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28437, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 214 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475104+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475105+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475102+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 215 + }, + "imageDetail": { + "width": 1654, + "height": 9289 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 215 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475108+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475108+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475108+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 216 + }, + "imageDetail": { + "width": 2550, + "height": 2963 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 216 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475112+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475112+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447511+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 217 + }, + "imageDetail": { + "width": 8596, + "height": 8969 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 217 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475115+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475116+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475116+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475113+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 218 + }, + "imageDetail": { + "width": 8880, + "height": 3629 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80187, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 218 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475119+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475119+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447512+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475117+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 219 + }, + "imageDetail": { + "width": 6664, + "height": 7072 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34845, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 219 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475123+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475123+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475124+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 220 + }, + "imageDetail": { + "width": 4502, + "height": 8397 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32303, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 220 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475127+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475127+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 221 + }, + "imageDetail": { + "width": 6388, + "height": 5316 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81904, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 221 }" + }, + "fileCreated": "2025-06-21T09:21:52.447513+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475131+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475131+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 222 + }, + "imageDetail": { + "width": 4506, + "height": 5528 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70004, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 222 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475134+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475135+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475135+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475133+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 223 + }, + "imageDetail": { + "width": 429, + "height": 3541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73278, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 223 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475138+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475138+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 224 + }, + "imageDetail": { + "width": 9563, + "height": 9120 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93535, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 224 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475141+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475142+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 225 + }, + "imageDetail": { + "width": 693, + "height": 4650 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 20024, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 225 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475145+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475145+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475146+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475143+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 226 + }, + "imageDetail": { + "width": 7787, + "height": 6020 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 226 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475176+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475176+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475177+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475147+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 227 + }, + "imageDetail": { + "width": 3611, + "height": 3008 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72507, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 227 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475179+00:00", + "fileLastModified": "2025-07-14T09:21:52.447518+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447518+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475178+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 228 + }, + "imageDetail": { + "width": 2593, + "height": 6899 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66156, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 228 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475183+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475184+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475184+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475182+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 229 + }, + "imageDetail": { + "width": 4782, + "height": 8371 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41331, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 229 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475187+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475188+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475186+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 230 + }, + "imageDetail": { + "width": 7964, + "height": 4149 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 82017, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 230 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475191+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475192+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475192+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 231 + }, + "imageDetail": { + "width": 5214, + "height": 4790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42940, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 231 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475195+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475195+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475193+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 232 + }, + "imageDetail": { + "width": 6185, + "height": 2337 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 232 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475198+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475199+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475199+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475197+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 233 + }, + "imageDetail": { + "width": 1415, + "height": 5157 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72921, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 233 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475202+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475202+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475203+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 234 + }, + "imageDetail": { + "width": 1012, + "height": 9035 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 234 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475206+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475207+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475204+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 235 + }, + "imageDetail": { + "width": 220, + "height": 8037 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97913, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 235 }" + }, + "fileCreated": "2025-06-21T09:21:52.447521+00:00", + "fileLastModified": "2025-07-14T09:21:52.447521+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475211+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 236 + }, + "imageDetail": { + "width": 3653, + "height": 6073 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 236 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475214+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475214+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475215+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475212+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 237 + }, + "imageDetail": { + "width": 9040, + "height": 2634 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61287, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 237 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475218+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475218+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475219+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475216+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 238 + }, + "imageDetail": { + "width": 6061, + "height": 2215 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 74058, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 238 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475221+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475222+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 239 + }, + "imageDetail": { + "width": 4605, + "height": 2866 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96321, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 239 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475225+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475226+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475224+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 240 + }, + "imageDetail": { + "width": 9273, + "height": 8339 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85485, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 240 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475244+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475245+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475246+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475243+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 241 + }, + "imageDetail": { + "width": 1221, + "height": 2359 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65931, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 241 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475249+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475249+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447525+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475247+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 242 + }, + "imageDetail": { + "width": 2734, + "height": 6140 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38986, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 242 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475253+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475253+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475254+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475251+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 243 + }, + "imageDetail": { + "width": 2171, + "height": 4685 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93165, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 243 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475257+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475258+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 244 + }, + "imageDetail": { + "width": 8173, + "height": 9916 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57497, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 244 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475261+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475261+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475259+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 245 + }, + "imageDetail": { + "width": 5561, + "height": 5485 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 245 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475264+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475265+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475263+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 246 + }, + "imageDetail": { + "width": 8322, + "height": 5603 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65204, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 246 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475268+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475268+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475266+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 247 + }, + "imageDetail": { + "width": 5746, + "height": 8737 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57189, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 247 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475271+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475272+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 248 + }, + "imageDetail": { + "width": 9117, + "height": 6034 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96647, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 248 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475275+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475276+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 249 + }, + "imageDetail": { + "width": 7487, + "height": 5122 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49712, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 249 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475279+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 250 + }, + "imageDetail": { + "width": 7447, + "height": 6079 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 250 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 251 + }, + "imageDetail": { + "width": 5501, + "height": 2369 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24853, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 251 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475286+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475286+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 252 + }, + "imageDetail": { + "width": 2427, + "height": 8515 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69729, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 252 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447529+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447529+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 253 + }, + "imageDetail": { + "width": 1377, + "height": 2102 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 91445, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 253 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475331+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475331+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 254 + }, + "imageDetail": { + "width": 9998, + "height": 6009 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 254 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475335+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475336+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 255 + }, + "imageDetail": { + "width": 2889, + "height": 7167 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34187, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 255 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475339+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475339+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447534+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475337+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 256 + }, + "imageDetail": { + "width": 3920, + "height": 3903 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 56212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 256 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475343+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475343+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475344+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 257 + }, + "imageDetail": { + "width": 1437, + "height": 9421 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64926, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 257 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475346+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475347+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475345+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 258 + }, + "imageDetail": { + "width": 1350, + "height": 6382 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51773, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 258 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475354+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475354+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475352+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 259 + }, + "imageDetail": { + "width": 6954, + "height": 9688 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73196, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 259 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475358+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 260 + }, + "imageDetail": { + "width": 3793, + "height": 2434 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 260 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475395+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475396+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475397+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 261 + }, + "imageDetail": { + "width": 5201, + "height": 5044 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20463, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 261 }" + }, + "fileCreated": "2025-06-21T09:21:52.44754+00:00", + "fileLastModified": "2025-07-14T09:21:52.44754+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475398+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 262 + }, + "imageDetail": { + "width": 9362, + "height": 8982 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67518, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 262 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 263 + }, + "imageDetail": { + "width": 526, + "height": 3502 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95619, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 263 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475406+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475407+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475407+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475405+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 264 + }, + "imageDetail": { + "width": 3164, + "height": 2961 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67656, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 264 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475411+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475412+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 265 + }, + "imageDetail": { + "width": 8068, + "height": 5814 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75629, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 265 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475415+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475415+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475416+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475413+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 266 + }, + "imageDetail": { + "width": 8822, + "height": 7269 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70839, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 266 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475418+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 267 + }, + "imageDetail": { + "width": 1580, + "height": 3743 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51013, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 267 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475422+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475423+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475421+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 268 + }, + "imageDetail": { + "width": 9509, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44235, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 268 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475426+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475427+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475425+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 269 + }, + "imageDetail": { + "width": 2241, + "height": 7131 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 50474, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 269 }" + }, + "fileCreated": "2025-06-21T09:21:52.447543+00:00", + "fileLastModified": "2025-07-14T09:21:52.447543+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475431+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475428+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 270 + }, + "imageDetail": { + "width": 8014, + "height": 8597 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34264, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 270 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475433+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475434+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475434+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475432+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 271 + }, + "imageDetail": { + "width": 1971, + "height": 2146 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83126, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 271 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475437+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475438+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475439+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475436+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 272 + }, + "imageDetail": { + "width": 1126, + "height": 9341 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94919, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 272 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475441+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475442+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 273 + }, + "imageDetail": { + "width": 3059, + "height": 8244 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 32840, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 273 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475445+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475446+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475444+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 274 + }, + "imageDetail": { + "width": 478, + "height": 8204 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30913, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 274 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475475+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 275 + }, + "imageDetail": { + "width": 7336, + "height": 2027 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39343, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 275 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475478+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475479+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475477+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 276 + }, + "imageDetail": { + "width": 8762, + "height": 8770 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82655, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 276 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475482+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475483+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475483+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447548+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 277 + }, + "imageDetail": { + "width": 605, + "height": 4449 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31460, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 277 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475486+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475486+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 278 + }, + "imageDetail": { + "width": 2723, + "height": 5609 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 278 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475489+00:00", + "fileLastModified": "2025-07-14T09:21:52.447549+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475488+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 279 + }, + "imageDetail": { + "width": 4323, + "height": 9707 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 279 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475493+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475493+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475494+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 280 + }, + "imageDetail": { + "width": 4869, + "height": 3417 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25126, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 280 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475497+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475495+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 281 + }, + "imageDetail": { + "width": 1944, + "height": 2716 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79738, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 281 }" + }, + "fileCreated": "2025-06-21T09:21:52.44755+00:00", + "fileLastModified": "2025-07-14T09:21:52.44755+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475501+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 282 + }, + "imageDetail": { + "width": 591, + "height": 9388 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66788, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 282 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475504+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475504+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475505+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475502+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 283 + }, + "imageDetail": { + "width": 5388, + "height": 6777 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40524, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 283 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475508+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475508+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475506+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 284 + }, + "imageDetail": { + "width": 7657, + "height": 7964 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90850, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 284 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475511+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475512+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 285 + }, + "imageDetail": { + "width": 6771, + "height": 2381 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75595, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 285 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475515+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475516+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 286 + }, + "imageDetail": { + "width": 5024, + "height": 7266 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67733, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 286 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475519+00:00", + "fileLastModified": "2025-07-14T09:21:52.447552+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475517+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 287 + }, + "imageDetail": { + "width": 9833, + "height": 7307 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69040, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 287 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475545+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475546+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475521+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 288 + }, + "imageDetail": { + "width": 396, + "height": 4385 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47366, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 288 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475549+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475549+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447555+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475547+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 289 + }, + "imageDetail": { + "width": 2513, + "height": 2486 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 70087, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 289 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475552+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 290 + }, + "imageDetail": { + "width": 3425, + "height": 8276 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23868, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 290 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475556+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475556+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475557+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475554+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 291 + }, + "imageDetail": { + "width": 3894, + "height": 5856 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25885, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 291 }" + }, + "fileCreated": "2025-06-21T09:21:52.447556+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475561+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475559+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 292 + }, + "imageDetail": { + "width": 4415, + "height": 5626 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 292 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475563+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475564+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475565+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475562+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 293 + }, + "imageDetail": { + "width": 1581, + "height": 9099 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86844, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 293 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475567+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475568+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475568+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 294 + }, + "imageDetail": { + "width": 5116, + "height": 4034 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48682, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 294 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475571+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475572+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475572+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 295 + }, + "imageDetail": { + "width": 5683, + "height": 2269 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86461, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 295 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475575+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475576+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475574+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 296 + }, + "imageDetail": { + "width": 270, + "height": 5441 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98857, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 296 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475578+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475579+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475577+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 297 + }, + "imageDetail": { + "width": 4515, + "height": 2907 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 297 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475582+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475583+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 298 + }, + "imageDetail": { + "width": 5633, + "height": 9152 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28663, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 298 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475586+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475586+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475587+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475584+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 299 + }, + "imageDetail": { + "width": 7950, + "height": 3877 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20998, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 299 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475589+00:00", + "fileLastModified": "2025-07-14T09:21:52.447559+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447559+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475588+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 300 + }, + "imageDetail": { + "width": 9935, + "height": 8651 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 70579, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 300 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475593+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475594+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475594+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475592+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 301 + }, + "imageDetail": { + "width": 3956, + "height": 6000 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40588, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 301 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475692+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475693+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475693+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 302 + }, + "imageDetail": { + "width": 3133, + "height": 7770 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26274, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 302 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475696+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475695+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 303 + }, + "imageDetail": { + "width": 6487, + "height": 3939 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 303 }" + }, + "fileCreated": "2025-06-21T09:21:52.44757+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475701+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475698+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 304 + }, + "imageDetail": { + "width": 4138, + "height": 9932 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37287, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 304 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475704+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475704+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475705+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475702+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 305 + }, + "imageDetail": { + "width": 1050, + "height": 4111 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88999, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 305 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475708+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475708+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 306 + }, + "imageDetail": { + "width": 933, + "height": 5198 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 99318, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 306 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475711+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475712+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475713+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447571+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 307 + }, + "imageDetail": { + "width": 2067, + "height": 9137 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37451, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 307 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475715+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475716+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475716+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 308 + }, + "imageDetail": { + "width": 1595, + "height": 8614 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 85437, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 308 }" + }, + "fileCreated": "2025-06-21T09:21:52.447572+00:00", + "fileLastModified": "2025-07-14T09:21:52.447572+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 309 + }, + "imageDetail": { + "width": 6905, + "height": 3016 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 309 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475723+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475724+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 310 + }, + "imageDetail": { + "width": 1005, + "height": 5265 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88533, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 310 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475727+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475727+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475728+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 311 + }, + "imageDetail": { + "width": 9317, + "height": 6641 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23624, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 311 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475731+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475731+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 312 + }, + "imageDetail": { + "width": 1715, + "height": 2409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62139, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 312 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475734+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 313 + }, + "imageDetail": { + "width": 6154, + "height": 6422 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58979, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 313 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475738+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475738+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475739+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475736+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 314 + }, + "imageDetail": { + "width": 5826, + "height": 2499 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 314 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475742+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475743+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475743+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475741+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 315 + }, + "imageDetail": { + "width": 944, + "height": 8357 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 68920, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 315 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475773+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475773+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475771+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 316 + }, + "imageDetail": { + "width": 8881, + "height": 3123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 316 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475776+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475777+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475774+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 317 + }, + "imageDetail": { + "width": 7404, + "height": 5906 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61803, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 317 }" + }, + "fileCreated": "2025-06-21T09:21:52.447578+00:00", + "fileLastModified": "2025-07-14T09:21:52.447578+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475778+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 318 + }, + "imageDetail": { + "width": 7765, + "height": 2560 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68103, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 318 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475783+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475784+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 319 + }, + "imageDetail": { + "width": 7909, + "height": 5800 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49350, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 319 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475786+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475787+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475787+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475785+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 320 + }, + "imageDetail": { + "width": 2449, + "height": 6441 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57170, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 320 }" + }, + "fileCreated": "2025-06-21T09:21:52.447579+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475791+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475791+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475789+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 321 + }, + "imageDetail": { + "width": 1999, + "height": 6424 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 321 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475794+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475795+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475793+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 322 + }, + "imageDetail": { + "width": 680, + "height": 3539 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 79909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 322 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475798+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475798+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475799+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475796+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 323 + }, + "imageDetail": { + "width": 2200, + "height": 9921 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40982, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 323 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475802+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475802+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44758+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 324 + }, + "imageDetail": { + "width": 2347, + "height": 9454 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 69043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 324 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475805+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475806+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 325 + }, + "imageDetail": { + "width": 9372, + "height": 3843 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 47407, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 325 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475809+00:00", + "fileLastModified": "2025-07-14T09:21:52.447581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475808+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 326 + }, + "imageDetail": { + "width": 8948, + "height": 2476 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 326 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475813+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475813+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 327 + }, + "imageDetail": { + "width": 3561, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 327 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475817+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475815+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 328 + }, + "imageDetail": { + "width": 5005, + "height": 7872 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35109, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 328 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475845+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475845+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475846+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475819+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 329 + }, + "imageDetail": { + "width": 7550, + "height": 3678 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42853, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 329 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475849+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475849+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 330 + }, + "imageDetail": { + "width": 8175, + "height": 6712 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 20948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 330 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475853+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 331 + }, + "imageDetail": { + "width": 1236, + "height": 5328 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 39051, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 331 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475856+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475856+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475857+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475854+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 332 + }, + "imageDetail": { + "width": 5470, + "height": 4126 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41234, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 332 }" + }, + "fileCreated": "2025-06-21T09:21:52.447586+00:00", + "fileLastModified": "2025-07-14T09:21:52.447586+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475858+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 333 + }, + "imageDetail": { + "width": 8720, + "height": 3858 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 333 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475863+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475864+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475864+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 334 + }, + "imageDetail": { + "width": 2397, + "height": 6999 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27666, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 334 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475867+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475868+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 335 + }, + "imageDetail": { + "width": 4097, + "height": 4900 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 20237, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 335 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475872+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475872+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475873+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 336 + }, + "imageDetail": { + "width": 7443, + "height": 8524 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64508, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 336 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475875+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475876+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475874+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 337 + }, + "imageDetail": { + "width": 1533, + "height": 2797 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99360, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 337 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475879+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475879+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475877+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 338 + }, + "imageDetail": { + "width": 3954, + "height": 4736 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 338 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475883+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475883+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475884+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475881+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 339 + }, + "imageDetail": { + "width": 3703, + "height": 5714 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 339 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475887+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475887+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475885+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 340 + }, + "imageDetail": { + "width": 7494, + "height": 5061 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87378, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 340 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475891+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475891+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 341 + }, + "imageDetail": { + "width": 1908, + "height": 3891 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26756, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 341 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475894+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475895+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 342 + }, + "imageDetail": { + "width": 1021, + "height": 4789 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93478, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 342 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475915+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475913+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 343 + }, + "imageDetail": { + "width": 5471, + "height": 6995 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 343 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475918+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475919+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475916+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 344 + }, + "imageDetail": { + "width": 2582, + "height": 2211 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32967, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 344 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475922+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475922+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475923+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447592+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 345 + }, + "imageDetail": { + "width": 1466, + "height": 3104 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 41890, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 345 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475926+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475926+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475927+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475924+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 346 + }, + "imageDetail": { + "width": 8659, + "height": 5219 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 346 }" + }, + "fileCreated": "2025-06-21T09:21:52.447593+00:00", + "fileLastModified": "2025-07-14T09:21:52.447593+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475931+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475928+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 347 + }, + "imageDetail": { + "width": 4827, + "height": 6399 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66516, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 347 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475933+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475934+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475932+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 348 + }, + "imageDetail": { + "width": 4134, + "height": 9564 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82517, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 348 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475937+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475938+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475936+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 349 + }, + "imageDetail": { + "width": 6261, + "height": 2321 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30395, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 349 }" + }, + "fileCreated": "2025-06-21T09:21:52.447594+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475941+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 350 + }, + "imageDetail": { + "width": 5775, + "height": 3687 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 85008, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 350 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475944+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475944+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475942+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 351 + }, + "imageDetail": { + "width": 8148, + "height": 5439 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 85450, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 351 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475948+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475948+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475949+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475946+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 352 + }, + "imageDetail": { + "width": 129, + "height": 4014 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 352 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475952+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475953+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447595+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 353 + }, + "imageDetail": { + "width": 8814, + "height": 2190 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47408, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 353 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475956+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475956+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 354 + }, + "imageDetail": { + "width": 3811, + "height": 9276 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25942, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 354 }" + }, + "fileCreated": "2025-06-21T09:21:52.4475959+00:00", + "fileLastModified": "2025-07-14T09:21:52.447596+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447596+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475958+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 355 + }, + "imageDetail": { + "width": 9528, + "height": 6341 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28431, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 355 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476002+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476002+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 356 + }, + "imageDetail": { + "width": 3009, + "height": 3697 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23711, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 356 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476006+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476006+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476007+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 357 + }, + "imageDetail": { + "width": 9647, + "height": 9855 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66004, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 357 }" + }, + "fileCreated": "2025-06-21T09:21:52.447601+00:00", + "fileLastModified": "2025-07-14T09:21:52.447601+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 358 + }, + "imageDetail": { + "width": 6450, + "height": 4746 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 358 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476013+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476014+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476012+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 359 + }, + "imageDetail": { + "width": 4206, + "height": 4608 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30918, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 359 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476017+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476018+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476018+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476015+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 360 + }, + "imageDetail": { + "width": 8287, + "height": 7445 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58024, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 360 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476021+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476022+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476019+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 361 + }, + "imageDetail": { + "width": 1724, + "height": 8967 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25826, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 361 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476024+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476025+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476023+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 362 + }, + "imageDetail": { + "width": 4874, + "height": 9540 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47895, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 362 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476028+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476028+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476029+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476026+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 363 + }, + "imageDetail": { + "width": 4798, + "height": 5921 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31582, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 363 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476032+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476033+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447603+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 364 + }, + "imageDetail": { + "width": 8745, + "height": 8476 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 79510, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 364 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476036+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476036+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 365 + }, + "imageDetail": { + "width": 6245, + "height": 5860 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90389, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 365 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447604+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 366 + }, + "imageDetail": { + "width": 1210, + "height": 4041 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33527, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 366 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476043+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476043+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476041+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 367 + }, + "imageDetail": { + "width": 7236, + "height": 8227 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62084, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 367 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 368 + }, + "imageDetail": { + "width": 727, + "height": 5493 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42780, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 368 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476051+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476051+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476052+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 369 + }, + "imageDetail": { + "width": 4862, + "height": 2378 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 369 }" + }, + "fileCreated": "2025-06-21T09:21:52.447609+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476089+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 370 + }, + "imageDetail": { + "width": 3161, + "height": 2615 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 70546, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 370 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476094+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476095+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476095+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476092+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 371 + }, + "imageDetail": { + "width": 9772, + "height": 3466 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 371 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476098+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476099+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 372 + }, + "imageDetail": { + "width": 7227, + "height": 6994 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37372, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 372 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476102+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476102+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 373 + }, + "imageDetail": { + "width": 9815, + "height": 9675 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96798, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 373 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476105+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476106+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 374 + }, + "imageDetail": { + "width": 6144, + "height": 6814 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 374 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476109+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476109+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 375 + }, + "imageDetail": { + "width": 2829, + "height": 9892 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38688, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 375 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476112+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476113+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476113+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476111+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 376 + }, + "imageDetail": { + "width": 928, + "height": 4404 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31336, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 376 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476116+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476117+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476117+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 377 + }, + "imageDetail": { + "width": 3143, + "height": 4217 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52139, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 377 }" + }, + "fileCreated": "2025-06-21T09:21:52.447612+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476121+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476119+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 378 + }, + "imageDetail": { + "width": 280, + "height": 2142 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20311, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 378 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 379 + }, + "imageDetail": { + "width": 4603, + "height": 3485 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 68865, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 379 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476128+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 380 + }, + "imageDetail": { + "width": 9008, + "height": 9175 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38349, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 380 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476132+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 381 + }, + "imageDetail": { + "width": 8776, + "height": 5136 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98519, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 381 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476135+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476136+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476133+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 382 + }, + "imageDetail": { + "width": 4503, + "height": 2703 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 382 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476139+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476139+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447614+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 383 + }, + "imageDetail": { + "width": 8043, + "height": 2123 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 383 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476167+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476168+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476168+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476166+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 384 + }, + "imageDetail": { + "width": 7231, + "height": 7458 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90358, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 384 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476171+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476172+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 385 + }, + "imageDetail": { + "width": 1641, + "height": 2285 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 81129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 385 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476175+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476175+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476173+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 386 + }, + "imageDetail": { + "width": 182, + "height": 3852 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31883, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 386 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476178+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476179+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476179+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 387 + }, + "imageDetail": { + "width": 4451, + "height": 3802 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46682, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 387 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476182+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476183+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476184+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476181+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 388 + }, + "imageDetail": { + "width": 1163, + "height": 6407 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86880, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 388 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476186+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476187+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476185+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 389 + }, + "imageDetail": { + "width": 6219, + "height": 8892 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23134, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 389 }" + }, + "fileCreated": "2025-06-21T09:21:52.447619+00:00", + "fileLastModified": "2025-07-14T09:21:52.447619+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 390 + }, + "imageDetail": { + "width": 1536, + "height": 8472 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90944, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 390 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476193+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476194+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476192+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 391 + }, + "imageDetail": { + "width": 9734, + "height": 8999 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 85170, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 391 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476197+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476198+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 392 + }, + "imageDetail": { + "width": 9450, + "height": 5631 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21800, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 392 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476201+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476201+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476202+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476199+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 393 + }, + "imageDetail": { + "width": 3489, + "height": 4585 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74448, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 393 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476205+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476205+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 394 + }, + "imageDetail": { + "width": 8287, + "height": 2936 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31063, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 394 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476208+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476209+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476207+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 395 + }, + "imageDetail": { + "width": 8674, + "height": 9408 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64361, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 395 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476212+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476212+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447621+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 396 + }, + "imageDetail": { + "width": 9002, + "height": 4543 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73928, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 396 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476245+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476246+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 397 + }, + "imageDetail": { + "width": 1254, + "height": 2451 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62238, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 397 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476249+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476249+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476247+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 398 + }, + "imageDetail": { + "width": 1046, + "height": 5322 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88597, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 398 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476253+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476253+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476251+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 399 + }, + "imageDetail": { + "width": 6664, + "height": 8400 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 399 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476256+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 400 + }, + "imageDetail": { + "width": 8609, + "height": 9681 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80101, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 400 }" + }, + "fileCreated": "2025-06-21T09:21:52.447626+00:00", + "fileLastModified": "2025-07-14T09:21:52.447626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476258+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 401 + }, + "imageDetail": { + "width": 2373, + "height": 5404 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33523, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 401 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476263+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476263+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476264+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476261+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 402 + }, + "imageDetail": { + "width": 2240, + "height": 3805 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 402 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476267+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 403 + }, + "imageDetail": { + "width": 4693, + "height": 8449 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44165, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 403 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476271+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476271+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476272+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476269+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 404 + }, + "imageDetail": { + "width": 9809, + "height": 7613 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27905, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 404 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476276+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 405 + }, + "imageDetail": { + "width": 5322, + "height": 4859 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 405 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476279+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 406 + }, + "imageDetail": { + "width": 5143, + "height": 4546 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40118, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 406 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 407 + }, + "imageDetail": { + "width": 6904, + "height": 3620 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36158, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 407 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476285+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476286+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476286+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 408 + }, + "imageDetail": { + "width": 6889, + "height": 2910 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 58640, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 408 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447629+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447629+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 409 + }, + "imageDetail": { + "width": 7689, + "height": 3495 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38919, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 409 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476294+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476294+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 410 + }, + "imageDetail": { + "width": 7991, + "height": 2970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67564, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 410 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476323+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476324+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476322+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 411 + }, + "imageDetail": { + "width": 1128, + "height": 8878 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76910, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 411 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476327+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476328+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476328+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476326+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 412 + }, + "imageDetail": { + "width": 2726, + "height": 7026 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35610, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 412 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476331+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476332+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447633+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 413 + }, + "imageDetail": { + "width": 537, + "height": 7164 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 413 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476335+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476336+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 414 + }, + "imageDetail": { + "width": 3434, + "height": 9684 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47506, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 414 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476339+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476339+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447634+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476337+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 415 + }, + "imageDetail": { + "width": 2481, + "height": 8956 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97933, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 415 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476343+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476343+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 416 + }, + "imageDetail": { + "width": 6289, + "height": 7356 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65722, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 416 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476346+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476347+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476345+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 417 + }, + "imageDetail": { + "width": 5927, + "height": 8938 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32665, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 417 }" + }, + "fileCreated": "2025-06-21T09:21:52.447635+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476351+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 418 + }, + "imageDetail": { + "width": 5466, + "height": 4407 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22058, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 418 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476354+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476354+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476355+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476352+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 419 + }, + "imageDetail": { + "width": 7025, + "height": 7962 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37507, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 419 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476358+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 420 + }, + "imageDetail": { + "width": 9928, + "height": 3951 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20456, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 420 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476361+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476362+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447636+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 421 + }, + "imageDetail": { + "width": 6019, + "height": 7197 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 421 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476364+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476365+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476365+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476363+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 422 + }, + "imageDetail": { + "width": 9337, + "height": 5562 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26086, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 422 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476369+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 423 + }, + "imageDetail": { + "width": 2461, + "height": 2208 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63792, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 423 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476372+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 424 + }, + "imageDetail": { + "width": 2841, + "height": 9195 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24382, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 424 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476399+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476399+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44764+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476397+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 425 + }, + "imageDetail": { + "width": 4412, + "height": 5284 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93533, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 425 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 426 + }, + "imageDetail": { + "width": 6930, + "height": 3544 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 426 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476406+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476407+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476407+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476405+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 427 + }, + "imageDetail": { + "width": 2049, + "height": 3571 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39407, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 427 }" + }, + "fileCreated": "2025-06-21T09:21:52.447641+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476411+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 428 + }, + "imageDetail": { + "width": 4332, + "height": 3877 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 74144, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 428 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476414+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476415+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476413+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 429 + }, + "imageDetail": { + "width": 3315, + "height": 4892 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91810, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 429 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476418+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476418+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476419+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476416+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 430 + }, + "imageDetail": { + "width": 8970, + "height": 3931 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24515, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 430 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476422+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476422+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447642+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 431 + }, + "imageDetail": { + "width": 8287, + "height": 9755 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57571, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 431 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476425+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476426+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476426+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 432 + }, + "imageDetail": { + "width": 6159, + "height": 6580 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 432 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476429+00:00", + "fileLastModified": "2025-07-14T09:21:52.447643+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476428+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 433 + }, + "imageDetail": { + "width": 5098, + "height": 6362 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 433 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476433+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476433+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476431+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 434 + }, + "imageDetail": { + "width": 4502, + "height": 5761 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 56269, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 434 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476436+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476437+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476435+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 435 + }, + "imageDetail": { + "width": 9040, + "height": 7514 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74555, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 435 }" + }, + "fileCreated": "2025-06-21T09:21:52.447644+00:00", + "fileLastModified": "2025-07-14T09:21:52.447644+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476441+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476438+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 436 + }, + "imageDetail": { + "width": 2639, + "height": 6709 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 436 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476444+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476444+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476442+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 437 + }, + "imageDetail": { + "width": 334, + "height": 9858 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64328, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 437 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476471+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476471+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476469+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 438 + }, + "imageDetail": { + "width": 7498, + "height": 5317 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35398, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 438 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476475+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 439 + }, + "imageDetail": { + "width": 3463, + "height": 8477 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59695, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 439 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476478+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476476+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 440 + }, + "imageDetail": { + "width": 4573, + "height": 3507 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58348, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 440 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476481+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476482+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476482+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447648+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 441 + }, + "imageDetail": { + "width": 4843, + "height": 3330 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39875, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 441 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476485+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476486+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476484+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 442 + }, + "imageDetail": { + "width": 9660, + "height": 6247 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31045, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 442 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476489+00:00", + "fileLastModified": "2025-07-14T09:21:52.447649+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447649+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476488+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 443 + }, + "imageDetail": { + "width": 5782, + "height": 9862 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 443 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476493+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476494+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476494+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476492+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 444 + }, + "imageDetail": { + "width": 3023, + "height": 4483 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 444 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476497+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476498+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476496+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 445 + }, + "imageDetail": { + "width": 8057, + "height": 5510 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45865, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 445 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476501+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476501+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476502+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 446 + }, + "imageDetail": { + "width": 3969, + "height": 7459 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 446 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476505+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476505+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 447 + }, + "imageDetail": { + "width": 8129, + "height": 8927 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35699, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 447 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476508+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476509+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476509+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476507+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 448 + }, + "imageDetail": { + "width": 7203, + "height": 8100 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 80520, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 448 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476512+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476512+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476513+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 449 + }, + "imageDetail": { + "width": 4809, + "height": 2781 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98658, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 449 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476516+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476516+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 450 + }, + "imageDetail": { + "width": 7323, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55461, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 450 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476519+00:00", + "fileLastModified": "2025-07-14T09:21:52.447652+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476518+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 451 + }, + "imageDetail": { + "width": 1055, + "height": 7088 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55722, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 451 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476539+00:00", + "fileLastModified": "2025-07-14T09:21:52.447654+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447654+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 452 + }, + "imageDetail": { + "width": 7904, + "height": 3040 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59339, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 452 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476543+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476544+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 453 + }, + "imageDetail": { + "width": 6032, + "height": 5337 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46807, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 453 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476547+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476545+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 454 + }, + "imageDetail": { + "width": 7094, + "height": 2798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 454 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 455 + }, + "imageDetail": { + "width": 7435, + "height": 3009 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 455 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476555+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476555+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476556+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476553+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 456 + }, + "imageDetail": { + "width": 9051, + "height": 7694 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35357, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 456 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476559+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476559+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 457 + }, + "imageDetail": { + "width": 9149, + "height": 6740 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76128, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 457 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476562+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476563+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476563+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447656+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 458 + }, + "imageDetail": { + "width": 6104, + "height": 9686 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67159, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 458 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 459 + }, + "imageDetail": { + "width": 7248, + "height": 5398 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59501, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 459 }" + }, + "fileCreated": "2025-06-21T09:21:52.447657+00:00", + "fileLastModified": "2025-07-14T09:21:52.447657+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 460 + }, + "imageDetail": { + "width": 7643, + "height": 4927 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 89570, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 460 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476573+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 461 + }, + "imageDetail": { + "width": 2124, + "height": 6707 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86952, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 461 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476577+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476577+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476575+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 462 + }, + "imageDetail": { + "width": 7358, + "height": 4229 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 462 }" + }, + "fileCreated": "2025-06-21T09:21:52.447658+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 463 + }, + "imageDetail": { + "width": 3925, + "height": 7076 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24332, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 463 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476584+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476584+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476585+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476582+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 464 + }, + "imageDetail": { + "width": 7718, + "height": 2506 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80302, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 464 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476625+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476624+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 465 + }, + "imageDetail": { + "width": 2764, + "height": 3984 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29408, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 465 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476629+00:00", + "fileLastModified": "2025-07-14T09:21:52.447663+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 466 + }, + "imageDetail": { + "width": 6231, + "height": 2311 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49930, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 466 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476633+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476633+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476634+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476631+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 467 + }, + "imageDetail": { + "width": 6378, + "height": 8703 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75981, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 467 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476637+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476637+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476635+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 468 + }, + "imageDetail": { + "width": 3308, + "height": 4850 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92048, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 468 }" + }, + "fileCreated": "2025-06-21T09:21:52.447664+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476641+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476641+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476639+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 469 + }, + "imageDetail": { + "width": 1023, + "height": 8008 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99062, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 469 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476644+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476645+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 470 + }, + "imageDetail": { + "width": 1901, + "height": 8386 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54674, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 470 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476648+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476648+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476649+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 471 + }, + "imageDetail": { + "width": 9198, + "height": 9704 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53027, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 471 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476652+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 472 + }, + "imageDetail": { + "width": 8714, + "height": 4685 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 472 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476655+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476656+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476656+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 473 + }, + "imageDetail": { + "width": 4495, + "height": 9895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73196, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 473 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476659+00:00", + "fileLastModified": "2025-07-14T09:21:52.447666+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447666+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 474 + }, + "imageDetail": { + "width": 859, + "height": 2357 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71204, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 474 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476663+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476664+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476662+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 475 + }, + "imageDetail": { + "width": 3715, + "height": 5765 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43668, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 475 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 476 + }, + "imageDetail": { + "width": 8500, + "height": 2179 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49774, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 476 }" + }, + "fileCreated": "2025-06-21T09:21:52.447667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476669+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 477 + }, + "imageDetail": { + "width": 7995, + "height": 5121 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 477 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476675+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 478 + }, + "imageDetail": { + "width": 8228, + "height": 5255 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97134, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 478 }" + }, + "fileCreated": "2025-06-21T09:21:52.447677+00:00", + "fileLastModified": "2025-07-14T09:21:52.447677+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476771+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476767+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 479 + }, + "imageDetail": { + "width": 5532, + "height": 5237 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 50455, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 479 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476774+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476773+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 480 + }, + "imageDetail": { + "width": 759, + "height": 4341 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56370, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 480 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476777+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476778+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476778+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476776+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 481 + }, + "imageDetail": { + "width": 349, + "height": 3580 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97729, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 481 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476782+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476782+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476782+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447678+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 482 + }, + "imageDetail": { + "width": 7774, + "height": 6457 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62859, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 482 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476785+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476786+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 483 + }, + "imageDetail": { + "width": 5537, + "height": 2572 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 65012, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 483 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476789+00:00", + "fileLastModified": "2025-07-14T09:21:52.447679+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476788+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 484 + }, + "imageDetail": { + "width": 4191, + "height": 9752 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20278, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 484 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476793+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476792+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 485 + }, + "imageDetail": { + "width": 302, + "height": 9344 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60423, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 485 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476797+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476795+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 486 + }, + "imageDetail": { + "width": 7831, + "height": 5318 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 486 }" + }, + "fileCreated": "2025-06-21T09:21:52.44768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476801+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476801+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 487 + }, + "imageDetail": { + "width": 2239, + "height": 8784 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86442, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 487 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476804+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476805+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476803+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 488 + }, + "imageDetail": { + "width": 2070, + "height": 6980 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57817, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 488 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476808+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476809+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 489 + }, + "imageDetail": { + "width": 7167, + "height": 9165 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66895, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 489 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476812+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476812+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447681+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 490 + }, + "imageDetail": { + "width": 2342, + "height": 4238 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 55866, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 490 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476815+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476816+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 491 + }, + "imageDetail": { + "width": 1302, + "height": 5032 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23543, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 491 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476847+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476847+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476848+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476817+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 492 + }, + "imageDetail": { + "width": 8888, + "height": 9212 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 492 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476851+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476852+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 493 + }, + "imageDetail": { + "width": 2880, + "height": 3814 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29088, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 493 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476855+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476855+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476853+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 494 + }, + "imageDetail": { + "width": 8444, + "height": 2338 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 494 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476859+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476859+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447686+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476857+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 495 + }, + "imageDetail": { + "width": 4063, + "height": 9781 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 79793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 495 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476863+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476863+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476864+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476861+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 496 + }, + "imageDetail": { + "width": 2131, + "height": 8662 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65747, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 496 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476867+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476867+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 497 + }, + "imageDetail": { + "width": 8073, + "height": 4105 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 497 }" + }, + "fileCreated": "2025-06-21T09:21:52.447687+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476871+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476869+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 498 + }, + "imageDetail": { + "width": 5406, + "height": 2521 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38343, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 498 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476874+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476874+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476875+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476872+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 499 + }, + "imageDetail": { + "width": 2440, + "height": 2561 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26052, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 499 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476878+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476878+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476879+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476876+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 500 + }, + "imageDetail": { + "width": 3718, + "height": 6330 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63838, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 500 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476882+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476882+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447688+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 501 + }, + "imageDetail": { + "width": 7771, + "height": 6900 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 501 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476885+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476886+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476884+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 502 + }, + "imageDetail": { + "width": 4804, + "height": 8996 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80519, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 502 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476889+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476889+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447689+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 503 + }, + "imageDetail": { + "width": 8657, + "height": 7541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 503 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476893+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 504 + }, + "imageDetail": { + "width": 7356, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73479, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 504 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476897+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476895+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 505 + }, + "imageDetail": { + "width": 6520, + "height": 3031 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 81341, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 505 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476925+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476925+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476926+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476923+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 506 + }, + "imageDetail": { + "width": 8237, + "height": 7628 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 56730, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 506 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476929+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476929+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 507 + }, + "imageDetail": { + "width": 3632, + "height": 3054 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45389, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 507 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476932+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476931+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 508 + }, + "imageDetail": { + "width": 8822, + "height": 8306 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75112, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 508 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476936+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476936+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 509 + }, + "imageDetail": { + "width": 5079, + "height": 8708 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22358, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 509 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476939+00:00", + "fileLastModified": "2025-07-14T09:21:52.447694+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447694+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476938+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 510 + }, + "imageDetail": { + "width": 8115, + "height": 6848 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 510 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476943+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476943+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476941+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 511 + }, + "imageDetail": { + "width": 9101, + "height": 5287 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 511 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476946+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476947+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476947+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 512 + }, + "imageDetail": { + "width": 9267, + "height": 2183 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43715, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 512 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476951+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476951+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476952+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476949+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 513 + }, + "imageDetail": { + "width": 5331, + "height": 9236 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23114, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 513 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476955+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476955+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476955+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476953+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 514 + }, + "imageDetail": { + "width": 2124, + "height": 2291 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 36396, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 514 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476991+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476991+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 515 + }, + "imageDetail": { + "width": 5929, + "height": 6892 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 515 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476994+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476995+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476995+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476993+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 516 + }, + "imageDetail": { + "width": 1438, + "height": 5830 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59256, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 516 }" + }, + "fileCreated": "2025-06-21T09:21:52.4476998+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476999+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476999+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476997+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 517 + }, + "imageDetail": { + "width": 692, + "height": 8781 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 48579, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 517 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477002+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477003+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 518 + }, + "imageDetail": { + "width": 7450, + "height": 5314 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45320, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 518 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477005+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477006+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477007+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 519 + }, + "imageDetail": { + "width": 9592, + "height": 9445 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 85603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 519 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477033+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477033+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477031+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 520 + }, + "imageDetail": { + "width": 2347, + "height": 6590 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 520 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477037+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477037+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477037+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477035+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 521 + }, + "imageDetail": { + "width": 8203, + "height": 7610 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79906, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 521 }" + }, + "fileCreated": "2025-06-21T09:21:52.447704+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477041+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477039+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 522 + }, + "imageDetail": { + "width": 8691, + "height": 9846 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 41511, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 522 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477044+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477045+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477045+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477043+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 523 + }, + "imageDetail": { + "width": 953, + "height": 5603 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86812, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 523 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477048+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477048+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477049+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477046+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 524 + }, + "imageDetail": { + "width": 5936, + "height": 5145 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 524 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477052+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477052+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447705+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 525 + }, + "imageDetail": { + "width": 2178, + "height": 6737 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 95178, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 525 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477055+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477056+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477056+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 526 + }, + "imageDetail": { + "width": 2770, + "height": 3251 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 526 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477059+00:00", + "fileLastModified": "2025-07-14T09:21:52.447706+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447706+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477058+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 527 + }, + "imageDetail": { + "width": 3770, + "height": 6447 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57446, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 527 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477063+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477062+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 528 + }, + "imageDetail": { + "width": 9396, + "height": 4357 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 528 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477067+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477067+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477067+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477065+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 529 + }, + "imageDetail": { + "width": 4037, + "height": 2707 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43529, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 529 }" + }, + "fileCreated": "2025-06-21T09:21:52.447707+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477071+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477069+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 530 + }, + "imageDetail": { + "width": 9644, + "height": 5598 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 530 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477074+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477074+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477075+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 531 + }, + "imageDetail": { + "width": 3219, + "height": 8946 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 531 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477078+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477078+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477078+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477076+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 532 + }, + "imageDetail": { + "width": 8678, + "height": 3693 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45175, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 532 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477105+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477105+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447708+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 533 + }, + "imageDetail": { + "width": 7958, + "height": 6037 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90107, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 533 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477108+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477109+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477109+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 534 + }, + "imageDetail": { + "width": 1256, + "height": 4232 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47265, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 534 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477112+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477113+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477111+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 535 + }, + "imageDetail": { + "width": 5017, + "height": 8960 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 535 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477116+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477116+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477117+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477114+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 536 + }, + "imageDetail": { + "width": 9419, + "height": 9561 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 66367, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 536 }" + }, + "fileCreated": "2025-06-21T09:21:52.447712+00:00", + "fileLastModified": "2025-07-14T09:21:52.447712+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477118+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 537 + }, + "imageDetail": { + "width": 7173, + "height": 3590 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76409, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 537 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 538 + }, + "imageDetail": { + "width": 7264, + "height": 7529 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64478, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 538 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477128+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 539 + }, + "imageDetail": { + "width": 4688, + "height": 7950 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 71580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 539 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477132+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447713+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 540 + }, + "imageDetail": { + "width": 9021, + "height": 3258 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 30575, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 540 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477136+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 541 + }, + "imageDetail": { + "width": 4616, + "height": 7102 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74635, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 541 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477139+00:00", + "fileLastModified": "2025-07-14T09:21:52.447714+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477138+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 542 + }, + "imageDetail": { + "width": 2988, + "height": 3720 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50638, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 542 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477143+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 543 + }, + "imageDetail": { + "width": 360, + "height": 3827 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 543 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477146+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477147+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477147+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 544 + }, + "imageDetail": { + "width": 3364, + "height": 7391 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 544 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477151+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477151+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 545 + }, + "imageDetail": { + "width": 8246, + "height": 5221 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88858, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 545 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477154+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477155+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477155+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 546 + }, + "imageDetail": { + "width": 1110, + "height": 8407 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 546 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477174+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477175+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477175+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 547 + }, + "imageDetail": { + "width": 9509, + "height": 2400 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82375, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 547 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477178+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477179+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477179+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477177+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 548 + }, + "imageDetail": { + "width": 1998, + "height": 6683 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 548 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477182+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477183+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 549 + }, + "imageDetail": { + "width": 2117, + "height": 5820 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 83936, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 549 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477186+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477186+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477187+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477184+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 550 + }, + "imageDetail": { + "width": 9922, + "height": 5723 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85455, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 550 }" + }, + "fileCreated": "2025-06-21T09:21:52.447719+00:00", + "fileLastModified": "2025-07-14T09:21:52.447719+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477191+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 551 + }, + "imageDetail": { + "width": 948, + "height": 2997 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54259, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 551 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477193+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477194+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477192+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 552 + }, + "imageDetail": { + "width": 8589, + "height": 2861 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38405, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 552 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477197+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477198+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477198+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 553 + }, + "imageDetail": { + "width": 599, + "height": 4595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93207, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 553 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477201+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44772+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 554 + }, + "imageDetail": { + "width": 8272, + "height": 5283 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41952, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 554 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477205+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477205+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477206+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 555 + }, + "imageDetail": { + "width": 7277, + "height": 7617 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58701, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 555 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477209+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477209+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477209+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477207+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 556 + }, + "imageDetail": { + "width": 6074, + "height": 3110 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30268, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 556 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477212+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477213+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 557 + }, + "imageDetail": { + "width": 9669, + "height": 5451 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32933, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 557 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477216+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477214+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 558 + }, + "imageDetail": { + "width": 2418, + "height": 6761 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50015, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 558 }" + }, + "fileCreated": "2025-06-21T09:21:52.447722+00:00", + "fileLastModified": "2025-07-14T09:21:52.447722+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 559 + }, + "imageDetail": { + "width": 5651, + "height": 7051 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61081, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 559 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477258+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477259+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477259+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 560 + }, + "imageDetail": { + "width": 6650, + "height": 5073 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20676, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 560 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477262+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477263+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477263+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477261+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 561 + }, + "imageDetail": { + "width": 3589, + "height": 5037 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49658, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 561 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477266+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477267+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 562 + }, + "imageDetail": { + "width": 5219, + "height": 6365 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70488, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 562 }" + }, + "fileCreated": "2025-06-21T09:21:52.447727+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477271+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477271+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477269+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 563 + }, + "imageDetail": { + "width": 6518, + "height": 8552 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24875, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 563 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477274+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477275+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477275+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 564 + }, + "imageDetail": { + "width": 8615, + "height": 9081 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86313, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 564 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477278+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 565 + }, + "imageDetail": { + "width": 4941, + "height": 5090 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 565 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477282+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 566 + }, + "imageDetail": { + "width": 3984, + "height": 9433 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40784, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 566 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477285+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477286+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 567 + }, + "imageDetail": { + "width": 7279, + "height": 5428 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90041, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 567 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477289+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477289+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477287+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 568 + }, + "imageDetail": { + "width": 7385, + "height": 6596 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50088, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 568 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477292+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477293+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477291+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 569 + }, + "imageDetail": { + "width": 9586, + "height": 3785 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87630, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 569 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477296+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477296+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 570 + }, + "imageDetail": { + "width": 5782, + "height": 2665 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 98725, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 570 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477299+00:00", + "fileLastModified": "2025-07-14T09:21:52.44773+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 571 + }, + "imageDetail": { + "width": 6725, + "height": 6937 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63777, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 571 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477303+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477304+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 572 + }, + "imageDetail": { + "width": 7281, + "height": 7135 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43630, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 572 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477307+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477305+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 573 + }, + "imageDetail": { + "width": 9154, + "height": 6207 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 573 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477441+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477442+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477438+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 574 + }, + "imageDetail": { + "width": 7090, + "height": 2984 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 50044, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 574 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477445+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477446+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477446+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477444+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 575 + }, + "imageDetail": { + "width": 2667, + "height": 8467 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67470, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 575 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477449+00:00", + "fileLastModified": "2025-07-14T09:21:52.447745+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477448+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 576 + }, + "imageDetail": { + "width": 4645, + "height": 3089 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61770, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 576 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477453+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477454+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477454+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477451+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 577 + }, + "imageDetail": { + "width": 2784, + "height": 4695 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82605, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 577 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477457+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477458+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 578 + }, + "imageDetail": { + "width": 6209, + "height": 2223 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84922, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 578 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477461+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477461+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477462+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477459+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 579 + }, + "imageDetail": { + "width": 1413, + "height": 8072 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 579 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477465+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477465+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477463+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 580 + }, + "imageDetail": { + "width": 8056, + "height": 4028 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 76528, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 580 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477468+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477469+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477467+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 581 + }, + "imageDetail": { + "width": 7678, + "height": 6768 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 86161, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 581 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477471+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477472+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447747+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 582 + }, + "imageDetail": { + "width": 9435, + "height": 5427 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45158, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 582 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477476+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477476+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477474+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 583 + }, + "imageDetail": { + "width": 9178, + "height": 6384 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30638, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 583 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477479+00:00", + "fileLastModified": "2025-07-14T09:21:52.447748+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477478+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 584 + }, + "imageDetail": { + "width": 6663, + "height": 3730 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 584 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477483+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477483+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477484+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477481+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 585 + }, + "imageDetail": { + "width": 324, + "height": 5504 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 585 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477487+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477487+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 586 + }, + "imageDetail": { + "width": 9999, + "height": 8393 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 586 }" + }, + "fileCreated": "2025-06-21T09:21:52.447749+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477491+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477491+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 587 + }, + "imageDetail": { + "width": 1512, + "height": 6830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26526, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 587 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477522+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477522+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477522+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447752+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 588 + }, + "imageDetail": { + "width": 2865, + "height": 9230 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87741, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 588 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477525+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477526+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477524+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 589 + }, + "imageDetail": { + "width": 5443, + "height": 6072 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33936, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 589 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477529+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477529+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 590 + }, + "imageDetail": { + "width": 6222, + "height": 6964 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85731, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 590 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477532+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477533+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477533+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477531+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 591 + }, + "imageDetail": { + "width": 6803, + "height": 8075 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 591 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477536+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477537+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477535+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 592 + }, + "imageDetail": { + "width": 9394, + "height": 7486 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21049, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 592 }" + }, + "fileCreated": "2025-06-21T09:21:52.447754+00:00", + "fileLastModified": "2025-07-14T09:21:52.447754+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 593 + }, + "imageDetail": { + "width": 668, + "height": 8821 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96192, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 593 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477543+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477544+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477544+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 594 + }, + "imageDetail": { + "width": 7530, + "height": 6387 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29914, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 594 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477547+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477548+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477546+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 595 + }, + "imageDetail": { + "width": 1306, + "height": 2497 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54702, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 595 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 596 + }, + "imageDetail": { + "width": 4485, + "height": 2825 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67467, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 596 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477555+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477555+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477553+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 597 + }, + "imageDetail": { + "width": 1969, + "height": 7498 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 597 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477558+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477559+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477559+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 598 + }, + "imageDetail": { + "width": 3439, + "height": 6026 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 79765, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 598 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477562+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477563+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477561+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 599 + }, + "imageDetail": { + "width": 6965, + "height": 7787 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53219, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 599 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477566+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477567+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 600 + }, + "imageDetail": { + "width": 4051, + "height": 7507 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33182, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 600 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477601+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477601+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477602+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 601 + }, + "imageDetail": { + "width": 3909, + "height": 7553 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 601 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477605+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477606+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477604+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 602 + }, + "imageDetail": { + "width": 1257, + "height": 7989 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 86919, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 602 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477608+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477609+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477609+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 603 + }, + "imageDetail": { + "width": 466, + "height": 8976 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63369, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 603 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477613+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477613+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477611+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 604 + }, + "imageDetail": { + "width": 6012, + "height": 3426 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44224, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 604 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477616+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477617+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477615+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 605 + }, + "imageDetail": { + "width": 276, + "height": 2076 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57715, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 605 }" + }, + "fileCreated": "2025-06-21T09:21:52.447762+00:00", + "fileLastModified": "2025-07-14T09:21:52.447762+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477621+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 606 + }, + "imageDetail": { + "width": 8138, + "height": 5293 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74629, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 606 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477624+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477624+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477622+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 607 + }, + "imageDetail": { + "width": 607, + "height": 5464 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92641, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 607 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477627+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477628+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477628+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477626+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 608 + }, + "imageDetail": { + "width": 8767, + "height": 2978 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88524, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 608 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477631+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477632+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477632+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 609 + }, + "imageDetail": { + "width": 2846, + "height": 3210 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 609 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477635+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477636+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477634+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 610 + }, + "imageDetail": { + "width": 7404, + "height": 6214 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 610 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477639+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477639+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 611 + }, + "imageDetail": { + "width": 1749, + "height": 4981 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86343, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 611 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477642+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477643+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477641+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 612 + }, + "imageDetail": { + "width": 5812, + "height": 6469 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23992, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 612 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477646+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477646+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 613 + }, + "imageDetail": { + "width": 8017, + "height": 4061 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61290, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 613 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477649+00:00", + "fileLastModified": "2025-07-14T09:21:52.447765+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447765+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477648+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 614 + }, + "imageDetail": { + "width": 5846, + "height": 5459 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95165, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 614 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477679+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477679+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 615 + }, + "imageDetail": { + "width": 8167, + "height": 4314 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 81973, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 615 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477682+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477683+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477681+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 616 + }, + "imageDetail": { + "width": 6770, + "height": 6335 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 616 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477686+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477686+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477687+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477684+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 617 + }, + "imageDetail": { + "width": 9145, + "height": 4435 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65536, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 617 }" + }, + "fileCreated": "2025-06-21T09:21:52.447769+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477691+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477691+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477688+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 618 + }, + "imageDetail": { + "width": 9468, + "height": 6838 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60818, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 618 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477694+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477695+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 619 + }, + "imageDetail": { + "width": 4302, + "height": 8665 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72678, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 619 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477698+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477699+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477697+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 620 + }, + "imageDetail": { + "width": 1647, + "height": 3647 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71831, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 620 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477702+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 621 + }, + "imageDetail": { + "width": 7578, + "height": 7967 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96712, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 621 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477706+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477706+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477704+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 622 + }, + "imageDetail": { + "width": 9628, + "height": 7630 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97152, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 622 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477709+00:00", + "fileLastModified": "2025-07-14T09:21:52.447771+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447771+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477707+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 623 + }, + "imageDetail": { + "width": 1434, + "height": 3273 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41027, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 623 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477713+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477713+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477711+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 624 + }, + "imageDetail": { + "width": 4307, + "height": 7380 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34164, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 624 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477716+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477717+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477715+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 625 + }, + "imageDetail": { + "width": 1710, + "height": 9073 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75519, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 625 }" + }, + "fileCreated": "2025-06-21T09:21:52.447772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477721+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477719+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 626 + }, + "imageDetail": { + "width": 1912, + "height": 5228 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23232, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 626 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477724+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477724+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 627 + }, + "imageDetail": { + "width": 3232, + "height": 7067 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82579, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 627 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477728+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477728+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477729+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 628 + }, + "imageDetail": { + "width": 2914, + "height": 3860 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 628 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477757+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477758+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477758+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477756+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 629 + }, + "imageDetail": { + "width": 590, + "height": 2926 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77442, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 629 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477761+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477762+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447776+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 630 + }, + "imageDetail": { + "width": 9511, + "height": 5764 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 630 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477765+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477765+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 631 + }, + "imageDetail": { + "width": 6480, + "height": 6251 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 631 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477769+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477767+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 632 + }, + "imageDetail": { + "width": 9500, + "height": 9947 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 632 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477772+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 633 + }, + "imageDetail": { + "width": 6823, + "height": 9218 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33829, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 633 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477775+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477776+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477776+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477774+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 634 + }, + "imageDetail": { + "width": 2539, + "height": 7679 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 36929, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 634 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477779+00:00", + "fileLastModified": "2025-07-14T09:21:52.447778+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 635 + }, + "imageDetail": { + "width": 8459, + "height": 6614 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 635 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477783+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 636 + }, + "imageDetail": { + "width": 5265, + "height": 3383 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24996, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 636 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477786+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477787+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477787+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477785+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 637 + }, + "imageDetail": { + "width": 9383, + "height": 3309 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66143, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 637 }" + }, + "fileCreated": "2025-06-21T09:21:52.447779+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477791+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477789+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 638 + }, + "imageDetail": { + "width": 5325, + "height": 3987 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49700, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 638 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477793+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477792+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 639 + }, + "imageDetail": { + "width": 486, + "height": 7375 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54638, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 639 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477798+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477795+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 640 + }, + "imageDetail": { + "width": 4382, + "height": 4451 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 20270, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 640 }" + }, + "fileCreated": "2025-06-21T09:21:52.44778+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477801+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 641 + }, + "imageDetail": { + "width": 5537, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88346, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 641 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477964+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477965+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477802+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 642 + }, + "imageDetail": { + "width": 9991, + "height": 2390 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 642 }" + }, + "fileCreated": "2025-06-21T09:21:52.447797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477971+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477968+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 643 + }, + "imageDetail": { + "width": 4782, + "height": 3781 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77731, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 643 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477974+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477972+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 644 + }, + "imageDetail": { + "width": 5880, + "height": 6707 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 74551, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 644 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477977+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477978+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477976+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 645 + }, + "imageDetail": { + "width": 4327, + "height": 7098 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 645 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477981+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 646 + }, + "imageDetail": { + "width": 7390, + "height": 9487 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 646 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477984+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477985+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477985+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477983+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 647 + }, + "imageDetail": { + "width": 940, + "height": 9174 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 85215, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 647 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477988+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477989+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477989+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 648 + }, + "imageDetail": { + "width": 7149, + "height": 5822 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48676, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 648 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477993+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477993+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477994+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 649 + }, + "imageDetail": { + "width": 9556, + "height": 7297 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94681, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 649 }" + }, + "fileCreated": "2025-06-21T09:21:52.4477997+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477997+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477998+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 650 + }, + "imageDetail": { + "width": 2396, + "height": 8022 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 89105, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 650 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478001+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478001+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478001+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 651 + }, + "imageDetail": { + "width": 223, + "height": 9002 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 651 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478004+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478005+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478005+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478003+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 652 + }, + "imageDetail": { + "width": 224, + "height": 5481 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75911, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 652 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478008+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478006+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 653 + }, + "imageDetail": { + "width": 3672, + "height": 9699 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74981, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 653 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478012+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478011+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 654 + }, + "imageDetail": { + "width": 3003, + "height": 7099 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 654 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478016+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 655 + }, + "imageDetail": { + "width": 8997, + "height": 9239 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54763, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 655 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447804+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447804+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 656 + }, + "imageDetail": { + "width": 7112, + "height": 4432 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 656 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478043+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478044+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 657 + }, + "imageDetail": { + "width": 6888, + "height": 4387 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76819, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 657 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 658 + }, + "imageDetail": { + "width": 3847, + "height": 5388 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87530, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 658 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478051+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478051+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 659 + }, + "imageDetail": { + "width": 5270, + "height": 9431 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87456, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 659 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478054+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478055+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 660 + }, + "imageDetail": { + "width": 3856, + "height": 7952 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 36669, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 660 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478057+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478058+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478058+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478056+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 661 + }, + "imageDetail": { + "width": 8387, + "height": 8383 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78429, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 661 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478061+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478062+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478062+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 662 + }, + "imageDetail": { + "width": 7563, + "height": 9696 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 662 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478065+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478066+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478063+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 663 + }, + "imageDetail": { + "width": 9861, + "height": 9276 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40092, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 663 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478069+00:00", + "fileLastModified": "2025-07-14T09:21:52.447807+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 664 + }, + "imageDetail": { + "width": 3047, + "height": 7525 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73963, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 664 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478073+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478074+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 665 + }, + "imageDetail": { + "width": 8944, + "height": 4015 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53946, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 665 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478077+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 666 + }, + "imageDetail": { + "width": 3121, + "height": 6253 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 666 }" + }, + "fileCreated": "2025-06-21T09:21:52.447808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478081+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478081+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 667 + }, + "imageDetail": { + "width": 3262, + "height": 5291 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80518, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 667 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478084+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478085+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478083+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 668 + }, + "imageDetail": { + "width": 6773, + "height": 5851 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44717, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 668 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478128+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 669 + }, + "imageDetail": { + "width": 7160, + "height": 8654 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38496, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 669 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478132+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478133+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447813+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 670 + }, + "imageDetail": { + "width": 7070, + "height": 2112 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 670 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478136+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478136+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 671 + }, + "imageDetail": { + "width": 9013, + "height": 5801 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 671 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478139+00:00", + "fileLastModified": "2025-07-14T09:21:52.447814+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447814+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478138+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 672 + }, + "imageDetail": { + "width": 3411, + "height": 6732 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 47241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 672 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478143+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478144+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478144+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478142+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 673 + }, + "imageDetail": { + "width": 8825, + "height": 9202 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36338, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 673 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478147+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478147+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 674 + }, + "imageDetail": { + "width": 8693, + "height": 4080 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27969, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 674 }" + }, + "fileCreated": "2025-06-21T09:21:52.447815+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478151+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 675 + }, + "imageDetail": { + "width": 584, + "height": 5197 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51443, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 675 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478154+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478155+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478155+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 676 + }, + "imageDetail": { + "width": 4449, + "height": 7579 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20418, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 676 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478158+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478159+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478157+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 677 + }, + "imageDetail": { + "width": 7564, + "height": 9660 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52533, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 677 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478161+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478162+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 678 + }, + "imageDetail": { + "width": 5009, + "height": 2576 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56608, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 678 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478165+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 679 + }, + "imageDetail": { + "width": 3968, + "height": 5255 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54026, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 679 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478169+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478169+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478167+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 680 + }, + "imageDetail": { + "width": 4592, + "height": 9759 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34879, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 680 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478172+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478173+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 681 + }, + "imageDetail": { + "width": 8016, + "height": 5977 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47817, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 681 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478176+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478176+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478174+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 682 + }, + "imageDetail": { + "width": 3133, + "height": 4255 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 74257, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 682 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478213+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478213+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478214+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 683 + }, + "imageDetail": { + "width": 3105, + "height": 4205 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72973, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 683 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478217+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478215+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 684 + }, + "imageDetail": { + "width": 8997, + "height": 8414 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98373, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 684 }" + }, + "fileCreated": "2025-06-21T09:21:52.447822+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478221+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478221+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478219+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 685 + }, + "imageDetail": { + "width": 853, + "height": 4020 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84924, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 685 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478224+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478225+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478225+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478223+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 686 + }, + "imageDetail": { + "width": 3050, + "height": 3749 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 38911, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 686 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478228+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478229+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 687 + }, + "imageDetail": { + "width": 3140, + "height": 5289 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40489, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 687 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478232+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478232+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478233+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447823+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 688 + }, + "imageDetail": { + "width": 7217, + "height": 3580 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 688 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478236+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478236+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478237+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 689 + }, + "imageDetail": { + "width": 991, + "height": 4631 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99011, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 689 }" + }, + "fileCreated": "2025-06-21T09:21:52.447824+00:00", + "fileLastModified": "2025-07-14T09:21:52.447824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 690 + }, + "imageDetail": { + "width": 7716, + "height": 8993 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 690 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478243+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 691 + }, + "imageDetail": { + "width": 4511, + "height": 4002 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75961, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 691 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478247+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478245+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 692 + }, + "imageDetail": { + "width": 5765, + "height": 3632 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69003, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 692 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478251+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478251+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478249+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 693 + }, + "imageDetail": { + "width": 2834, + "height": 8125 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89971, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 693 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478254+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478254+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 694 + }, + "imageDetail": { + "width": 8767, + "height": 8892 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 34142, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 694 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478258+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478258+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 695 + }, + "imageDetail": { + "width": 7080, + "height": 2039 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53209, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 695 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478261+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478262+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478262+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 696 + }, + "imageDetail": { + "width": 8759, + "height": 8801 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 696 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478288+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478289+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478286+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 697 + }, + "imageDetail": { + "width": 3456, + "height": 3017 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55079, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 697 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478291+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478292+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478293+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447829+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 698 + }, + "imageDetail": { + "width": 9651, + "height": 2352 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32421, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 698 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478295+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478296+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478297+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 699 + }, + "imageDetail": { + "width": 1850, + "height": 2242 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98494, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 699 }" + }, + "fileCreated": "2025-06-21T09:21:52.44783+00:00", + "fileLastModified": "2025-07-14T09:21:52.44783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 700 + }, + "imageDetail": { + "width": 7665, + "height": 3711 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 82748, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 700 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478304+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478302+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 701 + }, + "imageDetail": { + "width": 7248, + "height": 9709 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82732, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 701 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478307+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478308+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478305+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 702 + }, + "imageDetail": { + "width": 7297, + "height": 4210 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 21254, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 702 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478311+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478311+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478309+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 703 + }, + "imageDetail": { + "width": 9042, + "height": 8556 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35803, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 703 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478314+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478315+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478313+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 704 + }, + "imageDetail": { + "width": 845, + "height": 5542 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31426, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 704 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478318+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478319+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478319+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478316+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 705 + }, + "imageDetail": { + "width": 5153, + "height": 8480 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80350, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 705 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478322+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478323+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478323+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 706 + }, + "imageDetail": { + "width": 3666, + "height": 7583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57523, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 706 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478326+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478327+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478327+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 707 + }, + "imageDetail": { + "width": 7726, + "height": 9404 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96231, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 707 }" + }, + "fileCreated": "2025-06-21T09:21:52.447833+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478331+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478331+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478329+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 708 + }, + "imageDetail": { + "width": 8263, + "height": 9160 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46122, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 708 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478334+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478335+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478332+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 709 + }, + "imageDetail": { + "width": 6150, + "height": 4089 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86641, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 709 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478364+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478365+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478365+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478363+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 710 + }, + "imageDetail": { + "width": 6370, + "height": 4474 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38719, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 710 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478369+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478369+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 711 + }, + "imageDetail": { + "width": 4258, + "height": 4959 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 711 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478373+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478371+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 712 + }, + "imageDetail": { + "width": 9223, + "height": 8391 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65681, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 712 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478376+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478376+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478374+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 713 + }, + "imageDetail": { + "width": 1028, + "height": 7333 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94224, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 713 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478379+00:00", + "fileLastModified": "2025-07-14T09:21:52.447838+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 714 + }, + "imageDetail": { + "width": 9424, + "height": 6488 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 714 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478383+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478383+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478381+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 715 + }, + "imageDetail": { + "width": 2986, + "height": 2039 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 715 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478386+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478387+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 716 + }, + "imageDetail": { + "width": 7344, + "height": 5816 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 716 }" + }, + "fileCreated": "2025-06-21T09:21:52.447839+00:00", + "fileLastModified": "2025-07-14T09:21:52.447839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 717 + }, + "imageDetail": { + "width": 9159, + "height": 7384 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55953, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 717 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478393+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478394+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 718 + }, + "imageDetail": { + "width": 3735, + "height": 4359 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48809, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 718 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478397+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478397+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478398+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478395+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 719 + }, + "imageDetail": { + "width": 3071, + "height": 5200 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63617, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 719 }" + }, + "fileCreated": "2025-06-21T09:21:52.44784+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478401+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478399+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 720 + }, + "imageDetail": { + "width": 2411, + "height": 9735 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34078, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 720 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478404+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478405+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478403+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 721 + }, + "imageDetail": { + "width": 9962, + "height": 4852 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 74144, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 721 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478408+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478408+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478409+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 722 + }, + "imageDetail": { + "width": 5916, + "height": 9582 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 722 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478412+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478412+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478413+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 723 + }, + "imageDetail": { + "width": 4920, + "height": 6831 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59449, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 723 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478439+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478439+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447844+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 724 + }, + "imageDetail": { + "width": 932, + "height": 5826 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54028, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 724 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478443+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478445+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478441+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 725 + }, + "imageDetail": { + "width": 211, + "height": 9398 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 47153, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 725 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478448+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478449+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478447+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 726 + }, + "imageDetail": { + "width": 7920, + "height": 3203 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67995, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 726 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478452+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478452+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 727 + }, + "imageDetail": { + "width": 9744, + "height": 2131 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99773, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 727 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478455+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478455+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478454+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 728 + }, + "imageDetail": { + "width": 6864, + "height": 5980 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69357, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 728 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478458+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478459+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478457+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 729 + }, + "imageDetail": { + "width": 8035, + "height": 8668 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93396, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 729 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478462+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478462+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447846+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 730 + }, + "imageDetail": { + "width": 9377, + "height": 6297 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60855, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 730 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478466+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478467+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478464+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 731 + }, + "imageDetail": { + "width": 178, + "height": 4600 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52371, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 731 }" + }, + "fileCreated": "2025-06-21T09:21:52.447847+00:00", + "fileLastModified": "2025-07-14T09:21:52.447847+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 732 + }, + "imageDetail": { + "width": 9577, + "height": 5876 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20641, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 732 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478473+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478474+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478475+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478472+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 733 + }, + "imageDetail": { + "width": 1006, + "height": 3789 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35247, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 733 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478477+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478476+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 734 + }, + "imageDetail": { + "width": 313, + "height": 7095 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 734 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478481+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478481+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478482+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 735 + }, + "imageDetail": { + "width": 6224, + "height": 2574 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 57255, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 735 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478485+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478485+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478486+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478483+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 736 + }, + "imageDetail": { + "width": 8655, + "height": 4607 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53278, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 736 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478489+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478489+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478487+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 737 + }, + "imageDetail": { + "width": 3245, + "height": 3957 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72449, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 737 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478516+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478517+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478517+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 738 + }, + "imageDetail": { + "width": 7444, + "height": 6406 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93173, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 738 }" + }, + "fileCreated": "2025-06-21T09:21:52.447852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478521+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 739 + }, + "imageDetail": { + "width": 8623, + "height": 5205 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80722, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 739 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478524+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478524+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478525+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 740 + }, + "imageDetail": { + "width": 9945, + "height": 6547 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64744, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 740 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478527+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478528+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478526+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 741 + }, + "imageDetail": { + "width": 5720, + "height": 8839 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26156, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 741 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478531+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478532+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478529+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 742 + }, + "imageDetail": { + "width": 183, + "height": 6595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98301, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 742 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478535+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478535+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478536+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478533+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 743 + }, + "imageDetail": { + "width": 3736, + "height": 2455 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33513, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 743 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478538+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478539+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478537+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 744 + }, + "imageDetail": { + "width": 2222, + "height": 5275 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51640, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 744 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478542+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478543+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447854+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 745 + }, + "imageDetail": { + "width": 6166, + "height": 8547 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 47429, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 745 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478546+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 746 + }, + "imageDetail": { + "width": 292, + "height": 7933 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 746 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478569+00:00", + "fileLastModified": "2025-07-14T09:21:52.447857+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478548+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 747 + }, + "imageDetail": { + "width": 8558, + "height": 4078 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79842, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 747 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478575+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478575+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 748 + }, + "imageDetail": { + "width": 3258, + "height": 2662 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 748 }" + }, + "fileCreated": "2025-06-21T09:21:52.447858+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478577+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 749 + }, + "imageDetail": { + "width": 687, + "height": 6614 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21357, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 749 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478585+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478585+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478586+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478582+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 750 + }, + "imageDetail": { + "width": 7974, + "height": 6213 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 750 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478622+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478622+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478619+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 751 + }, + "imageDetail": { + "width": 2051, + "height": 6573 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44674, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 751 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478627+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478628+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 752 + }, + "imageDetail": { + "width": 1205, + "height": 8770 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83599, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 752 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478632+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478633+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447863+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 753 + }, + "imageDetail": { + "width": 1008, + "height": 3050 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56949, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 753 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478637+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478638+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478635+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 754 + }, + "imageDetail": { + "width": 4022, + "height": 7337 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92596, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 754 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478642+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478643+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447864+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 755 + }, + "imageDetail": { + "width": 5933, + "height": 5621 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 70789, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 755 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478647+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478648+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478645+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 756 + }, + "imageDetail": { + "width": 2263, + "height": 5931 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69869, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 756 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478653+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 757 + }, + "imageDetail": { + "width": 7059, + "height": 6748 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28221, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 757 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478657+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478658+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478655+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 758 + }, + "imageDetail": { + "width": 4349, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89822, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 758 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478662+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478663+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478664+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 759 + }, + "imageDetail": { + "width": 3387, + "height": 8064 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 27110, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 759 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478669+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478669+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447867+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 760 + }, + "imageDetail": { + "width": 1537, + "height": 2915 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 79351, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 760 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478675+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478676+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 761 + }, + "imageDetail": { + "width": 7564, + "height": 4004 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34276, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 761 }" + }, + "fileCreated": "2025-06-21T09:21:52.447868+00:00", + "fileLastModified": "2025-07-14T09:21:52.447868+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478681+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 762 + }, + "imageDetail": { + "width": 1860, + "height": 3751 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94161, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 762 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478685+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478686+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478687+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478683+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 763 + }, + "imageDetail": { + "width": 8076, + "height": 6076 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29701, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 763 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478691+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478692+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478693+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 764 + }, + "imageDetail": { + "width": 8388, + "height": 4205 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 764 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478731+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478732+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 765 + }, + "imageDetail": { + "width": 4166, + "height": 7611 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22682, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 765 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478737+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478737+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478734+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 766 + }, + "imageDetail": { + "width": 1191, + "height": 9896 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60414, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 766 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478744+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478744+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478739+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 767 + }, + "imageDetail": { + "width": 2100, + "height": 2273 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67533, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 767 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478748+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478748+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 768 + }, + "imageDetail": { + "width": 2105, + "height": 8901 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50381, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 768 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478751+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478752+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478752+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 769 + }, + "imageDetail": { + "width": 709, + "height": 8342 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60202, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 769 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478755+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478756+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478756+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478753+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 770 + }, + "imageDetail": { + "width": 5882, + "height": 4393 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 56160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 770 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478759+00:00", + "fileLastModified": "2025-07-14T09:21:52.447876+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478758+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 771 + }, + "imageDetail": { + "width": 6589, + "height": 2697 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 77864, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 771 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478763+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478763+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478764+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 772 + }, + "imageDetail": { + "width": 8198, + "height": 9579 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60902, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 772 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478767+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478767+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478765+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 773 + }, + "imageDetail": { + "width": 8326, + "height": 5357 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93836, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 773 }" + }, + "fileCreated": "2025-06-21T09:21:52.447877+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478771+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478771+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 774 + }, + "imageDetail": { + "width": 8610, + "height": 7860 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 774 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478775+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478775+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478773+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 775 + }, + "imageDetail": { + "width": 8070, + "height": 3527 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 41522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 775 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478778+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478779+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 776 + }, + "imageDetail": { + "width": 1104, + "height": 4228 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91566, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 776 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478782+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478782+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447878+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 777 + }, + "imageDetail": { + "width": 7174, + "height": 5315 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 28331, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 777 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478823+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478824+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478824+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478821+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 778 + }, + "imageDetail": { + "width": 7750, + "height": 9231 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73079, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 778 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478827+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 779 + }, + "imageDetail": { + "width": 9836, + "height": 9617 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41689, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 779 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478831+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478832+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478832+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 780 + }, + "imageDetail": { + "width": 7607, + "height": 3541 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58785, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 780 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478835+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478836+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478836+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478834+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 781 + }, + "imageDetail": { + "width": 887, + "height": 9924 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82388, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 781 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478839+00:00", + "fileLastModified": "2025-07-14T09:21:52.447884+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447884+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 782 + }, + "imageDetail": { + "width": 6521, + "height": 6953 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64845, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 782 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478843+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478843+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 783 + }, + "imageDetail": { + "width": 9286, + "height": 3855 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64850, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 783 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478846+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478847+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478847+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 784 + }, + "imageDetail": { + "width": 1897, + "height": 9757 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48339, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 784 }" + }, + "fileCreated": "2025-06-21T09:21:52.447885+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478851+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 785 + }, + "imageDetail": { + "width": 6582, + "height": 8925 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 785 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478854+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478854+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478852+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 786 + }, + "imageDetail": { + "width": 4242, + "height": 7293 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50203, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 786 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478858+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478858+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478859+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478856+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 787 + }, + "imageDetail": { + "width": 8067, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 46068, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 787 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478861+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478862+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 788 + }, + "imageDetail": { + "width": 775, + "height": 6073 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 788 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478864+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 789 + }, + "imageDetail": { + "width": 8964, + "height": 4230 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57924, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 789 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478869+00:00", + "fileLastModified": "2025-07-14T09:21:52.447887+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447887+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478868+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 790 + }, + "imageDetail": { + "width": 7958, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 78280, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 790 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478873+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478874+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478874+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478872+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 791 + }, + "imageDetail": { + "width": 933, + "height": 2532 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 791 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478912+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478913+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 792 + }, + "imageDetail": { + "width": 9974, + "height": 2658 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 792 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478916+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478916+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 793 + }, + "imageDetail": { + "width": 2611, + "height": 9063 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52367, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 793 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478919+00:00", + "fileLastModified": "2025-07-14T09:21:52.447892+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447892+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478918+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 794 + }, + "imageDetail": { + "width": 2284, + "height": 6798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22766, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 794 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478924+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478922+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 795 + }, + "imageDetail": { + "width": 5728, + "height": 2694 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 795 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478927+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478927+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478925+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 796 + }, + "imageDetail": { + "width": 9999, + "height": 3480 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40139, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 796 }" + }, + "fileCreated": "2025-06-21T09:21:52.447893+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478931+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478929+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 797 + }, + "imageDetail": { + "width": 345, + "height": 7122 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77873, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 797 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478934+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478935+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478935+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478932+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 798 + }, + "imageDetail": { + "width": 7174, + "height": 8954 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 81837, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 798 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478938+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478939+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478936+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 799 + }, + "imageDetail": { + "width": 2382, + "height": 5906 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38173, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 799 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478941+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478942+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447894+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 800 + }, + "imageDetail": { + "width": 7661, + "height": 3731 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 800 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478945+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478946+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478943+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 801 + }, + "imageDetail": { + "width": 9204, + "height": 9259 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 801 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478949+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478949+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478947+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 802 + }, + "imageDetail": { + "width": 2233, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82665, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 802 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478952+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478953+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478951+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 803 + }, + "imageDetail": { + "width": 2313, + "height": 8464 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 91389, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 803 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478956+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478957+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478957+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 804 + }, + "imageDetail": { + "width": 6140, + "height": 5538 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 83653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 804 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478989+00:00", + "fileLastModified": "2025-07-14T09:21:52.447899+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447899+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 805 + }, + "imageDetail": { + "width": 5341, + "height": 6367 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 805 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478994+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478994+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478995+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 806 + }, + "imageDetail": { + "width": 122, + "height": 7290 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54150, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 806 }" + }, + "fileCreated": "2025-06-21T09:21:52.4478998+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478998+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478998+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478996+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 807 + }, + "imageDetail": { + "width": 8482, + "height": 9641 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96829, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 807 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479001+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479002+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479002+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 808 + }, + "imageDetail": { + "width": 9526, + "height": 3027 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86291, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 808 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479005+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479006+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 809 + }, + "imageDetail": { + "width": 4969, + "height": 9434 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83232, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 809 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479009+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479007+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 810 + }, + "imageDetail": { + "width": 5916, + "height": 7781 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95158, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 810 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479012+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479011+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 811 + }, + "imageDetail": { + "width": 4563, + "height": 9727 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59212, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 811 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479016+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479017+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 812 + }, + "imageDetail": { + "width": 3011, + "height": 4919 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90495, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 812 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479019+00:00", + "fileLastModified": "2025-07-14T09:21:52.447902+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479018+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 813 + }, + "imageDetail": { + "width": 5417, + "height": 2075 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61252, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 813 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479023+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479023+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 814 + }, + "imageDetail": { + "width": 1393, + "height": 6773 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 814 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479026+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479027+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479025+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 815 + }, + "imageDetail": { + "width": 8084, + "height": 8367 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38627, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 815 }" + }, + "fileCreated": "2025-06-21T09:21:52.447903+00:00", + "fileLastModified": "2025-07-14T09:21:52.447903+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479031+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 816 + }, + "imageDetail": { + "width": 9628, + "height": 5519 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 816 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479034+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479034+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479032+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 817 + }, + "imageDetail": { + "width": 2099, + "height": 9085 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74992, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 817 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479038+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479038+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479038+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479036+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 818 + }, + "imageDetail": { + "width": 7459, + "height": 7002 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 818 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479142+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479139+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 819 + }, + "imageDetail": { + "width": 5868, + "height": 9170 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 819 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479146+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479147+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479147+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 820 + }, + "imageDetail": { + "width": 8820, + "height": 9729 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35271, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 820 }" + }, + "fileCreated": "2025-06-21T09:21:52.447915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479151+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 821 + }, + "imageDetail": { + "width": 1212, + "height": 6541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89469, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 821 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479153+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479154+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479155+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 822 + }, + "imageDetail": { + "width": 691, + "height": 2927 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 822 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479158+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479158+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479159+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 823 + }, + "imageDetail": { + "width": 7470, + "height": 6459 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78341, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 823 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479162+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479162+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479163+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447916+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 824 + }, + "imageDetail": { + "width": 5324, + "height": 6882 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 824 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479166+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479166+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479166+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 825 + }, + "imageDetail": { + "width": 6212, + "height": 7179 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 825 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479169+00:00", + "fileLastModified": "2025-07-14T09:21:52.447917+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447917+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479168+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 826 + }, + "imageDetail": { + "width": 8202, + "height": 3575 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49652, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 826 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479173+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479174+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 827 + }, + "imageDetail": { + "width": 2043, + "height": 6048 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59703, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 827 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479177+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479177+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479175+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 828 + }, + "imageDetail": { + "width": 3873, + "height": 7018 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34007, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 828 }" + }, + "fileCreated": "2025-06-21T09:21:52.447918+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479181+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479179+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 829 + }, + "imageDetail": { + "width": 4153, + "height": 8122 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82160, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 829 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479184+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479184+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479185+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479182+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 830 + }, + "imageDetail": { + "width": 4929, + "height": 8706 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90181, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 830 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479188+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479188+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479186+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 831 + }, + "imageDetail": { + "width": 8312, + "height": 8672 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96847, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 831 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479192+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479192+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479193+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447919+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 832 + }, + "imageDetail": { + "width": 4329, + "height": 7914 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55755, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 832 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479223+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479224+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479222+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 833 + }, + "imageDetail": { + "width": 6366, + "height": 5565 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27044, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 833 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479227+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479227+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 834 + }, + "imageDetail": { + "width": 9101, + "height": 9816 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 834 }" + }, + "fileCreated": "2025-06-21T09:21:52.447923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479231+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479232+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479229+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 835 + }, + "imageDetail": { + "width": 2200, + "height": 8743 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 31206, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 835 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479234+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479235+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479235+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 836 + }, + "imageDetail": { + "width": 4601, + "height": 6162 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87048, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 836 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479238+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479239+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479237+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 837 + }, + "imageDetail": { + "width": 9320, + "height": 8317 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 837 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479242+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479242+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479243+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447924+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 838 + }, + "imageDetail": { + "width": 5646, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35613, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 838 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479246+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479246+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479247+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 839 + }, + "imageDetail": { + "width": 4332, + "height": 8493 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73427, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 839 }" + }, + "fileCreated": "2025-06-21T09:21:52.447925+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479251+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 840 + }, + "imageDetail": { + "width": 6242, + "height": 7091 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 840 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479254+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479254+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 841 + }, + "imageDetail": { + "width": 5187, + "height": 6393 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81103, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 841 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479257+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479258+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479258+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 842 + }, + "imageDetail": { + "width": 4739, + "height": 8031 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 52558, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 842 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479261+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479262+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447926+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 843 + }, + "imageDetail": { + "width": 6657, + "height": 2762 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 843 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479265+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479265+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479263+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 844 + }, + "imageDetail": { + "width": 357, + "height": 8756 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 844 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479269+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479269+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479267+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 845 + }, + "imageDetail": { + "width": 5943, + "height": 9518 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83978, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 845 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479304+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479304+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479271+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 846 + }, + "imageDetail": { + "width": 8448, + "height": 2913 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38827, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 846 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479308+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479308+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479309+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479306+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 847 + }, + "imageDetail": { + "width": 9510, + "height": 9892 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 67837, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 847 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479312+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479312+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447931+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 848 + }, + "imageDetail": { + "width": 4796, + "height": 7156 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62983, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 848 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479315+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479316+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479316+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479314+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 849 + }, + "imageDetail": { + "width": 2479, + "height": 4827 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 849 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479319+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479319+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447932+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 850 + }, + "imageDetail": { + "width": 5412, + "height": 4924 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 21549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 850 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479323+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479323+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479324+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479321+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 851 + }, + "imageDetail": { + "width": 8633, + "height": 4257 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43799, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 851 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479327+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479327+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 852 + }, + "imageDetail": { + "width": 3271, + "height": 4966 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47914, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 852 }" + }, + "fileCreated": "2025-06-21T09:21:52.447933+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479331+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479331+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479329+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 853 + }, + "imageDetail": { + "width": 258, + "height": 9802 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 853 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479334+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479335+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 854 + }, + "imageDetail": { + "width": 4499, + "height": 9206 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 88455, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 854 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479338+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479339+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479337+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 855 + }, + "imageDetail": { + "width": 182, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84601, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 855 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479342+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479343+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 856 + }, + "imageDetail": { + "width": 3326, + "height": 2553 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 856 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479346+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479346+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479347+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479344+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 857 + }, + "imageDetail": { + "width": 666, + "height": 5270 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28412, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 857 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479349+00:00", + "fileLastModified": "2025-07-14T09:21:52.447935+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 858 + }, + "imageDetail": { + "width": 1341, + "height": 9068 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37505, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 858 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479353+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479353+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479354+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479351+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 859 + }, + "imageDetail": { + "width": 2286, + "height": 8647 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87145, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 859 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479385+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479385+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 860 + }, + "imageDetail": { + "width": 9414, + "height": 7584 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 26468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 860 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479388+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479389+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479387+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 861 + }, + "imageDetail": { + "width": 1056, + "height": 2421 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22425, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 861 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479392+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479392+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479393+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 862 + }, + "imageDetail": { + "width": 3805, + "height": 3800 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 862 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479396+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479396+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479397+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 863 + }, + "imageDetail": { + "width": 8880, + "height": 6508 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57405, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 863 }" + }, + "fileCreated": "2025-06-21T09:21:52.44794+00:00", + "fileLastModified": "2025-07-14T09:21:52.44794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479398+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 864 + }, + "imageDetail": { + "width": 8405, + "height": 2639 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86717, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 864 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479404+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479404+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479402+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 865 + }, + "imageDetail": { + "width": 6958, + "height": 9963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59098, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 865 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479407+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479408+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 866 + }, + "imageDetail": { + "width": 9207, + "height": 5096 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70224, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 866 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479411+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479412+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 867 + }, + "imageDetail": { + "width": 7019, + "height": 4871 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91087, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 867 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479415+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479415+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479413+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 868 + }, + "imageDetail": { + "width": 9964, + "height": 6732 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 868 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479418+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 869 + }, + "imageDetail": { + "width": 4907, + "height": 7079 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73114, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 869 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479422+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479422+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447942+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 870 + }, + "imageDetail": { + "width": 4689, + "height": 7225 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 870 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479425+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479426+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479426+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 871 + }, + "imageDetail": { + "width": 4331, + "height": 2296 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 69647, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 871 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479429+00:00", + "fileLastModified": "2025-07-14T09:21:52.447943+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479428+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 872 + }, + "imageDetail": { + "width": 9313, + "height": 4657 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88249, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 872 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479432+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479433+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479434+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479431+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 873 + }, + "imageDetail": { + "width": 9004, + "height": 8935 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34215, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 873 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479455+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479455+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479456+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 874 + }, + "imageDetail": { + "width": 8405, + "height": 7277 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24738, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 874 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479458+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479459+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479459+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479457+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 875 + }, + "imageDetail": { + "width": 4415, + "height": 4041 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 875 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479462+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479463+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479461+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 876 + }, + "imageDetail": { + "width": 7953, + "height": 8254 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 876 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479467+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479465+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 877 + }, + "imageDetail": { + "width": 4723, + "height": 2929 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38876, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 877 }" + }, + "fileCreated": "2025-06-21T09:21:52.447947+00:00", + "fileLastModified": "2025-07-14T09:21:52.447947+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479471+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 878 + }, + "imageDetail": { + "width": 8410, + "height": 6405 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 878 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479473+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479472+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 879 + }, + "imageDetail": { + "width": 6207, + "height": 9695 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 42529, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 879 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479477+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479477+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479478+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479475+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 880 + }, + "imageDetail": { + "width": 6840, + "height": 6878 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83980, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 880 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479481+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479481+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479482+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 881 + }, + "imageDetail": { + "width": 1513, + "height": 8577 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64104, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 881 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479485+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479485+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479486+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479483+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 882 + }, + "imageDetail": { + "width": 2897, + "height": 6686 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46047, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 882 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479489+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479489+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479487+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 883 + }, + "imageDetail": { + "width": 4477, + "height": 8895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76561, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 883 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479492+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479493+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479493+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 884 + }, + "imageDetail": { + "width": 7368, + "height": 8043 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88136, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 884 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479496+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479494+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 885 + }, + "imageDetail": { + "width": 8211, + "height": 5459 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 31909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 885 }" + }, + "fileCreated": "2025-06-21T09:21:52.44795+00:00", + "fileLastModified": "2025-07-14T09:21:52.44795+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479501+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 886 + }, + "imageDetail": { + "width": 6442, + "height": 3756 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 886 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479547+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479545+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 887 + }, + "imageDetail": { + "width": 2671, + "height": 3643 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53366, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 887 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 888 + }, + "imageDetail": { + "width": 9931, + "height": 4636 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49525, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 888 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479555+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479555+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479555+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479553+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 889 + }, + "imageDetail": { + "width": 9950, + "height": 4615 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30676, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 889 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479558+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479559+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479559+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 890 + }, + "imageDetail": { + "width": 9771, + "height": 5665 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49527, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 890 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479562+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479563+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479561+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 891 + }, + "imageDetail": { + "width": 4866, + "height": 6052 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 87593, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 891 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 892 + }, + "imageDetail": { + "width": 870, + "height": 7032 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40329, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 892 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479569+00:00", + "fileLastModified": "2025-07-14T09:21:52.447957+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447957+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 893 + }, + "imageDetail": { + "width": 1943, + "height": 5741 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63495, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 893 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479573+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 894 + }, + "imageDetail": { + "width": 5181, + "height": 3303 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 894 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479577+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479578+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479576+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 895 + }, + "imageDetail": { + "width": 4787, + "height": 9858 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 895 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479581+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479581+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479582+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 896 + }, + "imageDetail": { + "width": 4334, + "height": 9081 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 79737, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 896 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479584+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479585+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479583+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 897 + }, + "imageDetail": { + "width": 7473, + "height": 2702 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23572, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 897 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479588+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479588+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479589+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479586+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 898 + }, + "imageDetail": { + "width": 7305, + "height": 6853 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 898 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479592+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479592+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479593+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 899 + }, + "imageDetail": { + "width": 9503, + "height": 6423 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58483, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 899 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479596+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479596+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479594+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 900 + }, + "imageDetail": { + "width": 4380, + "height": 8626 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 96903, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 900 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479644+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479645+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479645+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479642+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 901 + }, + "imageDetail": { + "width": 371, + "height": 2944 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99889, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 901 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479648+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479649+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479649+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 902 + }, + "imageDetail": { + "width": 7059, + "height": 8842 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 34076, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 902 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479653+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479653+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 903 + }, + "imageDetail": { + "width": 2923, + "height": 3838 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77637, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 903 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479656+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479657+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479657+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479655+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 904 + }, + "imageDetail": { + "width": 2598, + "height": 2006 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 904 }" + }, + "fileCreated": "2025-06-21T09:21:52.447966+00:00", + "fileLastModified": "2025-07-14T09:21:52.447966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 905 + }, + "imageDetail": { + "width": 4546, + "height": 9803 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 905 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479663+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479664+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479662+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 906 + }, + "imageDetail": { + "width": 5977, + "height": 2742 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23773, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 906 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479667+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479668+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 907 + }, + "imageDetail": { + "width": 3615, + "height": 9832 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45122, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 907 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479671+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479669+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 908 + }, + "imageDetail": { + "width": 4954, + "height": 3540 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 908 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479675+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479675+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 909 + }, + "imageDetail": { + "width": 2986, + "height": 7772 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33962, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 909 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479678+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479679+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479679+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 910 + }, + "imageDetail": { + "width": 7709, + "height": 2150 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 57242, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 910 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479682+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479683+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479681+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 911 + }, + "imageDetail": { + "width": 3209, + "height": 3641 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42482, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 911 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479686+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479686+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479687+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479684+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 912 + }, + "imageDetail": { + "width": 7162, + "height": 5154 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88194, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 912 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479704+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479705+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479688+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 913 + }, + "imageDetail": { + "width": 4118, + "height": 3666 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 50243, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 913 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479735+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479736+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479736+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479707+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 914 + }, + "imageDetail": { + "width": 2262, + "height": 7062 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58663, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 914 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479739+00:00", + "fileLastModified": "2025-07-14T09:21:52.447974+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447974+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479738+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 915 + }, + "imageDetail": { + "width": 6536, + "height": 4857 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 915 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479744+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479742+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 916 + }, + "imageDetail": { + "width": 4887, + "height": 2129 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37236, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 916 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479747+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479747+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479748+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 917 + }, + "imageDetail": { + "width": 7334, + "height": 6559 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49848, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 917 }" + }, + "fileCreated": "2025-06-21T09:21:52.447975+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479751+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479751+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479749+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 918 + }, + "imageDetail": { + "width": 1953, + "height": 5810 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 918 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479754+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479755+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479755+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479753+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 919 + }, + "imageDetail": { + "width": 7993, + "height": 6502 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81018, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 919 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479758+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479759+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479759+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479757+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 920 + }, + "imageDetail": { + "width": 2009, + "height": 3487 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 65117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 920 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479762+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479763+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 921 + }, + "imageDetail": { + "width": 420, + "height": 5475 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23237, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 921 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479766+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479767+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479767+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479764+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 922 + }, + "imageDetail": { + "width": 9810, + "height": 7530 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 922 }" + }, + "fileCreated": "2025-06-21T09:21:52.447977+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479771+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479771+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479768+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 923 + }, + "imageDetail": { + "width": 4421, + "height": 5674 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37228, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 923 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479775+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479775+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479772+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 924 + }, + "imageDetail": { + "width": 3628, + "height": 6522 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 924 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479778+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479778+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479776+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 925 + }, + "imageDetail": { + "width": 5465, + "height": 3959 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63486, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 925 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479782+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479782+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 926 + }, + "imageDetail": { + "width": 4967, + "height": 6229 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 926 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479785+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479785+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479786+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 927 + }, + "imageDetail": { + "width": 7631, + "height": 5718 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51601, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 927 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479818+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479819+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479819+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 928 + }, + "imageDetail": { + "width": 7773, + "height": 3470 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86569, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 928 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479822+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479822+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479823+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447982+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 929 + }, + "imageDetail": { + "width": 9422, + "height": 8920 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 27141, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 929 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479826+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479826+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479827+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479824+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 930 + }, + "imageDetail": { + "width": 8314, + "height": 8609 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 73422, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 930 }" + }, + "fileCreated": "2025-06-21T09:21:52.447983+00:00", + "fileLastModified": "2025-07-14T09:21:52.447983+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479828+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 931 + }, + "imageDetail": { + "width": 1771, + "height": 2671 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 931 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479833+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479834+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479834+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 932 + }, + "imageDetail": { + "width": 3085, + "height": 9528 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92809, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 932 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479837+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479838+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479838+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 933 + }, + "imageDetail": { + "width": 4671, + "height": 4276 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 933 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479841+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479842+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447984+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 934 + }, + "imageDetail": { + "width": 1252, + "height": 3213 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24519, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 934 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479845+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479845+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479843+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 935 + }, + "imageDetail": { + "width": 6816, + "height": 8155 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 98079, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 935 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479848+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479849+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 936 + }, + "imageDetail": { + "width": 1143, + "height": 2304 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 936 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479853+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479853+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 937 + }, + "imageDetail": { + "width": 1645, + "height": 7942 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61563, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 937 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479856+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479856+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479857+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479854+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 938 + }, + "imageDetail": { + "width": 4132, + "height": 2320 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54292, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 938 }" + }, + "fileCreated": "2025-06-21T09:21:52.447986+00:00", + "fileLastModified": "2025-07-14T09:21:52.447986+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479861+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479858+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 939 + }, + "imageDetail": { + "width": 4368, + "height": 4595 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 939 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479864+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479864+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479865+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 940 + }, + "imageDetail": { + "width": 9461, + "height": 5185 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 940 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479868+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479868+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 941 + }, + "imageDetail": { + "width": 9430, + "height": 8833 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 941 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479901+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479901+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479902+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479899+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 942 + }, + "imageDetail": { + "width": 2104, + "height": 5994 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63092, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 942 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479905+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479905+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479903+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 943 + }, + "imageDetail": { + "width": 4256, + "height": 2380 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42957, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 943 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479908+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479909+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479907+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 944 + }, + "imageDetail": { + "width": 7177, + "height": 4358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 944 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479912+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479912+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 945 + }, + "imageDetail": { + "width": 5811, + "height": 4680 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77085, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 945 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479916+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479916+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 946 + }, + "imageDetail": { + "width": 3299, + "height": 4029 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 946 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479919+00:00", + "fileLastModified": "2025-07-14T09:21:52.447992+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479918+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 947 + }, + "imageDetail": { + "width": 6313, + "height": 5278 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89531, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 947 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479924+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479924+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479922+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 948 + }, + "imageDetail": { + "width": 3770, + "height": 3956 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43611, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 948 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479927+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479928+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479926+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 949 + }, + "imageDetail": { + "width": 6622, + "height": 6478 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77659, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 949 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479931+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479931+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479929+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 950 + }, + "imageDetail": { + "width": 6455, + "height": 3451 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 950 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479934+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479935+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 951 + }, + "imageDetail": { + "width": 3436, + "height": 3176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70650, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 951 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479938+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479938+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479939+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479936+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 952 + }, + "imageDetail": { + "width": 2396, + "height": 3623 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35220, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 952 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479942+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479942+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447994+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 953 + }, + "imageDetail": { + "width": 3022, + "height": 8907 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66300, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 953 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479945+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479946+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479946+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 954 + }, + "imageDetail": { + "width": 2525, + "height": 8052 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80342, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 954 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479978+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479978+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479979+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479948+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 955 + }, + "imageDetail": { + "width": 4563, + "height": 5280 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 955 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479982+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479983+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479981+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 956 + }, + "imageDetail": { + "width": 9398, + "height": 9128 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92450, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 956 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479986+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479986+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479984+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 957 + }, + "imageDetail": { + "width": 5838, + "height": 7771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24110, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 957 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479989+00:00", + "fileLastModified": "2025-07-14T09:21:52.447999+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479988+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 958 + }, + "imageDetail": { + "width": 1564, + "height": 7941 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 958 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479993+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479994+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 959 + }, + "imageDetail": { + "width": 6448, + "height": 3442 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 959 }" + }, + "fileCreated": "2025-06-21T09:21:52.4479997+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479997+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 960 + }, + "imageDetail": { + "width": 7346, + "height": 8199 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42038, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 960 }" + }, + "fileCreated": "2025-06-21T09:21:52.448+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480001+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480001+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 961 + }, + "imageDetail": { + "width": 3009, + "height": 4842 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98089, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 961 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480004+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480005+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480005+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480003+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 962 + }, + "imageDetail": { + "width": 4373, + "height": 9540 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53902, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 962 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480008+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480006+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 963 + }, + "imageDetail": { + "width": 8579, + "height": 8380 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20234, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 963 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480012+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480012+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 964 + }, + "imageDetail": { + "width": 5071, + "height": 3996 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94317, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 964 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480016+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 965 + }, + "imageDetail": { + "width": 9674, + "height": 3814 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25650, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 965 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480019+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480019+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480017+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 966 + }, + "imageDetail": { + "width": 6832, + "height": 3065 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 966 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480022+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480023+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 967 + }, + "imageDetail": { + "width": 3961, + "height": 2411 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22655, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 967 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480027+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480027+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480028+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480025+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 968 + }, + "imageDetail": { + "width": 2326, + "height": 2533 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 968 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480056+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480057+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 969 + }, + "imageDetail": { + "width": 4535, + "height": 5171 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51291, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 969 }" + }, + "fileCreated": "2025-06-21T09:21:52.448006+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480061+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480061+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480059+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 970 + }, + "imageDetail": { + "width": 8323, + "height": 4662 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22218, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 970 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480064+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480065+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480063+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 971 + }, + "imageDetail": { + "width": 5531, + "height": 8986 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60085, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 971 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480068+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480068+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480066+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 972 + }, + "imageDetail": { + "width": 5487, + "height": 5610 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 97642, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 972 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480072+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480072+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480073+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448007+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 973 + }, + "imageDetail": { + "width": 1431, + "height": 3468 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 24522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 973 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480075+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480076+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480076+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 974 + }, + "imageDetail": { + "width": 2124, + "height": 4072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23905, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 974 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480079+00:00", + "fileLastModified": "2025-07-14T09:21:52.448008+00:00", + "fileLastViewed": "2025-07-14T09:21:52.448008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 975 + }, + "imageDetail": { + "width": 519, + "height": 8657 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55342, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 975 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480083+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480084+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480084+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 976 + }, + "imageDetail": { + "width": 1723, + "height": 3939 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68669, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 976 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480087+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480087+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 977 + }, + "imageDetail": { + "width": 6239, + "height": 8019 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62192, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 977 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480091+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480089+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 978 + }, + "imageDetail": { + "width": 112, + "height": 4198 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70960, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 978 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480094+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480095+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480093+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 979 + }, + "imageDetail": { + "width": 8077, + "height": 3032 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37929, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 979 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480098+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480098+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480099+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 980 + }, + "imageDetail": { + "width": 2401, + "height": 7132 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46873, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 980 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480102+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480102+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480103+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 981 + }, + "imageDetail": { + "width": 5010, + "height": 5124 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 981 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480106+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480106+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 982 + }, + "imageDetail": { + "width": 2251, + "height": 2089 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 982 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480126+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480126+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480127+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480124+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 983 + }, + "imageDetail": { + "width": 1175, + "height": 2971 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76357, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 983 }" + }, + "fileCreated": "2025-06-21T09:21:52.448013+00:00", + "fileLastModified": "2025-07-14T09:21:52.448013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480128+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 984 + }, + "imageDetail": { + "width": 7980, + "height": 9894 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26136, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 984 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480133+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480134+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480134+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480132+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 985 + }, + "imageDetail": { + "width": 3471, + "height": 6965 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 77748, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 985 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480137+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480137+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480135+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 986 + }, + "imageDetail": { + "width": 8107, + "height": 3526 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83491, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 986 }" + }, + "fileCreated": "2025-06-21T09:21:52.448014+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480141+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480141+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480139+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 987 + }, + "imageDetail": { + "width": 8338, + "height": 8421 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 52737, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 987 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480144+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480145+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480143+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 988 + }, + "imageDetail": { + "width": 8065, + "height": 5321 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27391, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 988 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480148+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480148+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480146+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 989 + }, + "imageDetail": { + "width": 9487, + "height": 6930 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74014, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 989 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480151+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480152+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480152+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448015+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 990 + }, + "imageDetail": { + "width": 5046, + "height": 9598 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 89524, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 990 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480155+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480156+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480156+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480154+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 991 + }, + "imageDetail": { + "width": 5046, + "height": 6764 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56257, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 991 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480159+00:00", + "fileLastModified": "2025-07-14T09:21:52.448016+00:00", + "fileLastViewed": "2025-07-14T09:21:52.448016+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480158+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 992 + }, + "imageDetail": { + "width": 5965, + "height": 5809 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 25245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 992 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480163+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480164+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480164+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480162+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 993 + }, + "imageDetail": { + "width": 119, + "height": 4139 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 993 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480167+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480168+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480166+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 994 + }, + "imageDetail": { + "width": 2546, + "height": 8195 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42340, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 994 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480171+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480171+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480169+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 995 + }, + "imageDetail": { + "width": 9232, + "height": 7464 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23564, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 995 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480275+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480272+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 996 + }, + "imageDetail": { + "width": 2527, + "height": 3021 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98293, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 996 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480279+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 997 + }, + "imageDetail": { + "width": 3669, + "height": 3834 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24960, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 997 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 998 + }, + "imageDetail": { + "width": 5058, + "height": 7438 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24595, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 998 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480286+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480286+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 999 + }, + "imageDetail": { + "width": 6337, + "height": 4345 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86511, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 999 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480289+00:00", + "fileLastModified": "2025-07-14T09:21:52.448029+00:00", + "fileLastViewed": "2025-07-14T09:21:52.448029+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1000 + }, + "imageDetail": { + "width": 9325, + "height": 8182 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34395, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1000 }" + }, + "fileCreated": "2025-06-21T09:21:52.4480293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480294+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480294+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1001 + }, + "imageDetail": { + "width": 4556, + "height": 2735 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70536, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1001 }" + }, + "fileCreated": "2025-06-21T09:30:58.5467016+00:00", + "fileLastModified": "2025-07-14T09:30:58.5468244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:58.5458075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1002 + }, + "imageDetail": { + "width": 4808, + "height": 3361 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92492, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1002 }" + }, + "fileCreated": "2025-06-21T09:30:59.9888929+00:00", + "fileLastModified": "2025-07-14T09:30:59.9888935+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9888896+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1003 + }, + "imageDetail": { + "width": 8189, + "height": 2366 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21377, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1003 }" + }, + "fileCreated": "2025-06-21T09:30:59.9939582+00:00", + "fileLastModified": "2025-07-14T09:30:59.9939586+00:00", + "fileLastViewed": "2025-07-14T09:30:59.9939587+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9939564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1004 + }, + "imageDetail": { + "width": 7388, + "height": 8353 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63796, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1004 }" + }, + "fileCreated": "2025-06-21T09:30:59.9958338+00:00", + "fileLastModified": "2025-07-14T09:30:59.9958342+00:00", + "fileLastViewed": "2025-07-14T09:30:59.9958344+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9958317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1005 + }, + "imageDetail": { + "width": 7565, + "height": 3758 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32415, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1005 }" + }, + "fileCreated": "2025-06-21T09:30:59.9973138+00:00", + "fileLastModified": "2025-07-14T09:30:59.9973141+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9973122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1006 + }, + "imageDetail": { + "width": 6406, + "height": 2173 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95562, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1006 }" + }, + "fileCreated": "2025-06-21T09:30:59.9980958+00:00", + "fileLastModified": "2025-07-14T09:30:59.998096+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9980948+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1007 + }, + "imageDetail": { + "width": 3865, + "height": 3912 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94121, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1007 }" + }, + "fileCreated": "2025-06-21T09:30:59.9992021+00:00", + "fileLastModified": "2025-07-14T09:30:59.9992026+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9991995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1008 + }, + "imageDetail": { + "width": 6629, + "height": 9514 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 58711, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1008 }" + }, + "fileCreated": "2025-06-21T09:31:00.001137+00:00", + "fileLastModified": "2025-07-14T09:31:00.0011374+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0011375+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0011356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1009 + }, + "imageDetail": { + "width": 8514, + "height": 4173 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58551, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1009 }" + }, + "fileCreated": "2025-06-21T09:31:00.0022985+00:00", + "fileLastModified": "2025-07-14T09:31:00.0022988+00:00", + "fileLastViewed": "2025-07-14T09:31:00.002299+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0022975+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1010 + }, + "imageDetail": { + "width": 8425, + "height": 3787 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95346, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1010 }" + }, + "fileCreated": "2025-06-21T09:31:00.0031049+00:00", + "fileLastModified": "2025-07-14T09:31:00.0031052+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0031054+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0031037+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1011 + }, + "imageDetail": { + "width": 9457, + "height": 5430 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47501, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1011 }" + }, + "fileCreated": "2025-06-21T09:31:00.0039203+00:00", + "fileLastModified": "2025-07-14T09:31:00.0039205+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0039207+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0039192+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1012 + }, + "imageDetail": { + "width": 4511, + "height": 3543 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1012 }" + }, + "fileCreated": "2025-06-21T09:31:00.0049828+00:00", + "fileLastModified": "2025-07-14T09:31:00.0049831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0049817+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1013 + }, + "imageDetail": { + "width": 5616, + "height": 3992 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67270, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1013 }" + }, + "fileCreated": "2025-06-21T09:31:00.0058364+00:00", + "fileLastModified": "2025-07-14T09:31:00.0058367+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0058369+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0058354+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1014 + }, + "imageDetail": { + "width": 4899, + "height": 6578 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80124, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1014 }" + }, + "fileCreated": "2025-06-21T09:31:00.0066703+00:00", + "fileLastModified": "2025-07-14T09:31:00.0066706+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0066707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0066692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1015 + }, + "imageDetail": { + "width": 1777, + "height": 6118 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1015 }" + }, + "fileCreated": "2025-06-21T09:31:00.0075245+00:00", + "fileLastModified": "2025-07-14T09:31:00.0075248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0075235+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1016 + }, + "imageDetail": { + "width": 6359, + "height": 7437 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1016 }" + }, + "fileCreated": "2025-06-21T09:31:00.0085472+00:00", + "fileLastModified": "2025-07-14T09:31:00.0085474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0085457+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1017 + }, + "imageDetail": { + "width": 1397, + "height": 9151 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22392, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1017 }" + }, + "fileCreated": "2025-06-21T09:31:00.0094203+00:00", + "fileLastModified": "2025-07-14T09:31:00.0094206+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0094191+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1018 + }, + "imageDetail": { + "width": 6172, + "height": 4488 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20556, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1018 }" + }, + "fileCreated": "2025-06-21T09:31:00.0102942+00:00", + "fileLastModified": "2025-07-14T09:31:00.0102945+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0102946+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0102932+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1019 + }, + "imageDetail": { + "width": 8574, + "height": 9790 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49238, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1019 }" + }, + "fileCreated": "2025-06-21T09:31:00.0111694+00:00", + "fileLastModified": "2025-07-14T09:31:00.0111697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0111684+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1020 + }, + "imageDetail": { + "width": 765, + "height": 7979 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46236, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1020 }" + }, + "fileCreated": "2025-06-21T09:31:00.0123239+00:00", + "fileLastModified": "2025-07-14T09:31:00.0123242+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.012323+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1021 + }, + "imageDetail": { + "width": 3306, + "height": 2027 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1021 }" + }, + "fileCreated": "2025-06-21T09:31:00.0132146+00:00", + "fileLastModified": "2025-07-14T09:31:00.0132149+00:00", + "fileLastViewed": "2025-07-14T09:31:00.013215+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0132135+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1022 + }, + "imageDetail": { + "width": 1293, + "height": 9424 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21291, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1022 }" + }, + "fileCreated": "2025-06-21T09:31:00.0141537+00:00", + "fileLastModified": "2025-07-14T09:31:00.014154+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0141541+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0141527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1023 + }, + "imageDetail": { + "width": 8578, + "height": 4665 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68633, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1023 }" + }, + "fileCreated": "2025-06-21T09:31:00.0154821+00:00", + "fileLastModified": "2025-07-14T09:31:00.0154828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0154766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1024 + }, + "imageDetail": { + "width": 6787, + "height": 3785 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1024 }" + }, + "fileCreated": "2025-06-21T09:31:00.0180405+00:00", + "fileLastModified": "2025-07-14T09:31:00.0180413+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0180416+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0180365+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1025 + }, + "imageDetail": { + "width": 9219, + "height": 2768 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54323, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1025 }" + }, + "fileCreated": "2025-06-21T09:31:00.0198061+00:00", + "fileLastModified": "2025-07-14T09:31:00.0198068+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0198072+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0198028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1026 + }, + "imageDetail": { + "width": 1875, + "height": 6500 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22174, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1026 }" + }, + "fileCreated": "2025-06-21T09:31:00.0213932+00:00", + "fileLastModified": "2025-07-14T09:31:00.0213938+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0213899+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1027 + }, + "imageDetail": { + "width": 9411, + "height": 6631 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28526, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1027 }" + }, + "fileCreated": "2025-06-21T09:31:00.023592+00:00", + "fileLastModified": "2025-07-14T09:31:00.0235925+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0235928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0235887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1028 + }, + "imageDetail": { + "width": 4340, + "height": 8381 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1028 }" + }, + "fileCreated": "2025-06-21T09:31:00.0253962+00:00", + "fileLastModified": "2025-07-14T09:31:00.0254108+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0253939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1029 + }, + "imageDetail": { + "width": 7473, + "height": 4120 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 58163, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1029 }" + }, + "fileCreated": "2025-06-21T09:31:00.0272132+00:00", + "fileLastModified": "2025-07-14T09:31:00.0272137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.027214+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.02721+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1030 + }, + "imageDetail": { + "width": 5706, + "height": 7051 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 72000, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1030 }" + }, + "fileCreated": "2025-06-21T09:31:00.0290013+00:00", + "fileLastModified": "2025-07-14T09:31:00.0290018+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0289984+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1031 + }, + "imageDetail": { + "width": 427, + "height": 7991 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44954, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1031 }" + }, + "fileCreated": "2025-06-21T09:31:00.0308119+00:00", + "fileLastModified": "2025-07-14T09:31:00.0308125+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0308078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1032 + }, + "imageDetail": { + "width": 6875, + "height": 9578 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 77496, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1032 }" + }, + "fileCreated": "2025-06-21T09:31:00.0325523+00:00", + "fileLastModified": "2025-07-14T09:31:00.032553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.03255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1033 + }, + "imageDetail": { + "width": 4324, + "height": 4183 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80475, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1033 }" + }, + "fileCreated": "2025-06-21T09:31:00.0339112+00:00", + "fileLastModified": "2025-07-14T09:31:00.0339116+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0339118+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0339079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1034 + }, + "imageDetail": { + "width": 4346, + "height": 7088 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53661, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1034 }" + }, + "fileCreated": "2025-06-21T09:31:00.0353714+00:00", + "fileLastModified": "2025-07-14T09:31:00.0353719+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0353693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1035 + }, + "imageDetail": { + "width": 5573, + "height": 8221 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22057, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1035 }" + }, + "fileCreated": "2025-06-21T09:31:00.0368129+00:00", + "fileLastModified": "2025-07-14T09:31:00.0368134+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0368137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.036809+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1036 + }, + "imageDetail": { + "width": 1410, + "height": 4426 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99661, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1036 }" + }, + "fileCreated": "2025-06-21T09:31:00.0384123+00:00", + "fileLastModified": "2025-07-14T09:31:00.0384129+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0384131+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0384099+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1037 + }, + "imageDetail": { + "width": 7299, + "height": 5718 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89811, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1037 }" + }, + "fileCreated": "2025-06-21T09:31:00.0399648+00:00", + "fileLastModified": "2025-07-14T09:31:00.0399652+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0399626+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1038 + }, + "imageDetail": { + "width": 4123, + "height": 7373 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80828, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1038 }" + }, + "fileCreated": "2025-06-21T09:31:00.0413269+00:00", + "fileLastModified": "2025-07-14T09:31:00.0413274+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0413248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1039 + }, + "imageDetail": { + "width": 8731, + "height": 3105 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47507, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1039 }" + }, + "fileCreated": "2025-06-21T09:31:00.042884+00:00", + "fileLastModified": "2025-07-14T09:31:00.0428844+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0428846+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.042882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1040 + }, + "imageDetail": { + "width": 1569, + "height": 6792 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50957, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1040 }" + }, + "fileCreated": "2025-06-21T09:31:00.0441284+00:00", + "fileLastModified": "2025-07-14T09:31:00.0441288+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0441267+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1041 + }, + "imageDetail": { + "width": 3164, + "height": 6434 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53462, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1041 }" + }, + "fileCreated": "2025-06-21T09:31:00.045314+00:00", + "fileLastModified": "2025-07-14T09:31:00.0453144+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0453117+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1042 + }, + "imageDetail": { + "width": 4522, + "height": 7743 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54298, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1042 }" + }, + "fileCreated": "2025-06-21T09:31:00.0471037+00:00", + "fileLastModified": "2025-07-14T09:31:00.0471042+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0471014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1043 + }, + "imageDetail": { + "width": 206, + "height": 9769 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49483, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1043 }" + }, + "fileCreated": "2025-06-21T09:31:00.0484079+00:00", + "fileLastModified": "2025-07-14T09:31:00.0484087+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0484088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0484062+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1044 + }, + "imageDetail": { + "width": 497, + "height": 6626 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29219, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1044 }" + }, + "fileCreated": "2025-06-21T09:31:00.0496537+00:00", + "fileLastModified": "2025-07-14T09:31:00.0496541+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0496542+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0496524+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1045 + }, + "imageDetail": { + "width": 9345, + "height": 8226 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45107, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1045 }" + }, + "fileCreated": "2025-06-21T09:31:00.0510851+00:00", + "fileLastModified": "2025-07-14T09:31:00.0510855+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0510834+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1046 + }, + "imageDetail": { + "width": 2135, + "height": 9637 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50004, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1046 }" + }, + "fileCreated": "2025-06-21T09:31:00.0522911+00:00", + "fileLastModified": "2025-07-14T09:31:00.0522914+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0522897+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1047 + }, + "imageDetail": { + "width": 517, + "height": 3218 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80073, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1047 }" + }, + "fileCreated": "2025-06-21T09:31:00.0534399+00:00", + "fileLastModified": "2025-07-14T09:31:00.0534403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0534386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1048 + }, + "imageDetail": { + "width": 6269, + "height": 8943 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 34867, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1048 }" + }, + "fileCreated": "2025-06-21T09:31:00.0549296+00:00", + "fileLastModified": "2025-07-14T09:31:00.05493+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0549301+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0549276+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1049 + }, + "imageDetail": { + "width": 1279, + "height": 8179 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89997, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1049 }" + }, + "fileCreated": "2025-06-21T09:31:00.0562024+00:00", + "fileLastModified": "2025-07-14T09:31:00.0562028+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0562029+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.056201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1050 + }, + "imageDetail": { + "width": 7124, + "height": 8385 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1050 }" + }, + "fileCreated": "2025-06-21T09:31:00.0577627+00:00", + "fileLastModified": "2025-07-14T09:31:00.0577631+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0577632+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0577606+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1051 + }, + "imageDetail": { + "width": 1934, + "height": 8139 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21051, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1051 }" + }, + "fileCreated": "2025-06-21T09:31:00.0598275+00:00", + "fileLastModified": "2025-07-14T09:31:00.0598279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0598248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1052 + }, + "imageDetail": { + "width": 5887, + "height": 6300 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96534, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1052 }" + }, + "fileCreated": "2025-06-21T09:31:00.0614315+00:00", + "fileLastModified": "2025-07-14T09:31:00.0614319+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0614289+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1053 + }, + "imageDetail": { + "width": 7684, + "height": 5329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74610, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1053 }" + }, + "fileCreated": "2025-06-21T09:31:00.0630541+00:00", + "fileLastModified": "2025-07-14T09:31:00.0630545+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0630509+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1054 + }, + "imageDetail": { + "width": 4185, + "height": 5675 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29218, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1054 }" + }, + "fileCreated": "2025-06-21T09:31:00.0643772+00:00", + "fileLastModified": "2025-07-14T09:31:00.0643776+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0643755+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1055 + }, + "imageDetail": { + "width": 938, + "height": 9855 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32081, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1055 }" + }, + "fileCreated": "2025-06-21T09:31:00.0656925+00:00", + "fileLastModified": "2025-07-14T09:31:00.0656928+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0656909+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1056 + }, + "imageDetail": { + "width": 8438, + "height": 7953 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 28890, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1056 }" + }, + "fileCreated": "2025-06-21T09:31:00.0672829+00:00", + "fileLastModified": "2025-07-14T09:31:00.0672832+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0672815+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1057 + }, + "imageDetail": { + "width": 7923, + "height": 4731 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 28984, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1057 }" + }, + "fileCreated": "2025-06-21T09:31:00.068702+00:00", + "fileLastModified": "2025-07-14T09:31:00.0687024+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0687025+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0687005+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1058 + }, + "imageDetail": { + "width": 3156, + "height": 3882 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95554, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1058 }" + }, + "fileCreated": "2025-06-21T09:31:00.0768322+00:00", + "fileLastModified": "2025-07-14T09:31:00.0768328+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0768332+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0768284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1059 + }, + "imageDetail": { + "width": 9994, + "height": 7051 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1059 }" + }, + "fileCreated": "2025-06-21T09:31:00.0790976+00:00", + "fileLastModified": "2025-07-14T09:31:00.0790981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0790938+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1060 + }, + "imageDetail": { + "width": 9549, + "height": 3724 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64836, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1060 }" + }, + "fileCreated": "2025-06-21T09:31:00.0810017+00:00", + "fileLastModified": "2025-07-14T09:31:00.0810021+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0809997+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1061 + }, + "imageDetail": { + "width": 4839, + "height": 7613 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1061 }" + }, + "fileCreated": "2025-06-21T09:31:00.0823515+00:00", + "fileLastModified": "2025-07-14T09:31:00.0823518+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0823502+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1062 + }, + "imageDetail": { + "width": 9275, + "height": 7332 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93112, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1062 }" + }, + "fileCreated": "2025-06-21T09:31:00.0839432+00:00", + "fileLastModified": "2025-07-14T09:31:00.0839435+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0839417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1063 + }, + "imageDetail": { + "width": 8582, + "height": 5215 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96462, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1063 }" + }, + "fileCreated": "2025-06-21T09:31:00.0853283+00:00", + "fileLastModified": "2025-07-14T09:31:00.0853285+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0853287+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0853266+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1064 + }, + "imageDetail": { + "width": 574, + "height": 7545 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51923, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1064 }" + }, + "fileCreated": "2025-06-21T09:31:00.0870625+00:00", + "fileLastModified": "2025-07-14T09:31:00.0870628+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0870608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1065 + }, + "imageDetail": { + "width": 5113, + "height": 2048 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 52936, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1065 }" + }, + "fileCreated": "2025-06-21T09:31:00.0887119+00:00", + "fileLastModified": "2025-07-14T09:31:00.0887123+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0887099+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1066 + }, + "imageDetail": { + "width": 5392, + "height": 2597 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87364, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1066 }" + }, + "fileCreated": "2025-06-21T09:31:00.0900225+00:00", + "fileLastModified": "2025-07-14T09:31:00.0900228+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.090021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1067 + }, + "imageDetail": { + "width": 5582, + "height": 6869 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60116, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1067 }" + }, + "fileCreated": "2025-06-21T09:31:00.0918435+00:00", + "fileLastModified": "2025-07-14T09:31:00.0918439+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0918441+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.091842+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1068 + }, + "imageDetail": { + "width": 7031, + "height": 2668 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66092, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1068 }" + }, + "fileCreated": "2025-06-21T09:31:00.0932571+00:00", + "fileLastModified": "2025-07-14T09:31:00.0932574+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0932576+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0932556+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1069 + }, + "imageDetail": { + "width": 4856, + "height": 6306 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81886, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1069 }" + }, + "fileCreated": "2025-06-21T09:31:00.0948902+00:00", + "fileLastModified": "2025-07-14T09:31:00.0948905+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0948906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0948889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1070 + }, + "imageDetail": { + "width": 5410, + "height": 9899 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28306, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1070 }" + }, + "fileCreated": "2025-06-21T09:31:00.0963047+00:00", + "fileLastModified": "2025-07-14T09:31:00.096305+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0963034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1071 + }, + "imageDetail": { + "width": 8973, + "height": 3438 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 50347, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1071 }" + }, + "fileCreated": "2025-06-21T09:31:00.0977608+00:00", + "fileLastModified": "2025-07-14T09:31:00.0977611+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0977612+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0977595+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1072 + }, + "imageDetail": { + "width": 8044, + "height": 9884 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64141, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1072 }" + }, + "fileCreated": "2025-06-21T09:31:00.0994052+00:00", + "fileLastModified": "2025-07-14T09:31:00.0994056+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0994038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1073 + }, + "imageDetail": { + "width": 7975, + "height": 3031 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36906, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1073 }" + }, + "fileCreated": "2025-06-21T09:31:00.100825+00:00", + "fileLastModified": "2025-07-14T09:31:00.1008253+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1008255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1008239+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1074 + }, + "imageDetail": { + "width": 1698, + "height": 7325 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94280, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1074 }" + }, + "fileCreated": "2025-06-21T09:31:00.1025834+00:00", + "fileLastModified": "2025-07-14T09:31:00.1025837+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1025816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1075 + }, + "imageDetail": { + "width": 7616, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33261, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1075 }" + }, + "fileCreated": "2025-06-21T09:31:00.1043598+00:00", + "fileLastModified": "2025-07-14T09:31:00.1043602+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1043607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.104358+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1076 + }, + "imageDetail": { + "width": 8458, + "height": 7123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91125, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1076 }" + }, + "fileCreated": "2025-06-21T09:31:00.105956+00:00", + "fileLastModified": "2025-07-14T09:31:00.1059564+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1059567+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1059538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1077 + }, + "imageDetail": { + "width": 6003, + "height": 4421 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64683, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1077 }" + }, + "fileCreated": "2025-06-21T09:31:00.1079109+00:00", + "fileLastModified": "2025-07-14T09:31:00.1079113+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1079086+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1078 + }, + "imageDetail": { + "width": 4595, + "height": 7154 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69808, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1078 }" + }, + "fileCreated": "2025-06-21T09:31:00.1097238+00:00", + "fileLastModified": "2025-07-14T09:31:00.1097242+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1097244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1097221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1079 + }, + "imageDetail": { + "width": 7907, + "height": 8918 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23366, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1079 }" + }, + "fileCreated": "2025-06-21T09:31:00.1111303+00:00", + "fileLastModified": "2025-07-14T09:31:00.1111306+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.111129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1080 + }, + "imageDetail": { + "width": 5397, + "height": 2873 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 31695, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1080 }" + }, + "fileCreated": "2025-06-21T09:31:00.1128324+00:00", + "fileLastModified": "2025-07-14T09:31:00.1128327+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1128304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1081 + }, + "imageDetail": { + "width": 5610, + "height": 4045 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58138, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1081 }" + }, + "fileCreated": "2025-06-21T09:31:00.1142745+00:00", + "fileLastModified": "2025-07-14T09:31:00.1142747+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1142749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1142729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1082 + }, + "imageDetail": { + "width": 4551, + "height": 5542 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1082 }" + }, + "fileCreated": "2025-06-21T09:31:00.1156734+00:00", + "fileLastModified": "2025-07-14T09:31:00.1156737+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1156739+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1156716+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1083 + }, + "imageDetail": { + "width": 5734, + "height": 6690 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46215, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1083 }" + }, + "fileCreated": "2025-06-21T09:31:00.1176111+00:00", + "fileLastModified": "2025-07-14T09:31:00.1176116+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1176087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1084 + }, + "imageDetail": { + "width": 3330, + "height": 3065 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1084 }" + }, + "fileCreated": "2025-06-21T09:31:00.1194198+00:00", + "fileLastModified": "2025-07-14T09:31:00.1194202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1194176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1085 + }, + "imageDetail": { + "width": 6681, + "height": 6787 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1085 }" + }, + "fileCreated": "2025-06-21T09:31:00.1208485+00:00", + "fileLastModified": "2025-07-14T09:31:00.1208488+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1208471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1086 + }, + "imageDetail": { + "width": 984, + "height": 7041 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1086 }" + }, + "fileCreated": "2025-06-21T09:31:00.1224639+00:00", + "fileLastModified": "2025-07-14T09:31:00.1224642+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1224625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1087 + }, + "imageDetail": { + "width": 9435, + "height": 4003 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97088, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1087 }" + }, + "fileCreated": "2025-06-21T09:31:00.1243925+00:00", + "fileLastModified": "2025-07-14T09:31:00.1243933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1243904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1088 + }, + "imageDetail": { + "width": 1728, + "height": 7075 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 33683, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1088 }" + }, + "fileCreated": "2025-06-21T09:31:00.1262508+00:00", + "fileLastModified": "2025-07-14T09:31:00.1262511+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1262514+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1262486+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1089 + }, + "imageDetail": { + "width": 6265, + "height": 4438 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1089 }" + }, + "fileCreated": "2025-06-21T09:31:00.1280221+00:00", + "fileLastModified": "2025-07-14T09:31:00.1280224+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1280226+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1280203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1090 + }, + "imageDetail": { + "width": 3129, + "height": 3001 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 26900, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1090 }" + }, + "fileCreated": "2025-06-21T09:31:00.1298587+00:00", + "fileLastModified": "2025-07-14T09:31:00.129859+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1298567+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1091 + }, + "imageDetail": { + "width": 6102, + "height": 8283 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57428, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1091 }" + }, + "fileCreated": "2025-06-21T09:31:00.1313059+00:00", + "fileLastModified": "2025-07-14T09:31:00.1313062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1313042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1092 + }, + "imageDetail": { + "width": 2547, + "height": 4798 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 80266, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1092 }" + }, + "fileCreated": "2025-06-21T09:31:00.1330796+00:00", + "fileLastModified": "2025-07-14T09:31:00.1330799+00:00", + "fileLastViewed": "2025-07-14T09:31:00.13308+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.133078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1093 + }, + "imageDetail": { + "width": 4830, + "height": 9454 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36723, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1093 }" + }, + "fileCreated": "2025-06-21T09:31:00.1347925+00:00", + "fileLastModified": "2025-07-14T09:31:00.1347928+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1347929+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.134791+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1094 + }, + "imageDetail": { + "width": 9736, + "height": 2016 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91787, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1094 }" + }, + "fileCreated": "2025-06-21T09:31:00.1366642+00:00", + "fileLastModified": "2025-07-14T09:31:00.1366645+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1366625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1095 + }, + "imageDetail": { + "width": 2697, + "height": 5828 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 37544, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1095 }" + }, + "fileCreated": "2025-06-21T09:31:00.1381134+00:00", + "fileLastModified": "2025-07-14T09:31:00.1381137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1381138+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1381121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1096 + }, + "imageDetail": { + "width": 3688, + "height": 9935 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1096 }" + }, + "fileCreated": "2025-06-21T09:31:00.1398001+00:00", + "fileLastModified": "2025-07-14T09:31:00.1398005+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1397981+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1097 + }, + "imageDetail": { + "width": 3772, + "height": 7655 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87582, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1097 }" + }, + "fileCreated": "2025-06-21T09:31:00.1416069+00:00", + "fileLastModified": "2025-07-14T09:31:00.1416071+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1416055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1098 + }, + "imageDetail": { + "width": 690, + "height": 3778 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60106, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1098 }" + }, + "fileCreated": "2025-06-21T09:31:00.1431524+00:00", + "fileLastModified": "2025-07-14T09:31:00.1431527+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1431528+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1431513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1099 + }, + "imageDetail": { + "width": 3148, + "height": 4561 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 37549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1099 }" + }, + "fileCreated": "2025-06-21T09:31:00.1448353+00:00", + "fileLastModified": "2025-07-14T09:31:00.1448356+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1448357+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1448339+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1100 + }, + "imageDetail": { + "width": 9099, + "height": 4622 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1100 }" + }, + "fileCreated": "2025-06-21T09:31:00.1478042+00:00", + "fileLastModified": "2025-07-14T09:31:00.1478045+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1478028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1101 + }, + "imageDetail": { + "width": 699, + "height": 6692 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26578, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1101 }" + }, + "fileCreated": "2025-06-21T09:31:00.1492717+00:00", + "fileLastModified": "2025-07-14T09:31:00.149272+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1492706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1102 + }, + "imageDetail": { + "width": 3978, + "height": 8195 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1102 }" + }, + "fileCreated": "2025-06-21T09:31:00.1508769+00:00", + "fileLastModified": "2025-07-14T09:31:00.1508772+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1508757+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1103 + }, + "imageDetail": { + "width": 9340, + "height": 7342 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1103 }" + }, + "fileCreated": "2025-06-21T09:31:00.1523218+00:00", + "fileLastModified": "2025-07-14T09:31:00.1523221+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1523222+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1523208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1104 + }, + "imageDetail": { + "width": 7046, + "height": 5824 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31679, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1104 }" + }, + "fileCreated": "2025-06-21T09:31:00.1541135+00:00", + "fileLastModified": "2025-07-14T09:31:00.1541138+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1541139+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1541121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1105 + }, + "imageDetail": { + "width": 9801, + "height": 8371 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53708, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1105 }" + }, + "fileCreated": "2025-06-21T09:31:00.155968+00:00", + "fileLastModified": "2025-07-14T09:31:00.1559683+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1559684+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1559661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1106 + }, + "imageDetail": { + "width": 2943, + "height": 9018 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53840, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1106 }" + }, + "fileCreated": "2025-06-21T09:31:00.1574456+00:00", + "fileLastModified": "2025-07-14T09:31:00.1574459+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1574444+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1107 + }, + "imageDetail": { + "width": 7885, + "height": 5489 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38721, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1107 }" + }, + "fileCreated": "2025-06-21T09:31:00.1591828+00:00", + "fileLastModified": "2025-07-14T09:31:00.1591831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1591816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1108 + }, + "imageDetail": { + "width": 7186, + "height": 8412 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70801, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1108 }" + }, + "fileCreated": "2025-06-21T09:31:00.16059+00:00", + "fileLastModified": "2025-07-14T09:31:00.1605904+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1605905+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1605889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1109 + }, + "imageDetail": { + "width": 2837, + "height": 9875 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 69315, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1109 }" + }, + "fileCreated": "2025-06-21T09:31:00.1622093+00:00", + "fileLastModified": "2025-07-14T09:31:00.1622095+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1622097+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1622081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1110 + }, + "imageDetail": { + "width": 6167, + "height": 9413 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39718, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1110 }" + }, + "fileCreated": "2025-06-21T09:31:00.1635797+00:00", + "fileLastModified": "2025-07-14T09:31:00.1635799+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1635786+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1111 + }, + "imageDetail": { + "width": 1168, + "height": 6924 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79071, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1111 }" + }, + "fileCreated": "2025-06-21T09:31:00.1653005+00:00", + "fileLastModified": "2025-07-14T09:31:00.1653007+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1653009+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1652992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1112 + }, + "imageDetail": { + "width": 5461, + "height": 6308 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1112 }" + }, + "fileCreated": "2025-06-21T09:31:00.1667772+00:00", + "fileLastModified": "2025-07-14T09:31:00.1667775+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1667776+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1667761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1113 + }, + "imageDetail": { + "width": 4893, + "height": 6671 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 31812, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1113 }" + }, + "fileCreated": "2025-06-21T09:31:00.1684543+00:00", + "fileLastModified": "2025-07-14T09:31:00.1684546+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1684548+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1684531+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1114 + }, + "imageDetail": { + "width": 3708, + "height": 5587 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1114 }" + }, + "fileCreated": "2025-06-21T09:31:00.1702435+00:00", + "fileLastModified": "2025-07-14T09:31:00.1702439+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1702412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1115 + }, + "imageDetail": { + "width": 2520, + "height": 9163 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 21484, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1115 }" + }, + "fileCreated": "2025-06-21T09:31:00.1720837+00:00", + "fileLastModified": "2025-07-14T09:31:00.172084+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1720842+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1720825+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1116 + }, + "imageDetail": { + "width": 1972, + "height": 8510 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91548, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1116 }" + }, + "fileCreated": "2025-06-21T09:31:00.1737458+00:00", + "fileLastModified": "2025-07-14T09:31:00.1737461+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1737446+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1117 + }, + "imageDetail": { + "width": 2572, + "height": 9124 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29503, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1117 }" + }, + "fileCreated": "2025-06-21T09:31:00.1753858+00:00", + "fileLastModified": "2025-07-14T09:31:00.1753862+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1753863+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1753845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1118 + }, + "imageDetail": { + "width": 2587, + "height": 6383 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1118 }" + }, + "fileCreated": "2025-06-21T09:31:00.1769328+00:00", + "fileLastModified": "2025-07-14T09:31:00.1769331+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1769317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1119 + }, + "imageDetail": { + "width": 3667, + "height": 8245 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 97017, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1119 }" + }, + "fileCreated": "2025-06-21T09:31:00.1787328+00:00", + "fileLastModified": "2025-07-14T09:31:00.1787331+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1787332+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1787317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1120 + }, + "imageDetail": { + "width": 9026, + "height": 7089 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77458, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1120 }" + }, + "fileCreated": "2025-06-21T09:31:00.1802904+00:00", + "fileLastModified": "2025-07-14T09:31:00.1802907+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1802893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1121 + }, + "imageDetail": { + "width": 4208, + "height": 7026 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76961, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1121 }" + }, + "fileCreated": "2025-06-21T09:31:00.1820861+00:00", + "fileLastModified": "2025-07-14T09:31:00.1820864+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1820865+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.182085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1122 + }, + "imageDetail": { + "width": 8149, + "height": 3663 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1122 }" + }, + "fileCreated": "2025-06-21T09:31:00.1836606+00:00", + "fileLastModified": "2025-07-14T09:31:00.183661+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1836611+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1836595+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1123 + }, + "imageDetail": { + "width": 7274, + "height": 9151 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55189, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1123 }" + }, + "fileCreated": "2025-06-21T09:31:00.1857624+00:00", + "fileLastModified": "2025-07-14T09:31:00.1857627+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1857629+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1857609+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1124 + }, + "imageDetail": { + "width": 8060, + "height": 4223 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1124 }" + }, + "fileCreated": "2025-06-21T09:31:00.1875137+00:00", + "fileLastModified": "2025-07-14T09:31:00.187514+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1875141+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1875121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1125 + }, + "imageDetail": { + "width": 3127, + "height": 6592 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42768, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1125 }" + }, + "fileCreated": "2025-06-21T09:31:00.1895407+00:00", + "fileLastModified": "2025-07-14T09:31:00.189541+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1895411+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1895394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1126 + }, + "imageDetail": { + "width": 8916, + "height": 5590 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1126 }" + }, + "fileCreated": "2025-06-21T09:31:00.191196+00:00", + "fileLastModified": "2025-07-14T09:31:00.1911963+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1911965+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1911949+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1127 + }, + "imageDetail": { + "width": 6411, + "height": 8345 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36263, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1127 }" + }, + "fileCreated": "2025-06-21T09:31:00.1931545+00:00", + "fileLastModified": "2025-07-14T09:31:00.1931549+00:00", + "fileLastViewed": "2025-07-14T09:31:00.193155+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1931533+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1128 + }, + "imageDetail": { + "width": 3374, + "height": 6137 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86704, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1128 }" + }, + "fileCreated": "2025-06-21T09:31:00.194902+00:00", + "fileLastModified": "2025-07-14T09:31:00.1949023+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1949008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1129 + }, + "imageDetail": { + "width": 9707, + "height": 5984 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75334, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1129 }" + }, + "fileCreated": "2025-06-21T09:31:00.1968832+00:00", + "fileLastModified": "2025-07-14T09:31:00.1968835+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1968837+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1968821+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1130 + }, + "imageDetail": { + "width": 9478, + "height": 9817 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1130 }" + }, + "fileCreated": "2025-06-21T09:31:00.1985852+00:00", + "fileLastModified": "2025-07-14T09:31:00.1985855+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1985856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1985841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1131 + }, + "imageDetail": { + "width": 3227, + "height": 7716 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47775, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1131 }" + }, + "fileCreated": "2025-06-21T09:31:00.2007902+00:00", + "fileLastModified": "2025-07-14T09:31:00.2007905+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2007906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2007887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1132 + }, + "imageDetail": { + "width": 1270, + "height": 3328 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58165, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1132 }" + }, + "fileCreated": "2025-06-21T09:31:00.2073218+00:00", + "fileLastModified": "2025-07-14T09:31:00.2073221+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2073223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2073193+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1133 + }, + "imageDetail": { + "width": 7512, + "height": 8615 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74385, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1133 }" + }, + "fileCreated": "2025-06-21T09:31:00.20913+00:00", + "fileLastModified": "2025-07-14T09:31:00.2091302+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2091289+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1134 + }, + "imageDetail": { + "width": 1503, + "height": 9527 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42575, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1134 }" + }, + "fileCreated": "2025-06-21T09:31:00.211147+00:00", + "fileLastModified": "2025-07-14T09:31:00.2111473+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2111452+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1135 + }, + "imageDetail": { + "width": 580, + "height": 2870 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88791, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1135 }" + }, + "fileCreated": "2025-06-21T09:31:00.212869+00:00", + "fileLastModified": "2025-07-14T09:31:00.2128693+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2128695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2128678+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1136 + }, + "imageDetail": { + "width": 2989, + "height": 3778 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81112, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1136 }" + }, + "fileCreated": "2025-06-21T09:31:00.2148097+00:00", + "fileLastModified": "2025-07-14T09:31:00.21481+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2148101+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2148085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1137 + }, + "imageDetail": { + "width": 7723, + "height": 9470 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 99314, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1137 }" + }, + "fileCreated": "2025-06-21T09:31:00.2287314+00:00", + "fileLastModified": "2025-07-14T09:31:00.2287319+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2287333+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.228728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1138 + }, + "imageDetail": { + "width": 3780, + "height": 7138 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85153, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1138 }" + }, + "fileCreated": "2025-06-21T09:31:00.2316977+00:00", + "fileLastModified": "2025-07-14T09:31:00.2316993+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2316943+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1139 + }, + "imageDetail": { + "width": 8911, + "height": 7283 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31005, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1139 }" + }, + "fileCreated": "2025-06-21T09:31:00.2348121+00:00", + "fileLastModified": "2025-07-14T09:31:00.2348128+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2348131+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2348096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1140 + }, + "imageDetail": { + "width": 8498, + "height": 7040 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64295, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1140 }" + }, + "fileCreated": "2025-06-21T09:31:00.237086+00:00", + "fileLastModified": "2025-07-14T09:31:00.2370867+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2370869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2370838+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1141 + }, + "imageDetail": { + "width": 3391, + "height": 5777 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72157, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1141 }" + }, + "fileCreated": "2025-06-21T09:31:00.2390863+00:00", + "fileLastModified": "2025-07-14T09:31:00.2390867+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2390868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.239085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1142 + }, + "imageDetail": { + "width": 2453, + "height": 7378 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60795, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1142 }" + }, + "fileCreated": "2025-06-21T09:31:00.2412721+00:00", + "fileLastModified": "2025-07-14T09:31:00.2412724+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2412726+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2412706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1143 + }, + "imageDetail": { + "width": 4515, + "height": 3957 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38703, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1143 }" + }, + "fileCreated": "2025-06-21T09:31:00.2433419+00:00", + "fileLastModified": "2025-07-14T09:31:00.2433423+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2433425+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2433393+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1144 + }, + "imageDetail": { + "width": 1344, + "height": 7337 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68196, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1144 }" + }, + "fileCreated": "2025-06-21T09:31:00.2452855+00:00", + "fileLastModified": "2025-07-14T09:31:00.2452858+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2452835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1145 + }, + "imageDetail": { + "width": 6845, + "height": 7693 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23900, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1145 }" + }, + "fileCreated": "2025-06-21T09:31:00.247775+00:00", + "fileLastModified": "2025-07-14T09:31:00.2477754+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2477756+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2477728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1146 + }, + "imageDetail": { + "width": 2528, + "height": 9738 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 21289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1146 }" + }, + "fileCreated": "2025-06-21T09:31:00.249669+00:00", + "fileLastModified": "2025-07-14T09:31:00.2496693+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2496666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1147 + }, + "imageDetail": { + "width": 2285, + "height": 9219 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23997, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1147 }" + }, + "fileCreated": "2025-06-21T09:31:00.2518434+00:00", + "fileLastModified": "2025-07-14T09:31:00.2518437+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2518417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1148 + }, + "imageDetail": { + "width": 8902, + "height": 4716 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35727, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1148 }" + }, + "fileCreated": "2025-06-21T09:31:00.254016+00:00", + "fileLastModified": "2025-07-14T09:31:00.2540172+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2540173+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2540144+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1149 + }, + "imageDetail": { + "width": 8908, + "height": 5188 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 27586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1149 }" + }, + "fileCreated": "2025-06-21T09:31:00.2559271+00:00", + "fileLastModified": "2025-07-14T09:31:00.2559274+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2559257+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1150 + }, + "imageDetail": { + "width": 3222, + "height": 9631 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50888, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1150 }" + }, + "fileCreated": "2025-06-21T09:31:00.2580797+00:00", + "fileLastModified": "2025-07-14T09:31:00.2580801+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2580802+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2580783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1151 + }, + "imageDetail": { + "width": 7480, + "height": 5760 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77917, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1151 }" + }, + "fileCreated": "2025-06-21T09:31:00.2601132+00:00", + "fileLastModified": "2025-07-14T09:31:00.2601136+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2601137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2601108+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1152 + }, + "imageDetail": { + "width": 4788, + "height": 6441 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25503, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1152 }" + }, + "fileCreated": "2025-06-21T09:31:00.2624904+00:00", + "fileLastModified": "2025-07-14T09:31:00.2624907+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2624888+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1153 + }, + "imageDetail": { + "width": 1213, + "height": 3404 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34099, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1153 }" + }, + "fileCreated": "2025-06-21T09:31:00.2647034+00:00", + "fileLastModified": "2025-07-14T09:31:00.2647038+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2647041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2647012+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1154 + }, + "imageDetail": { + "width": 4266, + "height": 9281 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70608, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1154 }" + }, + "fileCreated": "2025-06-21T09:31:00.2666982+00:00", + "fileLastModified": "2025-07-14T09:31:00.2666985+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2666969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1155 + }, + "imageDetail": { + "width": 4301, + "height": 2949 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1155 }" + }, + "fileCreated": "2025-06-21T09:31:00.268814+00:00", + "fileLastModified": "2025-07-14T09:31:00.2688143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2688125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1156 + }, + "imageDetail": { + "width": 9342, + "height": 5284 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85908, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1156 }" + }, + "fileCreated": "2025-06-21T09:31:00.2707156+00:00", + "fileLastModified": "2025-07-14T09:31:00.270716+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2707161+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2707144+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1157 + }, + "imageDetail": { + "width": 9518, + "height": 5200 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60211, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1157 }" + }, + "fileCreated": "2025-06-21T09:31:00.272769+00:00", + "fileLastModified": "2025-07-14T09:31:00.2727693+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2727672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1158 + }, + "imageDetail": { + "width": 162, + "height": 7881 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57963, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1158 }" + }, + "fileCreated": "2025-06-21T09:31:00.2748813+00:00", + "fileLastModified": "2025-07-14T09:31:00.274882+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2748821+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2748796+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1159 + }, + "imageDetail": { + "width": 8088, + "height": 3623 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22667, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1159 }" + }, + "fileCreated": "2025-06-21T09:31:00.2774965+00:00", + "fileLastModified": "2025-07-14T09:31:00.2774968+00:00", + "fileLastViewed": "2025-07-14T09:31:00.277497+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2774952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1160 + }, + "imageDetail": { + "width": 6876, + "height": 7266 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86132, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1160 }" + }, + "fileCreated": "2025-06-21T09:31:00.2797476+00:00", + "fileLastModified": "2025-07-14T09:31:00.2797479+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2797455+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1161 + }, + "imageDetail": { + "width": 9141, + "height": 3713 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43720, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1161 }" + }, + "fileCreated": "2025-06-21T09:31:00.2818163+00:00", + "fileLastModified": "2025-07-14T09:31:00.2818166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2818148+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1162 + }, + "imageDetail": { + "width": 5474, + "height": 7273 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1162 }" + }, + "fileCreated": "2025-06-21T09:31:00.283664+00:00", + "fileLastModified": "2025-07-14T09:31:00.2836644+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2836628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1163 + }, + "imageDetail": { + "width": 9924, + "height": 4129 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90135, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1163 }" + }, + "fileCreated": "2025-06-21T09:31:00.2857253+00:00", + "fileLastModified": "2025-07-14T09:31:00.2857257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2857235+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1164 + }, + "imageDetail": { + "width": 222, + "height": 9313 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72353, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1164 }" + }, + "fileCreated": "2025-06-21T09:31:00.2880276+00:00", + "fileLastModified": "2025-07-14T09:31:00.288028+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2880281+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2880255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1165 + }, + "imageDetail": { + "width": 7298, + "height": 6363 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38408, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1165 }" + }, + "fileCreated": "2025-06-21T09:31:00.2901087+00:00", + "fileLastModified": "2025-07-14T09:31:00.2901092+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2901093+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.290107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1166 + }, + "imageDetail": { + "width": 6897, + "height": 7819 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90457, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1166 }" + }, + "fileCreated": "2025-06-21T09:31:00.2925971+00:00", + "fileLastModified": "2025-07-14T09:31:00.2925981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2925945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1167 + }, + "imageDetail": { + "width": 6772, + "height": 9873 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92642, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1167 }" + }, + "fileCreated": "2025-06-21T09:31:00.2953375+00:00", + "fileLastModified": "2025-07-14T09:31:00.2953381+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2953346+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1168 + }, + "imageDetail": { + "width": 3020, + "height": 8219 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68443, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1168 }" + }, + "fileCreated": "2025-06-21T09:31:00.2978185+00:00", + "fileLastModified": "2025-07-14T09:31:00.2978189+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2978191+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2978167+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1169 + }, + "imageDetail": { + "width": 9804, + "height": 5309 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 67592, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1169 }" + }, + "fileCreated": "2025-06-21T09:31:00.2998239+00:00", + "fileLastModified": "2025-07-14T09:31:00.2998243+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2998244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2998227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1170 + }, + "imageDetail": { + "width": 5513, + "height": 7333 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 76264, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1170 }" + }, + "fileCreated": "2025-06-21T09:31:00.3020941+00:00", + "fileLastModified": "2025-07-14T09:31:00.3020945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3020927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1171 + }, + "imageDetail": { + "width": 7934, + "height": 2994 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89248, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1171 }" + }, + "fileCreated": "2025-06-21T09:31:00.3042249+00:00", + "fileLastModified": "2025-07-14T09:31:00.3042256+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3040485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1172 + }, + "imageDetail": { + "width": 4717, + "height": 6520 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1172 }" + }, + "fileCreated": "2025-06-21T09:31:00.3062531+00:00", + "fileLastModified": "2025-07-14T09:31:00.3062534+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3062519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1173 + }, + "imageDetail": { + "width": 6486, + "height": 5620 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61702, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1173 }" + }, + "fileCreated": "2025-06-21T09:31:00.3083941+00:00", + "fileLastModified": "2025-07-14T09:31:00.3083943+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3083928+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1174 + }, + "imageDetail": { + "width": 6332, + "height": 8057 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1174 }" + }, + "fileCreated": "2025-06-21T09:31:00.3107674+00:00", + "fileLastModified": "2025-07-14T09:31:00.3107677+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3107678+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3107644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1175 + }, + "imageDetail": { + "width": 3064, + "height": 4110 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71525, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1175 }" + }, + "fileCreated": "2025-06-21T09:31:00.3131363+00:00", + "fileLastModified": "2025-07-14T09:31:00.3131366+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3131367+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3131349+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1176 + }, + "imageDetail": { + "width": 8687, + "height": 3635 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 33914, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1176 }" + }, + "fileCreated": "2025-06-21T09:31:00.3155042+00:00", + "fileLastModified": "2025-07-14T09:31:00.3155045+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3155047+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3155025+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1177 + }, + "imageDetail": { + "width": 729, + "height": 8925 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42451, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1177 }" + }, + "fileCreated": "2025-06-21T09:31:00.3175252+00:00", + "fileLastModified": "2025-07-14T09:31:00.3175255+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3175257+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3175238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1178 + }, + "imageDetail": { + "width": 6826, + "height": 9023 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 25603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1178 }" + }, + "fileCreated": "2025-06-21T09:31:00.319731+00:00", + "fileLastModified": "2025-07-14T09:31:00.3197313+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3197315+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3197285+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1179 + }, + "imageDetail": { + "width": 6702, + "height": 9579 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40121, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1179 }" + }, + "fileCreated": "2025-06-21T09:31:00.3219397+00:00", + "fileLastModified": "2025-07-14T09:31:00.32194+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3219383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1180 + }, + "imageDetail": { + "width": 1965, + "height": 8775 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60270, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1180 }" + }, + "fileCreated": "2025-06-21T09:31:00.3241287+00:00", + "fileLastModified": "2025-07-14T09:31:00.324129+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3241275+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1181 + }, + "imageDetail": { + "width": 3938, + "height": 8456 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 48113, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1181 }" + }, + "fileCreated": "2025-06-21T09:31:00.3265368+00:00", + "fileLastModified": "2025-07-14T09:31:00.3265371+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3265373+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3265348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1182 + }, + "imageDetail": { + "width": 1907, + "height": 9292 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31727, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1182 }" + }, + "fileCreated": "2025-06-21T09:31:00.3289821+00:00", + "fileLastModified": "2025-07-14T09:31:00.3289824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3289799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1183 + }, + "imageDetail": { + "width": 3841, + "height": 8697 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27477, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1183 }" + }, + "fileCreated": "2025-06-21T09:31:00.3315379+00:00", + "fileLastModified": "2025-07-14T09:31:00.3315382+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3315384+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3315364+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1184 + }, + "imageDetail": { + "width": 6464, + "height": 6798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1184 }" + }, + "fileCreated": "2025-06-21T09:31:00.3338751+00:00", + "fileLastModified": "2025-07-14T09:31:00.3338754+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3338756+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3338733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1185 + }, + "imageDetail": { + "width": 2114, + "height": 2826 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 92721, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1185 }" + }, + "fileCreated": "2025-06-21T09:31:00.3364235+00:00", + "fileLastModified": "2025-07-14T09:31:00.3364238+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3364239+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.336422+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1186 + }, + "imageDetail": { + "width": 3279, + "height": 3358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1186 }" + }, + "fileCreated": "2025-06-21T09:31:00.3390188+00:00", + "fileLastModified": "2025-07-14T09:31:00.3390192+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3390194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.339017+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1187 + }, + "imageDetail": { + "width": 7869, + "height": 6283 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24353, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1187 }" + }, + "fileCreated": "2025-06-21T09:31:00.341686+00:00", + "fileLastModified": "2025-07-14T09:31:00.3416864+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3416836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1188 + }, + "imageDetail": { + "width": 7336, + "height": 2616 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1188 }" + }, + "fileCreated": "2025-06-21T09:31:00.3441774+00:00", + "fileLastModified": "2025-07-14T09:31:00.3441778+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3441779+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3441753+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1189 + }, + "imageDetail": { + "width": 8599, + "height": 6872 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75968, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1189 }" + }, + "fileCreated": "2025-06-21T09:31:00.3467+00:00", + "fileLastModified": "2025-07-14T09:31:00.3467003+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3466982+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1190 + }, + "imageDetail": { + "width": 8055, + "height": 2143 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1190 }" + }, + "fileCreated": "2025-06-21T09:31:00.350004+00:00", + "fileLastModified": "2025-07-14T09:31:00.3500043+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3500046+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3500013+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1191 + }, + "imageDetail": { + "width": 4039, + "height": 6005 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55545, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1191 }" + }, + "fileCreated": "2025-06-21T09:31:00.352809+00:00", + "fileLastModified": "2025-07-14T09:31:00.3528094+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3528097+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3528065+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1192 + }, + "imageDetail": { + "width": 3070, + "height": 8050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1192 }" + }, + "fileCreated": "2025-06-21T09:31:00.3552572+00:00", + "fileLastModified": "2025-07-14T09:31:00.3552576+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3552553+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1193 + }, + "imageDetail": { + "width": 2136, + "height": 4029 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95455, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1193 }" + }, + "fileCreated": "2025-06-21T09:31:00.3590068+00:00", + "fileLastModified": "2025-07-14T09:31:00.3590072+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3590044+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1194 + }, + "imageDetail": { + "width": 7925, + "height": 5388 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81506, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1194 }" + }, + "fileCreated": "2025-06-21T09:31:00.3616475+00:00", + "fileLastModified": "2025-07-14T09:31:00.3616478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3616296+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1195 + }, + "imageDetail": { + "width": 6164, + "height": 7151 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 62523, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1195 }" + }, + "fileCreated": "2025-06-21T09:31:00.3640579+00:00", + "fileLastModified": "2025-07-14T09:31:00.3640582+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3640558+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1196 + }, + "imageDetail": { + "width": 7397, + "height": 3589 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1196 }" + }, + "fileCreated": "2025-06-21T09:31:00.3664298+00:00", + "fileLastModified": "2025-07-14T09:31:00.3664302+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3664303+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3664277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1197 + }, + "imageDetail": { + "width": 3208, + "height": 5043 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98041, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1197 }" + }, + "fileCreated": "2025-06-21T09:31:00.3688505+00:00", + "fileLastModified": "2025-07-14T09:31:00.3688509+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3688485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1198 + }, + "imageDetail": { + "width": 7987, + "height": 5666 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57995, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1198 }" + }, + "fileCreated": "2025-06-21T09:31:00.3711906+00:00", + "fileLastModified": "2025-07-14T09:31:00.371191+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3711886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1199 + }, + "imageDetail": { + "width": 9747, + "height": 9055 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76627, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1199 }" + }, + "fileCreated": "2025-06-21T09:31:00.3737665+00:00", + "fileLastModified": "2025-07-14T09:31:00.3737669+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3737646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1200 + }, + "imageDetail": { + "width": 7426, + "height": 5555 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51334, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1200 }" + }, + "fileCreated": "2025-06-21T09:31:00.3762999+00:00", + "fileLastModified": "2025-07-14T09:31:00.3763003+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3763004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3762975+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1201 + }, + "imageDetail": { + "width": 8656, + "height": 4321 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47160, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1201 }" + }, + "fileCreated": "2025-06-21T09:31:00.3785424+00:00", + "fileLastModified": "2025-07-14T09:31:00.3785427+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3785428+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3785405+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1202 + }, + "imageDetail": { + "width": 1301, + "height": 7138 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53338, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1202 }" + }, + "fileCreated": "2025-06-21T09:31:00.381288+00:00", + "fileLastModified": "2025-07-14T09:31:00.3812887+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3812889+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.381286+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1203 + }, + "imageDetail": { + "width": 8850, + "height": 4867 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 58600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1203 }" + }, + "fileCreated": "2025-06-21T09:31:00.3838152+00:00", + "fileLastModified": "2025-07-14T09:31:00.3838155+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3838157+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3838136+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1204 + }, + "imageDetail": { + "width": 9331, + "height": 6730 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26782, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1204 }" + }, + "fileCreated": "2025-06-21T09:31:00.387352+00:00", + "fileLastModified": "2025-07-14T09:31:00.3873527+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3873499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1205 + }, + "imageDetail": { + "width": 6102, + "height": 8417 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1205 }" + }, + "fileCreated": "2025-06-21T09:31:00.3898034+00:00", + "fileLastModified": "2025-07-14T09:31:00.3898037+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3898018+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1206 + }, + "imageDetail": { + "width": 1220, + "height": 8129 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1206 }" + }, + "fileCreated": "2025-06-21T09:31:00.3922744+00:00", + "fileLastModified": "2025-07-14T09:31:00.3922746+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3922748+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3922729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1207 + }, + "imageDetail": { + "width": 5026, + "height": 8231 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86877, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1207 }" + }, + "fileCreated": "2025-06-21T09:31:00.3946418+00:00", + "fileLastModified": "2025-07-14T09:31:00.394642+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3946422+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3946406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1208 + }, + "imageDetail": { + "width": 2213, + "height": 5405 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 52855, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1208 }" + }, + "fileCreated": "2025-06-21T09:31:00.3967591+00:00", + "fileLastModified": "2025-07-14T09:31:00.3967594+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.396758+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1209 + }, + "imageDetail": { + "width": 9441, + "height": 9144 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56179, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1209 }" + }, + "fileCreated": "2025-06-21T09:31:00.3992679+00:00", + "fileLastModified": "2025-07-14T09:31:00.3992682+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3992665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1210 + }, + "imageDetail": { + "width": 9784, + "height": 5686 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1210 }" + }, + "fileCreated": "2025-06-21T09:31:00.401938+00:00", + "fileLastModified": "2025-07-14T09:31:00.4019383+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4019386+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4019365+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1211 + }, + "imageDetail": { + "width": 4970, + "height": 4607 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84313, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1211 }" + }, + "fileCreated": "2025-06-21T09:31:00.4044598+00:00", + "fileLastModified": "2025-07-14T09:31:00.4044601+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.404458+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1212 + }, + "imageDetail": { + "width": 4124, + "height": 8844 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47444, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1212 }" + }, + "fileCreated": "2025-06-21T09:31:00.4067231+00:00", + "fileLastModified": "2025-07-14T09:31:00.4067233+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4067235+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4067219+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1213 + }, + "imageDetail": { + "width": 7823, + "height": 6230 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96541, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1213 }" + }, + "fileCreated": "2025-06-21T09:31:00.4092417+00:00", + "fileLastModified": "2025-07-14T09:31:00.4092421+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4092422+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4092402+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1214 + }, + "imageDetail": { + "width": 7141, + "height": 9503 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27065, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1214 }" + }, + "fileCreated": "2025-06-21T09:31:00.4117373+00:00", + "fileLastModified": "2025-07-14T09:31:00.4117376+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4117377+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4117355+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1215 + }, + "imageDetail": { + "width": 6925, + "height": 3136 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 72118, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1215 }" + }, + "fileCreated": "2025-06-21T09:31:00.414161+00:00", + "fileLastModified": "2025-07-14T09:31:00.4141614+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4141615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4141593+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1216 + }, + "imageDetail": { + "width": 2713, + "height": 6313 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28092, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1216 }" + }, + "fileCreated": "2025-06-21T09:31:00.4165699+00:00", + "fileLastModified": "2025-07-14T09:31:00.4165702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4165686+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1217 + }, + "imageDetail": { + "width": 3128, + "height": 7080 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88140, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1217 }" + }, + "fileCreated": "2025-06-21T09:31:00.4189252+00:00", + "fileLastModified": "2025-07-14T09:31:00.4189255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4189237+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1218 + }, + "imageDetail": { + "width": 1942, + "height": 4765 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 33290, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1218 }" + }, + "fileCreated": "2025-06-21T09:31:00.4214407+00:00", + "fileLastModified": "2025-07-14T09:31:00.4214409+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4214388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1219 + }, + "imageDetail": { + "width": 1431, + "height": 5904 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 69560, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1219 }" + }, + "fileCreated": "2025-06-21T09:31:00.4238521+00:00", + "fileLastModified": "2025-07-14T09:31:00.4238524+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4238526+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4238509+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1220 + }, + "imageDetail": { + "width": 9663, + "height": 5677 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45309, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1220 }" + }, + "fileCreated": "2025-06-21T09:31:00.4259553+00:00", + "fileLastModified": "2025-07-14T09:31:00.4259556+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4259557+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4259542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1221 + }, + "imageDetail": { + "width": 7130, + "height": 6861 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1221 }" + }, + "fileCreated": "2025-06-21T09:31:00.4283515+00:00", + "fileLastModified": "2025-07-14T09:31:00.4283517+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4283503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1222 + }, + "imageDetail": { + "width": 1173, + "height": 5031 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55128, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1222 }" + }, + "fileCreated": "2025-06-21T09:31:00.4310352+00:00", + "fileLastModified": "2025-07-14T09:31:00.4310355+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4310356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4310335+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1223 + }, + "imageDetail": { + "width": 9362, + "height": 9293 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84920, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1223 }" + }, + "fileCreated": "2025-06-21T09:31:00.4338826+00:00", + "fileLastModified": "2025-07-14T09:31:00.433883+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4338808+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1224 + }, + "imageDetail": { + "width": 4626, + "height": 9172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71821, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1224 }" + }, + "fileCreated": "2025-06-21T09:31:00.4365825+00:00", + "fileLastModified": "2025-07-14T09:31:00.4365828+00:00", + "fileLastViewed": "2025-07-14T09:31:00.436583+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.436581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1225 + }, + "imageDetail": { + "width": 1447, + "height": 5897 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 78038, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1225 }" + }, + "fileCreated": "2025-06-21T09:31:00.4391038+00:00", + "fileLastModified": "2025-07-14T09:31:00.4391042+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4391024+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1226 + }, + "imageDetail": { + "width": 483, + "height": 2338 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95371, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1226 }" + }, + "fileCreated": "2025-06-21T09:31:00.4416149+00:00", + "fileLastModified": "2025-07-14T09:31:00.4416151+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4416153+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4416134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1227 + }, + "imageDetail": { + "width": 2240, + "height": 4700 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73622, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1227 }" + }, + "fileCreated": "2025-06-21T09:31:00.4440254+00:00", + "fileLastModified": "2025-07-14T09:31:00.4440257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4440241+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1228 + }, + "imageDetail": { + "width": 5706, + "height": 6250 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1228 }" + }, + "fileCreated": "2025-06-21T09:31:00.4461965+00:00", + "fileLastModified": "2025-07-14T09:31:00.4461968+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4461969+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4461955+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1229 + }, + "imageDetail": { + "width": 4113, + "height": 4026 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77463, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1229 }" + }, + "fileCreated": "2025-06-21T09:31:00.4492007+00:00", + "fileLastModified": "2025-07-14T09:31:00.449201+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4491989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1230 + }, + "imageDetail": { + "width": 9312, + "height": 5591 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1230 }" + }, + "fileCreated": "2025-06-21T09:31:00.4523671+00:00", + "fileLastModified": "2025-07-14T09:31:00.4523674+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4523646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1231 + }, + "imageDetail": { + "width": 4021, + "height": 6914 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 48107, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1231 }" + }, + "fileCreated": "2025-06-21T09:31:00.4550677+00:00", + "fileLastModified": "2025-07-14T09:31:00.455068+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4550663+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1232 + }, + "imageDetail": { + "width": 3973, + "height": 8286 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87933, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1232 }" + }, + "fileCreated": "2025-06-21T09:31:00.4574349+00:00", + "fileLastModified": "2025-07-14T09:31:00.4574353+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4574339+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1233 + }, + "imageDetail": { + "width": 5761, + "height": 6881 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40242, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1233 }" + }, + "fileCreated": "2025-06-21T09:31:00.460026+00:00", + "fileLastModified": "2025-07-14T09:31:00.4600263+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4600246+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1234 + }, + "imageDetail": { + "width": 3891, + "height": 2281 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78869, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1234 }" + }, + "fileCreated": "2025-06-21T09:31:00.4625478+00:00", + "fileLastModified": "2025-07-14T09:31:00.4625481+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4625465+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1235 + }, + "imageDetail": { + "width": 7869, + "height": 6974 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43261, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1235 }" + }, + "fileCreated": "2025-06-21T09:31:00.4656233+00:00", + "fileLastModified": "2025-07-14T09:31:00.4656237+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4656238+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.465621+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1236 + }, + "imageDetail": { + "width": 7239, + "height": 8944 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29282, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1236 }" + }, + "fileCreated": "2025-06-21T09:31:00.4681146+00:00", + "fileLastModified": "2025-07-14T09:31:00.4681149+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.468113+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1237 + }, + "imageDetail": { + "width": 9347, + "height": 6805 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66539, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1237 }" + }, + "fileCreated": "2025-06-21T09:31:00.4706842+00:00", + "fileLastModified": "2025-07-14T09:31:00.4706845+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.470683+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1238 + }, + "imageDetail": { + "width": 7129, + "height": 2796 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58260, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1238 }" + }, + "fileCreated": "2025-06-21T09:31:00.4731341+00:00", + "fileLastModified": "2025-07-14T09:31:00.4731344+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4731326+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1239 + }, + "imageDetail": { + "width": 8319, + "height": 9474 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40021, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1239 }" + }, + "fileCreated": "2025-06-21T09:31:00.475619+00:00", + "fileLastModified": "2025-07-14T09:31:00.4756193+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4756194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4756173+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1240 + }, + "imageDetail": { + "width": 4144, + "height": 2485 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46068, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1240 }" + }, + "fileCreated": "2025-06-21T09:31:00.477878+00:00", + "fileLastModified": "2025-07-14T09:31:00.4778783+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4778785+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.477877+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1241 + }, + "imageDetail": { + "width": 3687, + "height": 4638 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77021, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1241 }" + }, + "fileCreated": "2025-06-21T09:31:00.4808133+00:00", + "fileLastModified": "2025-07-14T09:31:00.4808137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4808138+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4808116+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1242 + }, + "imageDetail": { + "width": 9321, + "height": 3663 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74128, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1242 }" + }, + "fileCreated": "2025-06-21T09:31:00.4837719+00:00", + "fileLastModified": "2025-07-14T09:31:00.4837722+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4837724+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4837704+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1243 + }, + "imageDetail": { + "width": 2993, + "height": 6225 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65370, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1243 }" + }, + "fileCreated": "2025-06-21T09:31:00.4863009+00:00", + "fileLastModified": "2025-07-14T09:31:00.4863012+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4862998+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1244 + }, + "imageDetail": { + "width": 9465, + "height": 8374 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73535, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1244 }" + }, + "fileCreated": "2025-06-21T09:31:00.4887704+00:00", + "fileLastModified": "2025-07-14T09:31:00.4887706+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4887692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1245 + }, + "imageDetail": { + "width": 7127, + "height": 5973 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55942, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1245 }" + }, + "fileCreated": "2025-06-21T09:31:00.4913394+00:00", + "fileLastModified": "2025-07-14T09:31:00.4913397+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4913381+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1246 + }, + "imageDetail": { + "width": 7279, + "height": 7706 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1246 }" + }, + "fileCreated": "2025-06-21T09:31:00.4939858+00:00", + "fileLastModified": "2025-07-14T09:31:00.4939861+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4939862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4939844+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1247 + }, + "imageDetail": { + "width": 5064, + "height": 9770 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 27702, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1247 }" + }, + "fileCreated": "2025-06-21T09:31:00.4969608+00:00", + "fileLastModified": "2025-07-14T09:31:00.4969612+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4969614+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4969592+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1248 + }, + "imageDetail": { + "width": 7599, + "height": 9311 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46704, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1248 }" + }, + "fileCreated": "2025-06-21T09:31:00.4997544+00:00", + "fileLastModified": "2025-07-14T09:31:00.4997548+00:00", + "fileLastViewed": "2025-07-14T09:31:00.499755+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4997519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1249 + }, + "imageDetail": { + "width": 7109, + "height": 6831 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77070, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1249 }" + }, + "fileCreated": "2025-06-21T09:31:00.5026299+00:00", + "fileLastModified": "2025-07-14T09:31:00.5026303+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5026305+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5026278+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1250 + }, + "imageDetail": { + "width": 1763, + "height": 7165 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74061, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1250 }" + }, + "fileCreated": "2025-06-21T09:31:00.5053469+00:00", + "fileLastModified": "2025-07-14T09:31:00.5053473+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5053449+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1251 + }, + "imageDetail": { + "width": 3361, + "height": 9725 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33220, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1251 }" + }, + "fileCreated": "2025-06-21T09:31:00.5082181+00:00", + "fileLastModified": "2025-07-14T09:31:00.5082185+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5082161+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1252 + }, + "imageDetail": { + "width": 2890, + "height": 5202 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 33737, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1252 }" + }, + "fileCreated": "2025-06-21T09:31:00.5110208+00:00", + "fileLastModified": "2025-07-14T09:31:00.5110211+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5110213+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.511019+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1253 + }, + "imageDetail": { + "width": 1218, + "height": 2001 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 95338, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1253 }" + }, + "fileCreated": "2025-06-21T09:31:00.5142178+00:00", + "fileLastModified": "2025-07-14T09:31:00.5142183+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5142185+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5142156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1254 + }, + "imageDetail": { + "width": 104, + "height": 7802 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79321, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1254 }" + }, + "fileCreated": "2025-06-21T09:31:00.5168832+00:00", + "fileLastModified": "2025-07-14T09:31:00.5168835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.516881+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1255 + }, + "imageDetail": { + "width": 9294, + "height": 4984 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29298, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1255 }" + }, + "fileCreated": "2025-06-21T09:31:00.5198008+00:00", + "fileLastModified": "2025-07-14T09:31:00.5198011+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5198012+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5197983+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1256 + }, + "imageDetail": { + "width": 690, + "height": 4465 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91666, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1256 }" + }, + "fileCreated": "2025-06-21T09:31:00.5227508+00:00", + "fileLastModified": "2025-07-14T09:31:00.5227512+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5227516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5227489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1257 + }, + "imageDetail": { + "width": 4808, + "height": 6935 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1257 }" + }, + "fileCreated": "2025-06-21T09:31:00.5261084+00:00", + "fileLastModified": "2025-07-14T09:31:00.5261087+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5261054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1258 + }, + "imageDetail": { + "width": 5186, + "height": 2007 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81172, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1258 }" + }, + "fileCreated": "2025-06-21T09:31:00.5295831+00:00", + "fileLastModified": "2025-07-14T09:31:00.5295835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5295804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1259 + }, + "imageDetail": { + "width": 7432, + "height": 4574 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55334, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1259 }" + }, + "fileCreated": "2025-06-21T09:31:00.5329638+00:00", + "fileLastModified": "2025-07-14T09:31:00.5329642+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5329617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1260 + }, + "imageDetail": { + "width": 8672, + "height": 8860 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21536, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1260 }" + }, + "fileCreated": "2025-06-21T09:31:00.5357894+00:00", + "fileLastModified": "2025-07-14T09:31:00.5357902+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5357875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1261 + }, + "imageDetail": { + "width": 4155, + "height": 9689 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40134, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1261 }" + }, + "fileCreated": "2025-06-21T09:31:00.538682+00:00", + "fileLastModified": "2025-07-14T09:31:00.5386823+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5386801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1262 + }, + "imageDetail": { + "width": 699, + "height": 7925 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1262 }" + }, + "fileCreated": "2025-06-21T09:31:00.5413561+00:00", + "fileLastModified": "2025-07-14T09:31:00.5413564+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5413566+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5413547+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1263 + }, + "imageDetail": { + "width": 4114, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1263 }" + }, + "fileCreated": "2025-06-21T09:31:00.5452862+00:00", + "fileLastModified": "2025-07-14T09:31:00.5452866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5452836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1264 + }, + "imageDetail": { + "width": 8423, + "height": 4794 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1264 }" + }, + "fileCreated": "2025-06-21T09:31:00.5487745+00:00", + "fileLastModified": "2025-07-14T09:31:00.5487749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5487719+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1265 + }, + "imageDetail": { + "width": 2798, + "height": 3918 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87706, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1265 }" + }, + "fileCreated": "2025-06-21T09:31:00.5519965+00:00", + "fileLastModified": "2025-07-14T09:31:00.5519969+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5519944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1266 + }, + "imageDetail": { + "width": 5270, + "height": 8424 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1266 }" + }, + "fileCreated": "2025-06-21T09:31:00.5548568+00:00", + "fileLastModified": "2025-07-14T09:31:00.5548571+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5548574+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5548552+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1267 + }, + "imageDetail": { + "width": 4260, + "height": 8796 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92511, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1267 }" + }, + "fileCreated": "2025-06-21T09:31:00.5582336+00:00", + "fileLastModified": "2025-07-14T09:31:00.558234+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5582343+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.558203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1268 + }, + "imageDetail": { + "width": 906, + "height": 9369 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48413, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1268 }" + }, + "fileCreated": "2025-06-21T09:31:00.5614614+00:00", + "fileLastModified": "2025-07-14T09:31:00.5614618+00:00", + "fileLastViewed": "2025-07-14T09:31:00.561462+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.561459+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1269 + }, + "imageDetail": { + "width": 995, + "height": 8999 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1269 }" + }, + "fileCreated": "2025-06-21T09:31:00.5645581+00:00", + "fileLastModified": "2025-07-14T09:31:00.5645585+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5645588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.564556+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1270 + }, + "imageDetail": { + "width": 2057, + "height": 3023 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 62475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1270 }" + }, + "fileCreated": "2025-06-21T09:31:00.5672507+00:00", + "fileLastModified": "2025-07-14T09:31:00.5672509+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5672511+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.567249+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1271 + }, + "imageDetail": { + "width": 8881, + "height": 5086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1271 }" + }, + "fileCreated": "2025-06-21T09:31:00.5702412+00:00", + "fileLastModified": "2025-07-14T09:31:00.5702416+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.570239+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1272 + }, + "imageDetail": { + "width": 299, + "height": 7490 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1272 }" + }, + "fileCreated": "2025-06-21T09:31:00.5730917+00:00", + "fileLastModified": "2025-07-14T09:31:00.5730921+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5730898+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1273 + }, + "imageDetail": { + "width": 9865, + "height": 2592 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96323, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1273 }" + }, + "fileCreated": "2025-06-21T09:31:00.576561+00:00", + "fileLastModified": "2025-07-14T09:31:00.5765615+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5765617+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5765587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1274 + }, + "imageDetail": { + "width": 259, + "height": 4701 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25851, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1274 }" + }, + "fileCreated": "2025-06-21T09:31:00.5804079+00:00", + "fileLastModified": "2025-07-14T09:31:00.5804082+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5804055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1275 + }, + "imageDetail": { + "width": 3107, + "height": 5280 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1275 }" + }, + "fileCreated": "2025-06-21T09:31:00.5843961+00:00", + "fileLastModified": "2025-07-14T09:31:00.5843966+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5843969+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5843941+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1276 + }, + "imageDetail": { + "width": 3593, + "height": 6356 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35962, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1276 }" + }, + "fileCreated": "2025-06-21T09:31:00.5883606+00:00", + "fileLastModified": "2025-07-14T09:31:00.588361+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.588358+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1277 + }, + "imageDetail": { + "width": 3263, + "height": 7008 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73522, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1277 }" + }, + "fileCreated": "2025-06-21T09:31:00.5927028+00:00", + "fileLastModified": "2025-07-14T09:31:00.5927035+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5927007+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1278 + }, + "imageDetail": { + "width": 4538, + "height": 7808 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 87963, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1278 }" + }, + "fileCreated": "2025-06-21T09:31:00.5961446+00:00", + "fileLastModified": "2025-07-14T09:31:00.596145+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5961426+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1279 + }, + "imageDetail": { + "width": 1389, + "height": 9509 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95722, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1279 }" + }, + "fileCreated": "2025-06-21T09:31:00.5996408+00:00", + "fileLastModified": "2025-07-14T09:31:00.5996412+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5996414+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5996389+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1280 + }, + "imageDetail": { + "width": 8395, + "height": 9408 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51101, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1280 }" + }, + "fileCreated": "2025-06-21T09:31:00.6033373+00:00", + "fileLastModified": "2025-07-14T09:31:00.6033377+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6033351+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1281 + }, + "imageDetail": { + "width": 5497, + "height": 3204 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 78261, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1281 }" + }, + "fileCreated": "2025-06-21T09:31:00.6080225+00:00", + "fileLastModified": "2025-07-14T09:31:00.6080229+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6080202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1282 + }, + "imageDetail": { + "width": 5036, + "height": 9084 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1282 }" + }, + "fileCreated": "2025-06-21T09:31:00.6115827+00:00", + "fileLastModified": "2025-07-14T09:31:00.6115834+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6115836+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6115806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1283 + }, + "imageDetail": { + "width": 8655, + "height": 5536 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58704, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1283 }" + }, + "fileCreated": "2025-06-21T09:31:00.6151167+00:00", + "fileLastModified": "2025-07-14T09:31:00.6151171+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6151173+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6151145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1284 + }, + "imageDetail": { + "width": 7165, + "height": 9291 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34225, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1284 }" + }, + "fileCreated": "2025-06-21T09:31:00.618595+00:00", + "fileLastModified": "2025-07-14T09:31:00.6185955+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6185932+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1285 + }, + "imageDetail": { + "width": 9980, + "height": 8531 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54173, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1285 }" + }, + "fileCreated": "2025-06-21T09:31:00.6226747+00:00", + "fileLastModified": "2025-07-14T09:31:00.6226751+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6226727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1286 + }, + "imageDetail": { + "width": 666, + "height": 7929 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99223, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1286 }" + }, + "fileCreated": "2025-06-21T09:31:00.6264606+00:00", + "fileLastModified": "2025-07-14T09:31:00.626461+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6264612+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6264582+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1287 + }, + "imageDetail": { + "width": 511, + "height": 8313 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62004, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1287 }" + }, + "fileCreated": "2025-06-21T09:31:00.6299448+00:00", + "fileLastModified": "2025-07-14T09:31:00.6299452+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6299454+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.629942+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1288 + }, + "imageDetail": { + "width": 8079, + "height": 2348 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22839, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1288 }" + }, + "fileCreated": "2025-06-21T09:31:00.633376+00:00", + "fileLastModified": "2025-07-14T09:31:00.6333763+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6333742+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1289 + }, + "imageDetail": { + "width": 9091, + "height": 2322 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25283, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1289 }" + }, + "fileCreated": "2025-06-21T09:31:00.6400075+00:00", + "fileLastModified": "2025-07-14T09:31:00.6400079+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6400055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1290 + }, + "imageDetail": { + "width": 6412, + "height": 2581 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60752, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1290 }" + }, + "fileCreated": "2025-06-21T09:31:00.6478951+00:00", + "fileLastModified": "2025-07-14T09:31:00.6478956+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6478958+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6478909+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1291 + }, + "imageDetail": { + "width": 6363, + "height": 9690 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96813, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1291 }" + }, + "fileCreated": "2025-06-21T09:31:00.6550236+00:00", + "fileLastModified": "2025-07-14T09:31:00.655024+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6550246+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6550215+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1292 + }, + "imageDetail": { + "width": 2549, + "height": 4670 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1292 }" + }, + "fileCreated": "2025-06-21T09:31:00.6614244+00:00", + "fileLastModified": "2025-07-14T09:31:00.6614248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6614201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1293 + }, + "imageDetail": { + "width": 8910, + "height": 8894 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75377, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1293 }" + }, + "fileCreated": "2025-06-21T09:31:00.6685559+00:00", + "fileLastModified": "2025-07-14T09:31:00.6685563+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6685569+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6685259+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1294 + }, + "imageDetail": { + "width": 1233, + "height": 8680 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 51636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1294 }" + }, + "fileCreated": "2025-06-21T09:31:00.6750232+00:00", + "fileLastModified": "2025-07-14T09:31:00.6750237+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6750238+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6750208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1295 + }, + "imageDetail": { + "width": 2026, + "height": 9374 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46421, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1295 }" + }, + "fileCreated": "2025-06-21T09:31:00.6811408+00:00", + "fileLastModified": "2025-07-14T09:31:00.6811412+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6811378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1296 + }, + "imageDetail": { + "width": 5759, + "height": 3635 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1296 }" + }, + "fileCreated": "2025-06-21T09:31:00.687395+00:00", + "fileLastModified": "2025-07-14T09:31:00.6873954+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6873956+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6873927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1297 + }, + "imageDetail": { + "width": 2706, + "height": 4032 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26338, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1297 }" + }, + "fileCreated": "2025-06-21T09:31:00.6937709+00:00", + "fileLastModified": "2025-07-14T09:31:00.6937713+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6937687+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1298 + }, + "imageDetail": { + "width": 3045, + "height": 7453 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62091, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1298 }" + }, + "fileCreated": "2025-06-21T09:31:00.7012058+00:00", + "fileLastModified": "2025-07-14T09:31:00.7012062+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7012065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7012028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1299 + }, + "imageDetail": { + "width": 6104, + "height": 6308 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72689, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1299 }" + }, + "fileCreated": "2025-06-21T09:31:00.7079681+00:00", + "fileLastModified": "2025-07-14T09:31:00.7079686+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7079688+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7079656+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1300 + }, + "imageDetail": { + "width": 7002, + "height": 8249 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46246, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1300 }" + }, + "fileCreated": "2025-06-21T09:31:00.7149977+00:00", + "fileLastModified": "2025-07-14T09:31:00.7149987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7149947+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1301 + }, + "imageDetail": { + "width": 9165, + "height": 2696 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56152, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1301 }" + }, + "fileCreated": "2025-06-21T09:31:00.7211641+00:00", + "fileLastModified": "2025-07-14T09:31:00.7211645+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7211647+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7211618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1302 + }, + "imageDetail": { + "width": 769, + "height": 3719 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1302 }" + }, + "fileCreated": "2025-06-21T09:31:00.7278346+00:00", + "fileLastModified": "2025-07-14T09:31:00.727835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7278317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1303 + }, + "imageDetail": { + "width": 4709, + "height": 2425 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87685, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1303 }" + }, + "fileCreated": "2025-06-21T09:31:00.734071+00:00", + "fileLastModified": "2025-07-14T09:31:00.7340715+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7340719+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7340674+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1304 + }, + "imageDetail": { + "width": 6412, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1304 }" + }, + "fileCreated": "2025-06-21T09:31:00.7404692+00:00", + "fileLastModified": "2025-07-14T09:31:00.7404697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7404667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1305 + }, + "imageDetail": { + "width": 3268, + "height": 2486 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43898, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1305 }" + }, + "fileCreated": "2025-06-21T09:31:00.7477196+00:00", + "fileLastModified": "2025-07-14T09:31:00.7477201+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7477203+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7477161+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1306 + }, + "imageDetail": { + "width": 9254, + "height": 3718 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83847, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1306 }" + }, + "fileCreated": "2025-06-21T09:31:00.7540693+00:00", + "fileLastModified": "2025-07-14T09:31:00.7540703+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7540706+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7540667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1307 + }, + "imageDetail": { + "width": 6967, + "height": 4715 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96456, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1307 }" + }, + "fileCreated": "2025-06-21T09:31:00.7609063+00:00", + "fileLastModified": "2025-07-14T09:31:00.7609071+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7609078+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7608979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1308 + }, + "imageDetail": { + "width": 7451, + "height": 5133 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98330, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1308 }" + }, + "fileCreated": "2025-06-21T09:31:00.7667748+00:00", + "fileLastModified": "2025-07-14T09:31:00.7667753+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7667755+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7667728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1309 + }, + "imageDetail": { + "width": 2196, + "height": 4108 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 59426, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1309 }" + }, + "fileCreated": "2025-06-21T09:31:00.7728907+00:00", + "fileLastModified": "2025-07-14T09:31:00.7728912+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7728915+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7728888+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1310 + }, + "imageDetail": { + "width": 3591, + "height": 9617 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 98068, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1310 }" + }, + "fileCreated": "2025-06-21T09:31:00.779127+00:00", + "fileLastModified": "2025-07-14T09:31:00.7791276+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7791278+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7791237+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1311 + }, + "imageDetail": { + "width": 7020, + "height": 7478 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37194, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1311 }" + }, + "fileCreated": "2025-06-21T09:31:00.7850913+00:00", + "fileLastModified": "2025-07-14T09:31:00.7850917+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7850897+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1312 + }, + "imageDetail": { + "width": 6851, + "height": 7676 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98926, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1312 }" + }, + "fileCreated": "2025-06-21T09:31:00.7914644+00:00", + "fileLastModified": "2025-07-14T09:31:00.7914651+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7914618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1313 + }, + "imageDetail": { + "width": 8251, + "height": 8799 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58255, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1313 }" + }, + "fileCreated": "2025-06-21T09:31:00.7974867+00:00", + "fileLastModified": "2025-07-14T09:31:00.797487+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7974872+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7974851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1314 + }, + "imageDetail": { + "width": 7793, + "height": 9747 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1314 }" + }, + "fileCreated": "2025-06-21T09:31:00.8036916+00:00", + "fileLastModified": "2025-07-14T09:31:00.8036928+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8036931+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.803688+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1315 + }, + "imageDetail": { + "width": 7250, + "height": 4243 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29999, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1315 }" + }, + "fileCreated": "2025-06-21T09:31:00.8106182+00:00", + "fileLastModified": "2025-07-14T09:31:00.8106189+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8106153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1316 + }, + "imageDetail": { + "width": 2480, + "height": 4315 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96249, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1316 }" + }, + "fileCreated": "2025-06-21T09:31:00.8167433+00:00", + "fileLastModified": "2025-07-14T09:31:00.8167438+00:00", + "fileLastViewed": "2025-07-14T09:31:00.816744+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8167412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1317 + }, + "imageDetail": { + "width": 691, + "height": 4416 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1317 }" + }, + "fileCreated": "2025-06-21T09:31:00.8229027+00:00", + "fileLastModified": "2025-07-14T09:31:00.8229034+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8229036+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8229003+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1318 + }, + "imageDetail": { + "width": 4247, + "height": 2519 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22761, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1318 }" + }, + "fileCreated": "2025-06-21T09:31:00.8290142+00:00", + "fileLastModified": "2025-07-14T09:31:00.8290147+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8290149+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8290125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1319 + }, + "imageDetail": { + "width": 5133, + "height": 6329 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63709, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1319 }" + }, + "fileCreated": "2025-06-21T09:31:00.8359956+00:00", + "fileLastModified": "2025-07-14T09:31:00.8359963+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8359931+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1320 + }, + "imageDetail": { + "width": 1858, + "height": 4057 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1320 }" + }, + "fileCreated": "2025-06-21T09:31:00.8423398+00:00", + "fileLastModified": "2025-07-14T09:31:00.8423403+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8423405+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8423374+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1321 + }, + "imageDetail": { + "width": 351, + "height": 6300 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88438, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1321 }" + }, + "fileCreated": "2025-06-21T09:31:00.8487068+00:00", + "fileLastModified": "2025-07-14T09:31:00.8487074+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8487048+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1322 + }, + "imageDetail": { + "width": 5249, + "height": 4794 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28325, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1322 }" + }, + "fileCreated": "2025-06-21T09:31:00.8555772+00:00", + "fileLastModified": "2025-07-14T09:31:00.8555779+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8555745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1323 + }, + "imageDetail": { + "width": 4488, + "height": 8607 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21041, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1323 }" + }, + "fileCreated": "2025-06-21T09:31:00.8618194+00:00", + "fileLastModified": "2025-07-14T09:31:00.8618199+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8618201+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8618175+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1324 + }, + "imageDetail": { + "width": 2233, + "height": 9810 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91453, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1324 }" + }, + "fileCreated": "2025-06-21T09:31:00.8685746+00:00", + "fileLastModified": "2025-07-14T09:31:00.8685759+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8685763+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8685703+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1325 + }, + "imageDetail": { + "width": 3160, + "height": 3594 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24356, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1325 }" + }, + "fileCreated": "2025-06-21T09:31:00.8749886+00:00", + "fileLastModified": "2025-07-14T09:31:00.874989+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.874986+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1326 + }, + "imageDetail": { + "width": 8306, + "height": 8748 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79542, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1326 }" + }, + "fileCreated": "2025-06-21T09:31:00.8817687+00:00", + "fileLastModified": "2025-07-14T09:31:00.8817694+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8817697+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8817654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1327 + }, + "imageDetail": { + "width": 6258, + "height": 3391 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45601, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1327 }" + }, + "fileCreated": "2025-06-21T09:31:00.8879214+00:00", + "fileLastModified": "2025-07-14T09:31:00.8879217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8879196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1328 + }, + "imageDetail": { + "width": 1994, + "height": 3513 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47193, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1328 }" + }, + "fileCreated": "2025-06-21T09:31:00.8939891+00:00", + "fileLastModified": "2025-07-14T09:31:00.8939894+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8939895+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8939874+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1329 + }, + "imageDetail": { + "width": 5911, + "height": 2564 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75547, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1329 }" + }, + "fileCreated": "2025-06-21T09:31:00.9003141+00:00", + "fileLastModified": "2025-07-14T09:31:00.9003144+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9003145+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9003122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1330 + }, + "imageDetail": { + "width": 5804, + "height": 3620 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54621, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1330 }" + }, + "fileCreated": "2025-06-21T09:31:00.9066579+00:00", + "fileLastModified": "2025-07-14T09:31:00.9066583+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9066585+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9066545+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1331 + }, + "imageDetail": { + "width": 5390, + "height": 9191 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42791, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1331 }" + }, + "fileCreated": "2025-06-21T09:31:00.9131531+00:00", + "fileLastModified": "2025-07-14T09:31:00.9131536+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9131491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1332 + }, + "imageDetail": { + "width": 7819, + "height": 3923 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1332 }" + }, + "fileCreated": "2025-06-21T09:31:00.9196668+00:00", + "fileLastModified": "2025-07-14T09:31:00.9196673+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9196674+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9196647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1333 + }, + "imageDetail": { + "width": 3876, + "height": 6086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57875, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1333 }" + }, + "fileCreated": "2025-06-21T09:31:00.9265241+00:00", + "fileLastModified": "2025-07-14T09:31:00.9265245+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9265214+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1334 + }, + "imageDetail": { + "width": 214, + "height": 6336 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53805, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1334 }" + }, + "fileCreated": "2025-06-21T09:31:00.9329865+00:00", + "fileLastModified": "2025-07-14T09:31:00.932987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9329835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1335 + }, + "imageDetail": { + "width": 2234, + "height": 6784 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1335 }" + }, + "fileCreated": "2025-06-21T09:31:00.9388692+00:00", + "fileLastModified": "2025-07-14T09:31:00.9388696+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9388673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1336 + }, + "imageDetail": { + "width": 3816, + "height": 2171 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98724, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1336 }" + }, + "fileCreated": "2025-06-21T09:31:00.9451253+00:00", + "fileLastModified": "2025-07-14T09:31:00.9451257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9451227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1337 + }, + "imageDetail": { + "width": 2687, + "height": 2348 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84499, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1337 }" + }, + "fileCreated": "2025-06-21T09:31:00.9511663+00:00", + "fileLastModified": "2025-07-14T09:31:00.9511672+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9511647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1338 + }, + "imageDetail": { + "width": 8552, + "height": 6327 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90061, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1338 }" + }, + "fileCreated": "2025-06-21T09:31:00.9571792+00:00", + "fileLastModified": "2025-07-14T09:31:00.9571795+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9571797+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9571777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1339 + }, + "imageDetail": { + "width": 5036, + "height": 5459 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95028, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1339 }" + }, + "fileCreated": "2025-06-21T09:31:00.9650394+00:00", + "fileLastModified": "2025-07-14T09:31:00.9650399+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9650403+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9650361+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1340 + }, + "imageDetail": { + "width": 8330, + "height": 4461 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27155, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1340 }" + }, + "fileCreated": "2025-06-21T09:31:00.9713152+00:00", + "fileLastModified": "2025-07-14T09:31:00.9713155+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9713156+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9713136+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1341 + }, + "imageDetail": { + "width": 278, + "height": 3029 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1341 }" + }, + "fileCreated": "2025-06-21T09:31:00.9778808+00:00", + "fileLastModified": "2025-07-14T09:31:00.9778811+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9778813+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9778783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1342 + }, + "imageDetail": { + "width": 306, + "height": 7553 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94171, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1342 }" + }, + "fileCreated": "2025-06-21T09:31:00.9843777+00:00", + "fileLastModified": "2025-07-14T09:31:00.9843782+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9843784+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9843749+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1343 + }, + "imageDetail": { + "width": 1665, + "height": 4603 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73073, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1343 }" + }, + "fileCreated": "2025-06-21T09:31:00.9909537+00:00", + "fileLastModified": "2025-07-14T09:31:00.9909542+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9909512+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1344 + }, + "imageDetail": { + "width": 2750, + "height": 2934 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96007, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1344 }" + }, + "fileCreated": "2025-06-21T09:31:00.9976808+00:00", + "fileLastModified": "2025-07-14T09:31:00.9976812+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9976815+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9976781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1345 + }, + "imageDetail": { + "width": 310, + "height": 5970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1345 }" + }, + "fileCreated": "2025-06-21T09:31:01.0039176+00:00", + "fileLastModified": "2025-07-14T09:31:01.0039178+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0039158+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1346 + }, + "imageDetail": { + "width": 5714, + "height": 2047 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87624, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1346 }" + }, + "fileCreated": "2025-06-21T09:31:01.0109863+00:00", + "fileLastModified": "2025-07-14T09:31:01.0109866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0109838+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1347 + }, + "imageDetail": { + "width": 7054, + "height": 3176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38385, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1347 }" + }, + "fileCreated": "2025-06-21T09:31:01.017382+00:00", + "fileLastModified": "2025-07-14T09:31:01.0173822+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0173823+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0173804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1348 + }, + "imageDetail": { + "width": 8925, + "height": 9427 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1348 }" + }, + "fileCreated": "2025-06-21T09:31:01.0240124+00:00", + "fileLastModified": "2025-07-14T09:31:01.0240127+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0240103+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1349 + }, + "imageDetail": { + "width": 7889, + "height": 7067 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64096, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1349 }" + }, + "fileCreated": "2025-06-21T09:31:01.0303057+00:00", + "fileLastModified": "2025-07-14T09:31:01.0303059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0303043+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1350 + }, + "imageDetail": { + "width": 4007, + "height": 4549 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 44385, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1350 }" + }, + "fileCreated": "2025-06-21T09:31:01.0367036+00:00", + "fileLastModified": "2025-07-14T09:31:01.036704+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0367041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0366856+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1351 + }, + "imageDetail": { + "width": 4688, + "height": 5935 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70315, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1351 }" + }, + "fileCreated": "2025-06-21T09:31:01.0430525+00:00", + "fileLastModified": "2025-07-14T09:31:01.0430527+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0430529+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0430506+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1352 + }, + "imageDetail": { + "width": 8664, + "height": 9418 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67288, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1352 }" + }, + "fileCreated": "2025-06-21T09:31:01.0493824+00:00", + "fileLastModified": "2025-07-14T09:31:01.0493827+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0493807+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1353 + }, + "imageDetail": { + "width": 230, + "height": 9971 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94684, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1353 }" + }, + "fileCreated": "2025-06-21T09:31:01.0564162+00:00", + "fileLastModified": "2025-07-14T09:31:01.0564165+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0564167+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0564141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1354 + }, + "imageDetail": { + "width": 1752, + "height": 8268 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97445, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1354 }" + }, + "fileCreated": "2025-06-21T09:31:01.0629936+00:00", + "fileLastModified": "2025-07-14T09:31:01.0629939+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0629763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1355 + }, + "imageDetail": { + "width": 9309, + "height": 3003 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1355 }" + }, + "fileCreated": "2025-06-21T09:31:01.0699866+00:00", + "fileLastModified": "2025-07-14T09:31:01.069987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0699835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1356 + }, + "imageDetail": { + "width": 8298, + "height": 5686 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50856, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1356 }" + }, + "fileCreated": "2025-06-21T09:31:01.0763355+00:00", + "fileLastModified": "2025-07-14T09:31:01.0763358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0763338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1357 + }, + "imageDetail": { + "width": 1647, + "height": 7029 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73166, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1357 }" + }, + "fileCreated": "2025-06-21T09:31:01.0827191+00:00", + "fileLastModified": "2025-07-14T09:31:01.0827194+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0827175+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1358 + }, + "imageDetail": { + "width": 7427, + "height": 7790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 79199, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1358 }" + }, + "fileCreated": "2025-06-21T09:31:01.0895562+00:00", + "fileLastModified": "2025-07-14T09:31:01.0895565+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0895566+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0895544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1359 + }, + "imageDetail": { + "width": 4804, + "height": 3118 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 21039, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1359 }" + }, + "fileCreated": "2025-06-21T09:31:01.095941+00:00", + "fileLastModified": "2025-07-14T09:31:01.0959413+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0959392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1360 + }, + "imageDetail": { + "width": 7211, + "height": 8055 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1360 }" + }, + "fileCreated": "2025-06-21T09:31:01.1055431+00:00", + "fileLastModified": "2025-07-14T09:31:01.1055438+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1055445+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1055392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1361 + }, + "imageDetail": { + "width": 1159, + "height": 4348 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95530, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1361 }" + }, + "fileCreated": "2025-06-21T09:31:01.1172077+00:00", + "fileLastModified": "2025-07-14T09:31:01.1172089+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1172094+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1172039+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1362 + }, + "imageDetail": { + "width": 4596, + "height": 4290 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40918, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1362 }" + }, + "fileCreated": "2025-06-21T09:31:01.1273965+00:00", + "fileLastModified": "2025-07-14T09:31:01.1273972+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1273978+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1273926+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1363 + }, + "imageDetail": { + "width": 1241, + "height": 6011 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82293, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1363 }" + }, + "fileCreated": "2025-06-21T09:31:01.1376995+00:00", + "fileLastModified": "2025-07-14T09:31:01.1377001+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1377006+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.137689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1364 + }, + "imageDetail": { + "width": 8856, + "height": 8165 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89448, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1364 }" + }, + "fileCreated": "2025-06-21T09:31:01.1451671+00:00", + "fileLastModified": "2025-07-14T09:31:01.1451677+00:00", + "fileLastViewed": "2025-07-14T09:31:01.145168+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1451644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1365 + }, + "imageDetail": { + "width": 9097, + "height": 4790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 52508, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1365 }" + }, + "fileCreated": "2025-06-21T09:31:01.1523373+00:00", + "fileLastModified": "2025-07-14T09:31:01.1523379+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1523386+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1523349+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1366 + }, + "imageDetail": { + "width": 374, + "height": 8477 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1366 }" + }, + "fileCreated": "2025-06-21T09:31:01.1591606+00:00", + "fileLastModified": "2025-07-14T09:31:01.1591612+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1591615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1591579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1367 + }, + "imageDetail": { + "width": 3476, + "height": 6366 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55286, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1367 }" + }, + "fileCreated": "2025-06-21T09:31:01.1667656+00:00", + "fileLastModified": "2025-07-14T09:31:01.1667661+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1667633+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1368 + }, + "imageDetail": { + "width": 7652, + "height": 7627 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 42783, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1368 }" + }, + "fileCreated": "2025-06-21T09:31:01.1740262+00:00", + "fileLastModified": "2025-07-14T09:31:01.1740269+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1740272+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1740234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1369 + }, + "imageDetail": { + "width": 5844, + "height": 5573 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92637, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1369 }" + }, + "fileCreated": "2025-06-21T09:31:01.1811755+00:00", + "fileLastModified": "2025-07-14T09:31:01.1811762+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1811727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1370 + }, + "imageDetail": { + "width": 7728, + "height": 3847 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 52263, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1370 }" + }, + "fileCreated": "2025-06-21T09:31:01.1885064+00:00", + "fileLastModified": "2025-07-14T09:31:01.188507+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1884811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1371 + }, + "imageDetail": { + "width": 7399, + "height": 9457 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94368, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1371 }" + }, + "fileCreated": "2025-06-21T09:31:01.1963135+00:00", + "fileLastModified": "2025-07-14T09:31:01.1963141+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1963144+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1963105+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1372 + }, + "imageDetail": { + "width": 9766, + "height": 2226 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34598, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1372 }" + }, + "fileCreated": "2025-06-21T09:31:01.2037873+00:00", + "fileLastModified": "2025-07-14T09:31:01.203788+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2037884+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2037842+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1373 + }, + "imageDetail": { + "width": 4317, + "height": 5080 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41523, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1373 }" + }, + "fileCreated": "2025-06-21T09:31:01.2111224+00:00", + "fileLastModified": "2025-07-14T09:31:01.211123+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2111236+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2111199+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1374 + }, + "imageDetail": { + "width": 1535, + "height": 8412 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55529, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1374 }" + }, + "fileCreated": "2025-06-21T09:31:01.2183841+00:00", + "fileLastModified": "2025-07-14T09:31:01.2183847+00:00", + "fileLastViewed": "2025-07-14T09:31:01.218385+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2183814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1375 + }, + "imageDetail": { + "width": 7230, + "height": 8426 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 92592, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1375 }" + }, + "fileCreated": "2025-06-21T09:31:01.2258464+00:00", + "fileLastModified": "2025-07-14T09:31:01.2258471+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2258437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1376 + }, + "imageDetail": { + "width": 170, + "height": 6668 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85022, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1376 }" + }, + "fileCreated": "2025-06-21T09:31:01.2330868+00:00", + "fileLastModified": "2025-07-14T09:31:01.2330874+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.233084+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1377 + }, + "imageDetail": { + "width": 3326, + "height": 9306 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78182, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1377 }" + }, + "fileCreated": "2025-06-21T09:31:01.2407248+00:00", + "fileLastModified": "2025-07-14T09:31:01.2407257+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2407262+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2405979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1378 + }, + "imageDetail": { + "width": 6414, + "height": 4600 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24232, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1378 }" + }, + "fileCreated": "2025-06-21T09:31:01.2489588+00:00", + "fileLastModified": "2025-07-14T09:31:01.2489595+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2489599+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2489548+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1379 + }, + "imageDetail": { + "width": 1977, + "height": 4541 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 71976, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1379 }" + }, + "fileCreated": "2025-06-21T09:31:01.2592287+00:00", + "fileLastModified": "2025-07-14T09:31:01.2592294+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2592257+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1380 + }, + "imageDetail": { + "width": 2850, + "height": 5794 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53852, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1380 }" + }, + "fileCreated": "2025-06-21T09:31:01.2672748+00:00", + "fileLastModified": "2025-07-14T09:31:01.2672754+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2672716+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1381 + }, + "imageDetail": { + "width": 2951, + "height": 9315 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96472, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1381 }" + }, + "fileCreated": "2025-06-21T09:31:01.277635+00:00", + "fileLastModified": "2025-07-14T09:31:01.2776357+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.277631+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1382 + }, + "imageDetail": { + "width": 8443, + "height": 4443 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 46980, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1382 }" + }, + "fileCreated": "2025-06-21T09:31:01.2857745+00:00", + "fileLastModified": "2025-07-14T09:31:01.2857753+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2857758+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2857715+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1383 + }, + "imageDetail": { + "width": 2220, + "height": 4330 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79064, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1383 }" + }, + "fileCreated": "2025-06-21T09:31:01.2938005+00:00", + "fileLastModified": "2025-07-14T09:31:01.2938015+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2938018+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.293798+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1384 + }, + "imageDetail": { + "width": 4094, + "height": 5149 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85122, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1384 }" + }, + "fileCreated": "2025-06-21T09:31:01.3022229+00:00", + "fileLastModified": "2025-07-14T09:31:01.3022237+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3022241+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.302219+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1385 + }, + "imageDetail": { + "width": 7894, + "height": 9460 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35894, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1385 }" + }, + "fileCreated": "2025-06-21T09:31:01.310004+00:00", + "fileLastModified": "2025-07-14T09:31:01.3100045+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3100049+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3100016+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1386 + }, + "imageDetail": { + "width": 9047, + "height": 7228 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64094, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1386 }" + }, + "fileCreated": "2025-06-21T09:31:01.317796+00:00", + "fileLastModified": "2025-07-14T09:31:01.3177965+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3177968+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3177935+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1387 + }, + "imageDetail": { + "width": 2256, + "height": 7973 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60341, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1387 }" + }, + "fileCreated": "2025-06-21T09:31:01.3260415+00:00", + "fileLastModified": "2025-07-14T09:31:01.3260566+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3260569+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3260387+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1388 + }, + "imageDetail": { + "width": 1976, + "height": 6018 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84562, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1388 }" + }, + "fileCreated": "2025-06-21T09:31:01.3337059+00:00", + "fileLastModified": "2025-07-14T09:31:01.3337067+00:00", + "fileLastViewed": "2025-07-14T09:31:01.333707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3337035+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1389 + }, + "imageDetail": { + "width": 7835, + "height": 4329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46817, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1389 }" + }, + "fileCreated": "2025-06-21T09:31:01.3406802+00:00", + "fileLastModified": "2025-07-14T09:31:01.3406809+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3406811+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3406784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1390 + }, + "imageDetail": { + "width": 3880, + "height": 6251 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51460, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1390 }" + }, + "fileCreated": "2025-06-21T09:31:01.3478627+00:00", + "fileLastModified": "2025-07-14T09:31:01.347863+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3478609+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1391 + }, + "imageDetail": { + "width": 6835, + "height": 7008 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22159, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1391 }" + }, + "fileCreated": "2025-06-21T09:31:01.3566863+00:00", + "fileLastModified": "2025-07-14T09:31:01.3566868+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3566869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3566837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1392 + }, + "imageDetail": { + "width": 620, + "height": 6694 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66082, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1392 }" + }, + "fileCreated": "2025-06-21T09:31:01.3638228+00:00", + "fileLastModified": "2025-07-14T09:31:01.3638232+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3638237+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3638212+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1393 + }, + "imageDetail": { + "width": 881, + "height": 7895 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36568, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1393 }" + }, + "fileCreated": "2025-06-21T09:31:01.3710244+00:00", + "fileLastModified": "2025-07-14T09:31:01.3710247+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3710249+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3710224+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1394 + }, + "imageDetail": { + "width": 5796, + "height": 2116 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1394 }" + }, + "fileCreated": "2025-06-21T09:31:01.3784492+00:00", + "fileLastModified": "2025-07-14T09:31:01.3784497+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3784498+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3784473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1395 + }, + "imageDetail": { + "width": 2563, + "height": 8522 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63287, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1395 }" + }, + "fileCreated": "2025-06-21T09:31:01.3860917+00:00", + "fileLastModified": "2025-07-14T09:31:01.3860921+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3860923+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3860893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1396 + }, + "imageDetail": { + "width": 104, + "height": 7750 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 39374, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1396 }" + }, + "fileCreated": "2025-06-21T09:31:01.393003+00:00", + "fileLastModified": "2025-07-14T09:31:01.3930033+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3930034+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3930017+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1397 + }, + "imageDetail": { + "width": 5279, + "height": 2519 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67055, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1397 }" + }, + "fileCreated": "2025-06-21T09:31:01.4004417+00:00", + "fileLastModified": "2025-07-14T09:31:01.4004422+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4004401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1398 + }, + "imageDetail": { + "width": 9660, + "height": 4603 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26828, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1398 }" + }, + "fileCreated": "2025-06-21T09:31:01.4074621+00:00", + "fileLastModified": "2025-07-14T09:31:01.4074624+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4074625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4074608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1399 + }, + "imageDetail": { + "width": 425, + "height": 2830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79712, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1399 }" + }, + "fileCreated": "2025-06-21T09:31:01.4146444+00:00", + "fileLastModified": "2025-07-14T09:31:01.4146448+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.414643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1400 + }, + "imageDetail": { + "width": 5250, + "height": 7105 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1400 }" + }, + "fileCreated": "2025-06-21T09:31:01.4216345+00:00", + "fileLastModified": "2025-07-14T09:31:01.4216348+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4216332+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1401 + }, + "imageDetail": { + "width": 958, + "height": 6964 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43869, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1401 }" + }, + "fileCreated": "2025-06-21T09:31:01.4292188+00:00", + "fileLastModified": "2025-07-14T09:31:01.4292193+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4292166+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1402 + }, + "imageDetail": { + "width": 7812, + "height": 2350 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1402 }" + }, + "fileCreated": "2025-06-21T09:31:01.436503+00:00", + "fileLastModified": "2025-07-14T09:31:01.4365034+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4365035+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4365005+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1403 + }, + "imageDetail": { + "width": 7977, + "height": 2120 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59954, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1403 }" + }, + "fileCreated": "2025-06-21T09:31:01.444766+00:00", + "fileLastModified": "2025-07-14T09:31:01.444767+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4447637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1404 + }, + "imageDetail": { + "width": 4790, + "height": 6497 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72590, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1404 }" + }, + "fileCreated": "2025-06-21T09:31:01.4521363+00:00", + "fileLastModified": "2025-07-14T09:31:01.4521367+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4521342+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1405 + }, + "imageDetail": { + "width": 5738, + "height": 3378 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 77335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1405 }" + }, + "fileCreated": "2025-06-21T09:31:01.4604837+00:00", + "fileLastModified": "2025-07-14T09:31:01.4604842+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4604809+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1406 + }, + "imageDetail": { + "width": 6634, + "height": 4806 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70987, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1406 }" + }, + "fileCreated": "2025-06-21T09:31:01.468035+00:00", + "fileLastModified": "2025-07-14T09:31:01.4680353+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4680355+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4680329+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1407 + }, + "imageDetail": { + "width": 7317, + "height": 6513 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1407 }" + }, + "fileCreated": "2025-06-21T09:31:01.4758509+00:00", + "fileLastModified": "2025-07-14T09:31:01.4758514+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4758516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4758483+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1408 + }, + "imageDetail": { + "width": 5435, + "height": 9712 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58312, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1408 }" + }, + "fileCreated": "2025-06-21T09:31:01.4841045+00:00", + "fileLastModified": "2025-07-14T09:31:01.4841052+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4841022+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1409 + }, + "imageDetail": { + "width": 1471, + "height": 9961 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23328, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1409 }" + }, + "fileCreated": "2025-06-21T09:31:01.491971+00:00", + "fileLastModified": "2025-07-14T09:31:01.4919713+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4919715+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.491969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1410 + }, + "imageDetail": { + "width": 2602, + "height": 4314 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 72983, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1410 }" + }, + "fileCreated": "2025-06-21T09:31:01.4993854+00:00", + "fileLastModified": "2025-07-14T09:31:01.4993856+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4993857+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4993839+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1411 + }, + "imageDetail": { + "width": 7582, + "height": 7182 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32284, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1411 }" + }, + "fileCreated": "2025-06-21T09:31:01.5075583+00:00", + "fileLastModified": "2025-07-14T09:31:01.5075587+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5075561+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1412 + }, + "imageDetail": { + "width": 257, + "height": 8860 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21799, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1412 }" + }, + "fileCreated": "2025-06-21T09:31:01.5147918+00:00", + "fileLastModified": "2025-07-14T09:31:01.514792+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5147905+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1413 + }, + "imageDetail": { + "width": 1909, + "height": 7982 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75943, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1413 }" + }, + "fileCreated": "2025-06-21T09:31:01.5221819+00:00", + "fileLastModified": "2025-07-14T09:31:01.5221822+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5221823+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5221801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1414 + }, + "imageDetail": { + "width": 2951, + "height": 4620 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64171, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1414 }" + }, + "fileCreated": "2025-06-21T09:31:01.52817+00:00", + "fileLastModified": "2025-07-14T09:31:01.5281702+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5281703+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5281685+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1415 + }, + "imageDetail": { + "width": 556, + "height": 2878 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34957, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1415 }" + }, + "fileCreated": "2025-06-21T09:31:01.5320539+00:00", + "fileLastModified": "2025-07-14T09:31:01.5320541+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5320543+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5320524+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1416 + }, + "imageDetail": { + "width": 4783, + "height": 4044 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44692, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1416 }" + }, + "fileCreated": "2025-06-21T09:31:01.536109+00:00", + "fileLastModified": "2025-07-14T09:31:01.5361092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5361075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1417 + }, + "imageDetail": { + "width": 1244, + "height": 7523 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98244, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1417 }" + }, + "fileCreated": "2025-06-21T09:31:01.5389153+00:00", + "fileLastModified": "2025-07-14T09:31:01.5389155+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5389157+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.538914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1418 + }, + "imageDetail": { + "width": 4305, + "height": 7036 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82713, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1418 }" + }, + "fileCreated": "2025-06-21T09:31:01.5413219+00:00", + "fileLastModified": "2025-07-14T09:31:01.5413221+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5413207+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1419 + }, + "imageDetail": { + "width": 744, + "height": 5944 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1419 }" + }, + "fileCreated": "2025-06-21T09:31:01.5438095+00:00", + "fileLastModified": "2025-07-14T09:31:01.5438097+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5438081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1420 + }, + "imageDetail": { + "width": 6909, + "height": 8963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75502, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1420 }" + }, + "fileCreated": "2025-06-21T09:31:01.5460528+00:00", + "fileLastModified": "2025-07-14T09:31:01.5460531+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5460515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1421 + }, + "imageDetail": { + "width": 1435, + "height": 2035 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41048, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1421 }" + }, + "fileCreated": "2025-06-21T09:31:01.5484207+00:00", + "fileLastModified": "2025-07-14T09:31:01.5484209+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5484195+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1422 + }, + "imageDetail": { + "width": 9230, + "height": 9632 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66113, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1422 }" + }, + "fileCreated": "2025-06-21T09:31:01.551342+00:00", + "fileLastModified": "2025-07-14T09:31:01.5513423+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5513396+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1423 + }, + "imageDetail": { + "width": 4295, + "height": 9646 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 91544, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1423 }" + }, + "fileCreated": "2025-06-21T09:31:01.5538396+00:00", + "fileLastModified": "2025-07-14T09:31:01.5538398+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5538378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1424 + }, + "imageDetail": { + "width": 931, + "height": 8529 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96863, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1424 }" + }, + "fileCreated": "2025-06-21T09:31:01.5560157+00:00", + "fileLastModified": "2025-07-14T09:31:01.5560159+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5560145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1425 + }, + "imageDetail": { + "width": 9324, + "height": 9169 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88370, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1425 }" + }, + "fileCreated": "2025-06-21T09:31:01.5582017+00:00", + "fileLastModified": "2025-07-14T09:31:01.5582019+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5582002+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1426 + }, + "imageDetail": { + "width": 5374, + "height": 5853 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28061, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1426 }" + }, + "fileCreated": "2025-06-21T09:31:01.560301+00:00", + "fileLastModified": "2025-07-14T09:31:01.5603013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5602996+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1427 + }, + "imageDetail": { + "width": 1370, + "height": 4375 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28632, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1427 }" + }, + "fileCreated": "2025-06-21T09:31:01.5629036+00:00", + "fileLastModified": "2025-07-14T09:31:01.5629039+00:00", + "fileLastViewed": "2025-07-14T09:31:01.562904+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5629021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1428 + }, + "imageDetail": { + "width": 6935, + "height": 5824 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46951, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1428 }" + }, + "fileCreated": "2025-06-21T09:31:01.5647476+00:00", + "fileLastModified": "2025-07-14T09:31:01.5647479+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.564746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1429 + }, + "imageDetail": { + "width": 3664, + "height": 7211 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73762, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1429 }" + }, + "fileCreated": "2025-06-21T09:31:01.5672633+00:00", + "fileLastModified": "2025-07-14T09:31:01.5672636+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5672614+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1430 + }, + "imageDetail": { + "width": 735, + "height": 2985 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1430 }" + }, + "fileCreated": "2025-06-21T09:31:01.5689894+00:00", + "fileLastModified": "2025-07-14T09:31:01.5689897+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5689898+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5689879+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1431 + }, + "imageDetail": { + "width": 2873, + "height": 8000 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35221, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1431 }" + }, + "fileCreated": "2025-06-21T09:31:01.5707237+00:00", + "fileLastModified": "2025-07-14T09:31:01.5707239+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5707241+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5707225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1432 + }, + "imageDetail": { + "width": 2583, + "height": 3583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89723, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1432 }" + }, + "fileCreated": "2025-06-21T09:31:01.5722618+00:00", + "fileLastModified": "2025-07-14T09:31:01.5722621+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5722622+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5722607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1433 + }, + "imageDetail": { + "width": 3240, + "height": 4305 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90443, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1433 }" + }, + "fileCreated": "2025-06-21T09:31:01.5738131+00:00", + "fileLastModified": "2025-07-14T09:31:01.5738133+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.573812+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1434 + }, + "imageDetail": { + "width": 4426, + "height": 5472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64501, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1434 }" + }, + "fileCreated": "2025-06-21T09:31:01.5753478+00:00", + "fileLastModified": "2025-07-14T09:31:01.575348+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5753467+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1435 + }, + "imageDetail": { + "width": 1640, + "height": 2806 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98409, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1435 }" + }, + "fileCreated": "2025-06-21T09:31:01.57695+00:00", + "fileLastModified": "2025-07-14T09:31:01.5769502+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5769486+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1436 + }, + "imageDetail": { + "width": 1501, + "height": 9758 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1436 }" + }, + "fileCreated": "2025-06-21T09:31:01.5784368+00:00", + "fileLastModified": "2025-07-14T09:31:01.5784371+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5784372+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5784357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1437 + }, + "imageDetail": { + "width": 4687, + "height": 7581 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23230, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1437 }" + }, + "fileCreated": "2025-06-21T09:31:01.580545+00:00", + "fileLastModified": "2025-07-14T09:31:01.5805452+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5805434+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1438 + }, + "imageDetail": { + "width": 8069, + "height": 2854 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91654, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1438 }" + }, + "fileCreated": "2025-06-21T09:31:01.5827306+00:00", + "fileLastModified": "2025-07-14T09:31:01.5827312+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5827314+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5827282+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1439 + }, + "imageDetail": { + "width": 1354, + "height": 6206 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67962, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1439 }" + }, + "fileCreated": "2025-06-21T09:31:01.5847654+00:00", + "fileLastModified": "2025-07-14T09:31:01.5847656+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5847637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1440 + }, + "imageDetail": { + "width": 3612, + "height": 8085 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 62841, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1440 }" + }, + "fileCreated": "2025-06-21T09:31:01.5864032+00:00", + "fileLastModified": "2025-07-14T09:31:01.5864035+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5864019+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1441 + }, + "imageDetail": { + "width": 653, + "height": 8857 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66661, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1441 }" + }, + "fileCreated": "2025-06-21T09:31:01.5879164+00:00", + "fileLastModified": "2025-07-14T09:31:01.5879166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5879153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1442 + }, + "imageDetail": { + "width": 3663, + "height": 8128 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1442 }" + }, + "fileCreated": "2025-06-21T09:31:01.5894467+00:00", + "fileLastModified": "2025-07-14T09:31:01.589447+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5894471+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5894456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1443 + }, + "imageDetail": { + "width": 5199, + "height": 5743 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1443 }" + }, + "fileCreated": "2025-06-21T09:31:01.5909151+00:00", + "fileLastModified": "2025-07-14T09:31:01.5909153+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5909154+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5909141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1444 + }, + "imageDetail": { + "width": 3755, + "height": 5792 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77305, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1444 }" + }, + "fileCreated": "2025-06-21T09:31:01.592378+00:00", + "fileLastModified": "2025-07-14T09:31:01.5923782+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5923783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5923769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1445 + }, + "imageDetail": { + "width": 3329, + "height": 9914 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24944, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1445 }" + }, + "fileCreated": "2025-06-21T09:31:01.5937682+00:00", + "fileLastModified": "2025-07-14T09:31:01.5937684+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5937672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1446 + }, + "imageDetail": { + "width": 1603, + "height": 4485 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53561, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1446 }" + }, + "fileCreated": "2025-06-21T09:31:01.5952403+00:00", + "fileLastModified": "2025-07-14T09:31:01.5952405+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5952392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1447 + }, + "imageDetail": { + "width": 7037, + "height": 9564 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 91238, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1447 }" + }, + "fileCreated": "2025-06-21T09:31:01.5972747+00:00", + "fileLastModified": "2025-07-14T09:31:01.5972749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5972732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1448 + }, + "imageDetail": { + "width": 9883, + "height": 5667 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1448 }" + }, + "fileCreated": "2025-06-21T09:31:01.5999728+00:00", + "fileLastModified": "2025-07-14T09:31:01.5999731+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5999733+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5999706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1449 + }, + "imageDetail": { + "width": 1915, + "height": 5264 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66105, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1449 }" + }, + "fileCreated": "2025-06-21T09:31:01.6021953+00:00", + "fileLastModified": "2025-07-14T09:31:01.6021956+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6021928+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1450 + }, + "imageDetail": { + "width": 9843, + "height": 4825 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51642, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1450 }" + }, + "fileCreated": "2025-06-21T09:31:01.6041334+00:00", + "fileLastModified": "2025-07-14T09:31:01.6041336+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6041339+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6041315+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1451 + }, + "imageDetail": { + "width": 155, + "height": 3347 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33508, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1451 }" + }, + "fileCreated": "2025-06-21T09:31:01.6059386+00:00", + "fileLastModified": "2025-07-14T09:31:01.6059388+00:00", + "fileLastViewed": "2025-07-14T09:31:01.605939+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6059375+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1452 + }, + "imageDetail": { + "width": 7681, + "height": 8409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1452 }" + }, + "fileCreated": "2025-06-21T09:31:01.6077617+00:00", + "fileLastModified": "2025-07-14T09:31:01.6077621+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6077623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6077601+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1453 + }, + "imageDetail": { + "width": 4699, + "height": 7567 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49457, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1453 }" + }, + "fileCreated": "2025-06-21T09:31:01.6095624+00:00", + "fileLastModified": "2025-07-14T09:31:01.6095626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6095608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1454 + }, + "imageDetail": { + "width": 7432, + "height": 9617 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29979, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1454 }" + }, + "fileCreated": "2025-06-21T09:31:01.6112021+00:00", + "fileLastModified": "2025-07-14T09:31:01.6112024+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6112008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1455 + }, + "imageDetail": { + "width": 1217, + "height": 6891 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1455 }" + }, + "fileCreated": "2025-06-21T09:31:01.6128519+00:00", + "fileLastModified": "2025-07-14T09:31:01.6128524+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6128526+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6128494+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1456 + }, + "imageDetail": { + "width": 4745, + "height": 5978 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22352, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1456 }" + }, + "fileCreated": "2025-06-21T09:31:01.6153861+00:00", + "fileLastModified": "2025-07-14T09:31:01.6153863+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6153841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1457 + }, + "imageDetail": { + "width": 3923, + "height": 9629 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74801, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1457 }" + }, + "fileCreated": "2025-06-21T09:31:01.6177618+00:00", + "fileLastModified": "2025-07-14T09:31:01.617762+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6177597+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1458 + }, + "imageDetail": { + "width": 6093, + "height": 8197 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31348, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1458 }" + }, + "fileCreated": "2025-06-21T09:31:01.6194188+00:00", + "fileLastModified": "2025-07-14T09:31:01.619419+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6194193+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6194171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1459 + }, + "imageDetail": { + "width": 6916, + "height": 4086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59184, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1459 }" + }, + "fileCreated": "2025-06-21T09:31:01.6210414+00:00", + "fileLastModified": "2025-07-14T09:31:01.6210416+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.62104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1460 + }, + "imageDetail": { + "width": 124, + "height": 5640 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23407, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1460 }" + }, + "fileCreated": "2025-06-21T09:31:01.6226358+00:00", + "fileLastModified": "2025-07-14T09:31:01.622636+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6226344+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1461 + }, + "imageDetail": { + "width": 4131, + "height": 7921 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1461 }" + }, + "fileCreated": "2025-06-21T09:31:01.6242313+00:00", + "fileLastModified": "2025-07-14T09:31:01.6242316+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6242317+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6242301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1462 + }, + "imageDetail": { + "width": 8673, + "height": 9230 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58126, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1462 }" + }, + "fileCreated": "2025-06-21T09:31:01.6257984+00:00", + "fileLastModified": "2025-07-14T09:31:01.6257986+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6257962+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1463 + }, + "imageDetail": { + "width": 2496, + "height": 6741 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 52422, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1463 }" + }, + "fileCreated": "2025-06-21T09:31:01.6277565+00:00", + "fileLastModified": "2025-07-14T09:31:01.6277568+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6277544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1464 + }, + "imageDetail": { + "width": 3214, + "height": 9248 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68061, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1464 }" + }, + "fileCreated": "2025-06-21T09:31:01.6299199+00:00", + "fileLastModified": "2025-07-14T09:31:01.6299201+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6299203+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6299181+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1465 + }, + "imageDetail": { + "width": 4895, + "height": 5711 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63921, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1465 }" + }, + "fileCreated": "2025-06-21T09:31:01.6317487+00:00", + "fileLastModified": "2025-07-14T09:31:01.631749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6317468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1466 + }, + "imageDetail": { + "width": 7632, + "height": 6028 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24089, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1466 }" + }, + "fileCreated": "2025-06-21T09:31:01.6334092+00:00", + "fileLastModified": "2025-07-14T09:31:01.6334094+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6334096+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6334076+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1467 + }, + "imageDetail": { + "width": 3581, + "height": 4374 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24038, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1467 }" + }, + "fileCreated": "2025-06-21T09:31:01.6354106+00:00", + "fileLastModified": "2025-07-14T09:31:01.6354108+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6354091+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1468 + }, + "imageDetail": { + "width": 715, + "height": 9405 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77201, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1468 }" + }, + "fileCreated": "2025-06-21T09:31:01.6369199+00:00", + "fileLastModified": "2025-07-14T09:31:01.6369202+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6369204+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6369187+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1469 + }, + "imageDetail": { + "width": 3281, + "height": 9979 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49672, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1469 }" + }, + "fileCreated": "2025-06-21T09:31:01.6384288+00:00", + "fileLastModified": "2025-07-14T09:31:01.638429+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6384292+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6384276+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1470 + }, + "imageDetail": { + "width": 6066, + "height": 6392 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 50399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1470 }" + }, + "fileCreated": "2025-06-21T09:31:01.6401739+00:00", + "fileLastModified": "2025-07-14T09:31:01.6401741+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6401744+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.640172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1471 + }, + "imageDetail": { + "width": 617, + "height": 6320 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78860, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1471 }" + }, + "fileCreated": "2025-06-21T09:31:01.6417462+00:00", + "fileLastModified": "2025-07-14T09:31:01.6417464+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6417466+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.641745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1472 + }, + "imageDetail": { + "width": 9258, + "height": 2535 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29518, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1472 }" + }, + "fileCreated": "2025-06-21T09:31:01.6433056+00:00", + "fileLastModified": "2025-07-14T09:31:01.6433058+00:00", + "fileLastViewed": "2025-07-14T09:31:01.643306+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6433045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1473 + }, + "imageDetail": { + "width": 3226, + "height": 9755 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57318, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1473 }" + }, + "fileCreated": "2025-06-21T09:31:01.6454309+00:00", + "fileLastModified": "2025-07-14T09:31:01.6454311+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.645429+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1474 + }, + "imageDetail": { + "width": 5263, + "height": 4385 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71255, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1474 }" + }, + "fileCreated": "2025-06-21T09:31:01.6473351+00:00", + "fileLastModified": "2025-07-14T09:31:01.6473353+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6473356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6473336+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1475 + }, + "imageDetail": { + "width": 3790, + "height": 7905 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91922, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1475 }" + }, + "fileCreated": "2025-06-21T09:31:01.6492089+00:00", + "fileLastModified": "2025-07-14T09:31:01.6492091+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6492094+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6492074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1476 + }, + "imageDetail": { + "width": 111, + "height": 5030 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24721, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1476 }" + }, + "fileCreated": "2025-06-21T09:31:01.6507751+00:00", + "fileLastModified": "2025-07-14T09:31:01.6507754+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6507735+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1477 + }, + "imageDetail": { + "width": 6611, + "height": 4937 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53514, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1477 }" + }, + "fileCreated": "2025-06-21T09:31:01.6530565+00:00", + "fileLastModified": "2025-07-14T09:31:01.6530568+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6530543+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1478 + }, + "imageDetail": { + "width": 5283, + "height": 2120 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98674, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1478 }" + }, + "fileCreated": "2025-06-21T09:31:01.6546689+00:00", + "fileLastModified": "2025-07-14T09:31:01.6546691+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6546673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1479 + }, + "imageDetail": { + "width": 7912, + "height": 2503 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1479 }" + }, + "fileCreated": "2025-06-21T09:31:01.6563685+00:00", + "fileLastModified": "2025-07-14T09:31:01.6563687+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6563668+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1480 + }, + "imageDetail": { + "width": 2960, + "height": 6166 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 73987, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1480 }" + }, + "fileCreated": "2025-06-21T09:31:01.6579806+00:00", + "fileLastModified": "2025-07-14T09:31:01.6579808+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.657979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1481 + }, + "imageDetail": { + "width": 3540, + "height": 9079 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1481 }" + }, + "fileCreated": "2025-06-21T09:31:01.659763+00:00", + "fileLastModified": "2025-07-14T09:31:01.6597635+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6597607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1482 + }, + "imageDetail": { + "width": 6230, + "height": 2473 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92581, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1482 }" + }, + "fileCreated": "2025-06-21T09:31:01.6620878+00:00", + "fileLastModified": "2025-07-14T09:31:01.662088+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.662086+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1483 + }, + "imageDetail": { + "width": 8990, + "height": 3933 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 70584, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1483 }" + }, + "fileCreated": "2025-06-21T09:31:01.6637376+00:00", + "fileLastModified": "2025-07-14T09:31:01.6637378+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6637362+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1484 + }, + "imageDetail": { + "width": 6884, + "height": 8540 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73970, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1484 }" + }, + "fileCreated": "2025-06-21T09:31:01.6652896+00:00", + "fileLastModified": "2025-07-14T09:31:01.6652898+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6652878+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1485 + }, + "imageDetail": { + "width": 4623, + "height": 5300 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91019, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1485 }" + }, + "fileCreated": "2025-06-21T09:31:01.6667807+00:00", + "fileLastModified": "2025-07-14T09:31:01.666781+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6667796+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1486 + }, + "imageDetail": { + "width": 9728, + "height": 7935 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40563, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1486 }" + }, + "fileCreated": "2025-06-21T09:31:01.6689738+00:00", + "fileLastModified": "2025-07-14T09:31:01.668974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6689725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1487 + }, + "imageDetail": { + "width": 8248, + "height": 4649 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43233, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1487 }" + }, + "fileCreated": "2025-06-21T09:31:01.670644+00:00", + "fileLastModified": "2025-07-14T09:31:01.6706442+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6706426+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1488 + }, + "imageDetail": { + "width": 7253, + "height": 3242 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76457, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1488 }" + }, + "fileCreated": "2025-06-21T09:31:01.6722689+00:00", + "fileLastModified": "2025-07-14T09:31:01.6722692+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6722674+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1489 + }, + "imageDetail": { + "width": 2178, + "height": 5953 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65232, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1489 }" + }, + "fileCreated": "2025-06-21T09:31:01.6739496+00:00", + "fileLastModified": "2025-07-14T09:31:01.6739499+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6739501+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6739484+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1490 + }, + "imageDetail": { + "width": 4291, + "height": 7082 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 36187, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1490 }" + }, + "fileCreated": "2025-06-21T09:31:01.676358+00:00", + "fileLastModified": "2025-07-14T09:31:01.6763583+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6763588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6763557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1491 + }, + "imageDetail": { + "width": 5376, + "height": 5305 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 31169, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1491 }" + }, + "fileCreated": "2025-06-21T09:31:01.6782847+00:00", + "fileLastModified": "2025-07-14T09:31:01.6782851+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6782854+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6782829+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1492 + }, + "imageDetail": { + "width": 1019, + "height": 6518 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32459, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1492 }" + }, + "fileCreated": "2025-06-21T09:31:01.6800053+00:00", + "fileLastModified": "2025-07-14T09:31:01.6800056+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.680004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1493 + }, + "imageDetail": { + "width": 5919, + "height": 3307 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63346, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1493 }" + }, + "fileCreated": "2025-06-21T09:31:01.6816916+00:00", + "fileLastModified": "2025-07-14T09:31:01.6816922+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6816904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1494 + }, + "imageDetail": { + "width": 7907, + "height": 9375 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 85687, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1494 }" + }, + "fileCreated": "2025-06-21T09:31:01.6833585+00:00", + "fileLastModified": "2025-07-14T09:31:01.6833587+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6833563+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1495 + }, + "imageDetail": { + "width": 7532, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1495 }" + }, + "fileCreated": "2025-06-21T09:31:01.6852303+00:00", + "fileLastModified": "2025-07-14T09:31:01.6852305+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6852307+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6852286+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1496 + }, + "imageDetail": { + "width": 7090, + "height": 3532 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89282, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1496 }" + }, + "fileCreated": "2025-06-21T09:31:01.6876058+00:00", + "fileLastModified": "2025-07-14T09:31:01.6876061+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6876063+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6876041+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1497 + }, + "imageDetail": { + "width": 878, + "height": 9814 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 99784, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1497 }" + }, + "fileCreated": "2025-06-21T09:31:01.6893584+00:00", + "fileLastModified": "2025-07-14T09:31:01.6893587+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6893588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6893569+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1498 + }, + "imageDetail": { + "width": 4081, + "height": 2786 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41710, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1498 }" + }, + "fileCreated": "2025-06-21T09:31:01.6916565+00:00", + "fileLastModified": "2025-07-14T09:31:01.6916567+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6916569+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6916546+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1499 + }, + "imageDetail": { + "width": 6332, + "height": 3634 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30355, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1499 }" + }, + "fileCreated": "2025-06-21T09:31:01.6934837+00:00", + "fileLastModified": "2025-07-14T09:31:01.6934839+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6934841+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6934822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1500 + }, + "imageDetail": { + "width": 4275, + "height": 7173 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88804, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1500 }" + }, + "fileCreated": "2025-06-21T09:31:01.695312+00:00", + "fileLastModified": "2025-07-14T09:31:01.6953123+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6953105+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1501 + }, + "imageDetail": { + "width": 7290, + "height": 2463 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84739, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1501 }" + }, + "fileCreated": "2025-06-21T09:31:01.6972476+00:00", + "fileLastModified": "2025-07-14T09:31:01.6972479+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6972426+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1502 + }, + "imageDetail": { + "width": 2527, + "height": 4698 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30987, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1502 }" + }, + "fileCreated": "2025-06-21T09:31:01.699312+00:00", + "fileLastModified": "2025-07-14T09:31:01.6993122+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6993124+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6993104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1503 + }, + "imageDetail": { + "width": 5572, + "height": 8040 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1503 }" + }, + "fileCreated": "2025-06-21T09:31:01.7012502+00:00", + "fileLastModified": "2025-07-14T09:31:01.7012504+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7012487+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1504 + }, + "imageDetail": { + "width": 9010, + "height": 5254 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1504 }" + }, + "fileCreated": "2025-06-21T09:31:01.7030607+00:00", + "fileLastModified": "2025-07-14T09:31:01.7030609+00:00", + "fileLastViewed": "2025-07-14T09:31:01.703061+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7030591+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1505 + }, + "imageDetail": { + "width": 7093, + "height": 8628 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34989, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1505 }" + }, + "fileCreated": "2025-06-21T09:31:01.7053357+00:00", + "fileLastModified": "2025-07-14T09:31:01.7053359+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7053342+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1506 + }, + "imageDetail": { + "width": 4349, + "height": 5903 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1506 }" + }, + "fileCreated": "2025-06-21T09:31:01.7072566+00:00", + "fileLastModified": "2025-07-14T09:31:01.7072568+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7072551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1507 + }, + "imageDetail": { + "width": 637, + "height": 8628 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72684, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1507 }" + }, + "fileCreated": "2025-06-21T09:31:01.7090416+00:00", + "fileLastModified": "2025-07-14T09:31:01.7090419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.70904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1508 + }, + "imageDetail": { + "width": 2038, + "height": 9555 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61262, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1508 }" + }, + "fileCreated": "2025-06-21T09:31:01.7107631+00:00", + "fileLastModified": "2025-07-14T09:31:01.7107634+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7107617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1509 + }, + "imageDetail": { + "width": 9703, + "height": 9723 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1509 }" + }, + "fileCreated": "2025-06-21T09:31:01.7125827+00:00", + "fileLastModified": "2025-07-14T09:31:01.7125831+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7125833+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7125812+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1510 + }, + "imageDetail": { + "width": 292, + "height": 8040 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 69019, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1510 }" + }, + "fileCreated": "2025-06-21T09:31:01.7143091+00:00", + "fileLastModified": "2025-07-14T09:31:01.7143094+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7143077+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1511 + }, + "imageDetail": { + "width": 9839, + "height": 4411 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77035, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1511 }" + }, + "fileCreated": "2025-06-21T09:31:01.7161602+00:00", + "fileLastModified": "2025-07-14T09:31:01.7161604+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7161607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7161587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1512 + }, + "imageDetail": { + "width": 8257, + "height": 8945 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87774, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1512 }" + }, + "fileCreated": "2025-06-21T09:31:01.717825+00:00", + "fileLastModified": "2025-07-14T09:31:01.7178253+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7178255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7178236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1513 + }, + "imageDetail": { + "width": 8028, + "height": 3950 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84838, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1513 }" + }, + "fileCreated": "2025-06-21T09:31:01.7194565+00:00", + "fileLastModified": "2025-07-14T09:31:01.7194567+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7194568+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7194549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1514 + }, + "imageDetail": { + "width": 8087, + "height": 9946 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80760, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1514 }" + }, + "fileCreated": "2025-06-21T09:31:01.7220051+00:00", + "fileLastModified": "2025-07-14T09:31:01.7220052+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7220054+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7220032+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1515 + }, + "imageDetail": { + "width": 1139, + "height": 8199 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71760, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1515 }" + }, + "fileCreated": "2025-06-21T09:31:01.7235281+00:00", + "fileLastModified": "2025-07-14T09:31:01.7235283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7235266+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1516 + }, + "imageDetail": { + "width": 194, + "height": 8897 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40298, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1516 }" + }, + "fileCreated": "2025-06-21T09:31:01.7249759+00:00", + "fileLastModified": "2025-07-14T09:31:01.7249761+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7249762+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7249749+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1517 + }, + "imageDetail": { + "width": 4937, + "height": 2569 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82654, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1517 }" + }, + "fileCreated": "2025-06-21T09:31:01.7263966+00:00", + "fileLastModified": "2025-07-14T09:31:01.7263968+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7263957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1518 + }, + "imageDetail": { + "width": 8489, + "height": 5172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56668, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1518 }" + }, + "fileCreated": "2025-06-21T09:31:01.7277967+00:00", + "fileLastModified": "2025-07-14T09:31:01.7277969+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7277957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1519 + }, + "imageDetail": { + "width": 7964, + "height": 3274 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 50460, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1519 }" + }, + "fileCreated": "2025-06-21T09:31:01.729171+00:00", + "fileLastModified": "2025-07-14T09:31:01.7291712+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.72917+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1520 + }, + "imageDetail": { + "width": 3137, + "height": 5897 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67943, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1520 }" + }, + "fileCreated": "2025-06-21T09:31:01.7305141+00:00", + "fileLastModified": "2025-07-14T09:31:01.7305143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.730513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1521 + }, + "imageDetail": { + "width": 917, + "height": 9841 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46868, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1521 }" + }, + "fileCreated": "2025-06-21T09:31:01.7319407+00:00", + "fileLastModified": "2025-07-14T09:31:01.7319408+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7319396+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1522 + }, + "imageDetail": { + "width": 7914, + "height": 2786 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69769, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1522 }" + }, + "fileCreated": "2025-06-21T09:31:01.7332875+00:00", + "fileLastModified": "2025-07-14T09:31:01.7332877+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7332878+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7332865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1523 + }, + "imageDetail": { + "width": 4770, + "height": 5703 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81053, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1523 }" + }, + "fileCreated": "2025-06-21T09:31:01.7351438+00:00", + "fileLastModified": "2025-07-14T09:31:01.735144+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7351441+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7351425+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1524 + }, + "imageDetail": { + "width": 6324, + "height": 4139 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1524 }" + }, + "fileCreated": "2025-06-21T09:31:01.7366842+00:00", + "fileLastModified": "2025-07-14T09:31:01.7366845+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7366819+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1525 + }, + "imageDetail": { + "width": 1358, + "height": 8657 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27106, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1525 }" + }, + "fileCreated": "2025-06-21T09:31:01.7389665+00:00", + "fileLastModified": "2025-07-14T09:31:01.7389667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7389651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1526 + }, + "imageDetail": { + "width": 838, + "height": 4646 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 28475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1526 }" + }, + "fileCreated": "2025-06-21T09:31:01.740331+00:00", + "fileLastModified": "2025-07-14T09:31:01.7403312+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7403313+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7403299+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1527 + }, + "imageDetail": { + "width": 9127, + "height": 8083 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34325, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1527 }" + }, + "fileCreated": "2025-06-21T09:31:01.7416576+00:00", + "fileLastModified": "2025-07-14T09:31:01.7416578+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7416579+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7416566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1528 + }, + "imageDetail": { + "width": 9736, + "height": 2703 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84945, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1528 }" + }, + "fileCreated": "2025-06-21T09:31:01.742985+00:00", + "fileLastModified": "2025-07-14T09:31:01.7429853+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7429733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1529 + }, + "imageDetail": { + "width": 6483, + "height": 7835 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61693, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1529 }" + }, + "fileCreated": "2025-06-21T09:31:01.7442728+00:00", + "fileLastModified": "2025-07-14T09:31:01.744273+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7442719+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1530 + }, + "imageDetail": { + "width": 9028, + "height": 2306 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1530 }" + }, + "fileCreated": "2025-06-21T09:31:01.7455878+00:00", + "fileLastModified": "2025-07-14T09:31:01.745588+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7455868+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1531 + }, + "imageDetail": { + "width": 4059, + "height": 7370 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78676, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1531 }" + }, + "fileCreated": "2025-06-21T09:31:01.7473955+00:00", + "fileLastModified": "2025-07-14T09:31:01.7473957+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7473958+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7473946+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1532 + }, + "imageDetail": { + "width": 9471, + "height": 7598 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1532 }" + }, + "fileCreated": "2025-06-21T09:31:01.7487742+00:00", + "fileLastModified": "2025-07-14T09:31:01.7487744+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7487732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1533 + }, + "imageDetail": { + "width": 626, + "height": 6655 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 63618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1533 }" + }, + "fileCreated": "2025-06-21T09:31:01.7501334+00:00", + "fileLastModified": "2025-07-14T09:31:01.7501335+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7501324+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1534 + }, + "imageDetail": { + "width": 6865, + "height": 2957 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71003, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1534 }" + }, + "fileCreated": "2025-06-21T09:31:01.7514439+00:00", + "fileLastModified": "2025-07-14T09:31:01.7514441+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7514442+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7514429+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1535 + }, + "imageDetail": { + "width": 7323, + "height": 7892 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50453, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1535 }" + }, + "fileCreated": "2025-06-21T09:31:01.7530072+00:00", + "fileLastModified": "2025-07-14T09:31:01.7530074+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7530059+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1536 + }, + "imageDetail": { + "width": 4523, + "height": 8301 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64733, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1536 }" + }, + "fileCreated": "2025-06-21T09:31:01.7545826+00:00", + "fileLastModified": "2025-07-14T09:31:01.7545828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7545811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1537 + }, + "imageDetail": { + "width": 1723, + "height": 7640 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96819, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1537 }" + }, + "fileCreated": "2025-06-21T09:31:01.7559861+00:00", + "fileLastModified": "2025-07-14T09:31:01.7559863+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7559851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1538 + }, + "imageDetail": { + "width": 8084, + "height": 3948 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80119, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1538 }" + }, + "fileCreated": "2025-06-21T09:31:01.7573895+00:00", + "fileLastModified": "2025-07-14T09:31:01.7573897+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7573884+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1539 + }, + "imageDetail": { + "width": 9760, + "height": 2012 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64213, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1539 }" + }, + "fileCreated": "2025-06-21T09:31:01.7587756+00:00", + "fileLastModified": "2025-07-14T09:31:01.7587758+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7587745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1540 + }, + "imageDetail": { + "width": 150, + "height": 2720 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1540 }" + }, + "fileCreated": "2025-06-21T09:31:01.760687+00:00", + "fileLastModified": "2025-07-14T09:31:01.7606872+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7606859+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1541 + }, + "imageDetail": { + "width": 1199, + "height": 4042 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63445, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1541 }" + }, + "fileCreated": "2025-06-21T09:31:01.7620145+00:00", + "fileLastModified": "2025-07-14T09:31:01.7620147+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7620135+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1542 + }, + "imageDetail": { + "width": 1573, + "height": 8085 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81936, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1542 }" + }, + "fileCreated": "2025-06-21T09:31:01.7633837+00:00", + "fileLastModified": "2025-07-14T09:31:01.7633839+00:00", + "fileLastViewed": "2025-07-14T09:31:01.763384+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7633827+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1543 + }, + "imageDetail": { + "width": 4561, + "height": 3730 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45529, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1543 }" + }, + "fileCreated": "2025-06-21T09:31:01.7647125+00:00", + "fileLastModified": "2025-07-14T09:31:01.7647127+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7647107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1544 + }, + "imageDetail": { + "width": 8623, + "height": 5436 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1544 }" + }, + "fileCreated": "2025-06-21T09:31:01.7660831+00:00", + "fileLastModified": "2025-07-14T09:31:01.7660833+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7660834+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7660822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1545 + }, + "imageDetail": { + "width": 3753, + "height": 4963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1545 }" + }, + "fileCreated": "2025-06-21T09:31:01.7673489+00:00", + "fileLastModified": "2025-07-14T09:31:01.767349+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7673492+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.767348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1546 + }, + "imageDetail": { + "width": 7006, + "height": 2987 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45390, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1546 }" + }, + "fileCreated": "2025-06-21T09:31:01.7691739+00:00", + "fileLastModified": "2025-07-14T09:31:01.7691741+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7691726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1547 + }, + "imageDetail": { + "width": 4649, + "height": 2808 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 61147, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1547 }" + }, + "fileCreated": "2025-06-21T09:31:01.7705517+00:00", + "fileLastModified": "2025-07-14T09:31:01.7705519+00:00", + "fileLastViewed": "2025-07-14T09:31:01.770552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7705507+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1548 + }, + "imageDetail": { + "width": 601, + "height": 4977 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1548 }" + }, + "fileCreated": "2025-06-21T09:31:01.7723809+00:00", + "fileLastModified": "2025-07-14T09:31:01.7723811+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7723812+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.77238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1549 + }, + "imageDetail": { + "width": 4709, + "height": 5479 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89508, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1549 }" + }, + "fileCreated": "2025-06-21T09:31:01.7739339+00:00", + "fileLastModified": "2025-07-14T09:31:01.7739341+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7739328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1550 + }, + "imageDetail": { + "width": 5501, + "height": 9741 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85037, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1550 }" + }, + "fileCreated": "2025-06-21T09:31:01.7752969+00:00", + "fileLastModified": "2025-07-14T09:31:01.7752971+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7752972+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7752959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1551 + }, + "imageDetail": { + "width": 7273, + "height": 4909 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1551 }" + }, + "fileCreated": "2025-06-21T09:31:01.7767368+00:00", + "fileLastModified": "2025-07-14T09:31:01.776737+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7767357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1552 + }, + "imageDetail": { + "width": 4243, + "height": 9955 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1552 }" + }, + "fileCreated": "2025-06-21T09:31:01.7782873+00:00", + "fileLastModified": "2025-07-14T09:31:01.7782875+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7782876+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7782863+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1553 + }, + "imageDetail": { + "width": 2336, + "height": 5635 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44342, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1553 }" + }, + "fileCreated": "2025-06-21T09:31:01.7799791+00:00", + "fileLastModified": "2025-07-14T09:31:01.7799793+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7799781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1554 + }, + "imageDetail": { + "width": 3110, + "height": 5719 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 57537, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1554 }" + }, + "fileCreated": "2025-06-21T09:31:01.781711+00:00", + "fileLastModified": "2025-07-14T09:31:01.7817111+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7817113+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7817099+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1555 + }, + "imageDetail": { + "width": 6192, + "height": 2369 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46886, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1555 }" + }, + "fileCreated": "2025-06-21T09:31:01.7834309+00:00", + "fileLastModified": "2025-07-14T09:31:01.783431+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7834294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1556 + }, + "imageDetail": { + "width": 8553, + "height": 9457 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22458, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1556 }" + }, + "fileCreated": "2025-06-21T09:31:01.7848042+00:00", + "fileLastModified": "2025-07-14T09:31:01.7848043+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7848031+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1557 + }, + "imageDetail": { + "width": 8121, + "height": 3472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68053, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1557 }" + }, + "fileCreated": "2025-06-21T09:31:01.7866208+00:00", + "fileLastModified": "2025-07-14T09:31:01.786621+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7866198+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1558 + }, + "imageDetail": { + "width": 5554, + "height": 3700 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 25124, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1558 }" + }, + "fileCreated": "2025-06-21T09:31:01.7880896+00:00", + "fileLastModified": "2025-07-14T09:31:01.7880898+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7880899+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7880882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1559 + }, + "imageDetail": { + "width": 1110, + "height": 9452 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22687, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1559 }" + }, + "fileCreated": "2025-06-21T09:31:01.7895463+00:00", + "fileLastModified": "2025-07-14T09:31:01.7895465+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7895453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1560 + }, + "imageDetail": { + "width": 5830, + "height": 2617 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55686, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1560 }" + }, + "fileCreated": "2025-06-21T09:31:01.7908954+00:00", + "fileLastModified": "2025-07-14T09:31:01.7908956+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7908944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1561 + }, + "imageDetail": { + "width": 6383, + "height": 2623 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1561 }" + }, + "fileCreated": "2025-06-21T09:31:01.7922077+00:00", + "fileLastModified": "2025-07-14T09:31:01.7922079+00:00", + "fileLastViewed": "2025-07-14T09:31:01.792208+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7922067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1562 + }, + "imageDetail": { + "width": 1498, + "height": 9341 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78266, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1562 }" + }, + "fileCreated": "2025-06-21T09:31:01.7935197+00:00", + "fileLastModified": "2025-07-14T09:31:01.7935199+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7935187+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1563 + }, + "imageDetail": { + "width": 9567, + "height": 5329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54569, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1563 }" + }, + "fileCreated": "2025-06-21T09:31:01.7948138+00:00", + "fileLastModified": "2025-07-14T09:31:01.794814+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7948128+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1564 + }, + "imageDetail": { + "width": 4760, + "height": 7620 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1564 }" + }, + "fileCreated": "2025-06-21T09:31:01.7961983+00:00", + "fileLastModified": "2025-07-14T09:31:01.7961985+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7961986+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7961973+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1565 + }, + "imageDetail": { + "width": 7472, + "height": 5520 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97338, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1565 }" + }, + "fileCreated": "2025-06-21T09:31:01.7980568+00:00", + "fileLastModified": "2025-07-14T09:31:01.798057+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7980571+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7980559+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1566 + }, + "imageDetail": { + "width": 7957, + "height": 2782 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74330, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1566 }" + }, + "fileCreated": "2025-06-21T09:31:01.7996566+00:00", + "fileLastModified": "2025-07-14T09:31:01.7996568+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7996555+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1567 + }, + "imageDetail": { + "width": 1698, + "height": 5551 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 48865, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1567 }" + }, + "fileCreated": "2025-06-21T09:31:01.801107+00:00", + "fileLastModified": "2025-07-14T09:31:01.8011072+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8011044+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1568 + }, + "imageDetail": { + "width": 4760, + "height": 5245 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 37050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1568 }" + }, + "fileCreated": "2025-06-21T09:31:01.8025933+00:00", + "fileLastModified": "2025-07-14T09:31:01.8025934+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8025923+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1569 + }, + "imageDetail": { + "width": 4382, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1569 }" + }, + "fileCreated": "2025-06-21T09:31:01.8039232+00:00", + "fileLastModified": "2025-07-14T09:31:01.8039234+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8039223+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1570 + }, + "imageDetail": { + "width": 4603, + "height": 8604 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34226, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1570 }" + }, + "fileCreated": "2025-06-21T09:31:01.805322+00:00", + "fileLastModified": "2025-07-14T09:31:01.8053222+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8053223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8053211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1571 + }, + "imageDetail": { + "width": 1937, + "height": 5223 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79496, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1571 }" + }, + "fileCreated": "2025-06-21T09:31:01.8066631+00:00", + "fileLastModified": "2025-07-14T09:31:01.8066633+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8066622+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1572 + }, + "imageDetail": { + "width": 4019, + "height": 6975 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65183, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1572 }" + }, + "fileCreated": "2025-06-21T09:31:01.8079898+00:00", + "fileLastModified": "2025-07-14T09:31:01.8079899+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8079888+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1573 + }, + "imageDetail": { + "width": 7319, + "height": 3244 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92552, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1573 }" + }, + "fileCreated": "2025-06-21T09:31:01.8100565+00:00", + "fileLastModified": "2025-07-14T09:31:01.8100566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8100552+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1574 + }, + "imageDetail": { + "width": 2950, + "height": 5398 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21159, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1574 }" + }, + "fileCreated": "2025-06-21T09:31:01.811395+00:00", + "fileLastModified": "2025-07-14T09:31:01.8113952+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.811394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1575 + }, + "imageDetail": { + "width": 7231, + "height": 7883 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69346, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1575 }" + }, + "fileCreated": "2025-06-21T09:31:01.8127128+00:00", + "fileLastModified": "2025-07-14T09:31:01.8127129+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8127118+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1576 + }, + "imageDetail": { + "width": 5989, + "height": 3274 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1576 }" + }, + "fileCreated": "2025-06-21T09:31:01.8140253+00:00", + "fileLastModified": "2025-07-14T09:31:01.8140255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8140243+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1577 + }, + "imageDetail": { + "width": 7324, + "height": 2418 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1577 }" + }, + "fileCreated": "2025-06-21T09:31:01.8160572+00:00", + "fileLastModified": "2025-07-14T09:31:01.8160574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8160558+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1578 + }, + "imageDetail": { + "width": 5115, + "height": 9034 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73025, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1578 }" + }, + "fileCreated": "2025-06-21T09:31:01.818012+00:00", + "fileLastModified": "2025-07-14T09:31:01.8180122+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8180123+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8180106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1579 + }, + "imageDetail": { + "width": 4235, + "height": 6600 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 70535, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1579 }" + }, + "fileCreated": "2025-06-21T09:31:01.819474+00:00", + "fileLastModified": "2025-07-14T09:31:01.8194742+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8194743+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8194729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1580 + }, + "imageDetail": { + "width": 5153, + "height": 3954 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94554, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1580 }" + }, + "fileCreated": "2025-06-21T09:31:01.8208552+00:00", + "fileLastModified": "2025-07-14T09:31:01.8208554+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8208542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1581 + }, + "imageDetail": { + "width": 9305, + "height": 5860 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43365, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1581 }" + }, + "fileCreated": "2025-06-21T09:31:01.822829+00:00", + "fileLastModified": "2025-07-14T09:31:01.8228292+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8228293+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8228276+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1582 + }, + "imageDetail": { + "width": 5076, + "height": 9906 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 65826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1582 }" + }, + "fileCreated": "2025-06-21T09:31:01.82421+00:00", + "fileLastModified": "2025-07-14T09:31:01.8242102+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8242103+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.824209+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1583 + }, + "imageDetail": { + "width": 8645, + "height": 8963 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79221, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1583 }" + }, + "fileCreated": "2025-06-21T09:31:01.8255417+00:00", + "fileLastModified": "2025-07-14T09:31:01.8255419+00:00", + "fileLastViewed": "2025-07-14T09:31:01.825542+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8255407+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1584 + }, + "imageDetail": { + "width": 7941, + "height": 7998 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1584 }" + }, + "fileCreated": "2025-06-21T09:31:01.826883+00:00", + "fileLastModified": "2025-07-14T09:31:01.8268832+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8268833+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.826882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1585 + }, + "imageDetail": { + "width": 5953, + "height": 4086 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22323, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1585 }" + }, + "fileCreated": "2025-06-21T09:31:01.8283703+00:00", + "fileLastModified": "2025-07-14T09:31:01.8283705+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8283706+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8283693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1586 + }, + "imageDetail": { + "width": 986, + "height": 7416 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1586 }" + }, + "fileCreated": "2025-06-21T09:31:01.8297321+00:00", + "fileLastModified": "2025-07-14T09:31:01.8297323+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8297324+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8297311+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1587 + }, + "imageDetail": { + "width": 7015, + "height": 7365 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1587 }" + }, + "fileCreated": "2025-06-21T09:31:01.8316182+00:00", + "fileLastModified": "2025-07-14T09:31:01.8316184+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8316164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1588 + }, + "imageDetail": { + "width": 8941, + "height": 2781 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1588 }" + }, + "fileCreated": "2025-06-21T09:31:01.83312+00:00", + "fileLastModified": "2025-07-14T09:31:01.8331202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8331188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1589 + }, + "imageDetail": { + "width": 3907, + "height": 3507 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20758, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1589 }" + }, + "fileCreated": "2025-06-21T09:31:01.8351435+00:00", + "fileLastModified": "2025-07-14T09:31:01.8351437+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8351438+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8351422+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1590 + }, + "imageDetail": { + "width": 3184, + "height": 5113 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1590 }" + }, + "fileCreated": "2025-06-21T09:31:01.8366651+00:00", + "fileLastModified": "2025-07-14T09:31:01.8366653+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8366641+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1591 + }, + "imageDetail": { + "width": 7730, + "height": 6651 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41997, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1591 }" + }, + "fileCreated": "2025-06-21T09:31:01.838458+00:00", + "fileLastModified": "2025-07-14T09:31:01.8384582+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8384568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1592 + }, + "imageDetail": { + "width": 6811, + "height": 3221 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78807, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1592 }" + }, + "fileCreated": "2025-06-21T09:31:01.8401373+00:00", + "fileLastModified": "2025-07-14T09:31:01.8401375+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.840136+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1593 + }, + "imageDetail": { + "width": 6482, + "height": 2382 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73411, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1593 }" + }, + "fileCreated": "2025-06-21T09:31:01.8417036+00:00", + "fileLastModified": "2025-07-14T09:31:01.8417038+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8417023+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1594 + }, + "imageDetail": { + "width": 5356, + "height": 3522 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28956, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1594 }" + }, + "fileCreated": "2025-06-21T09:31:01.843838+00:00", + "fileLastModified": "2025-07-14T09:31:01.8438382+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8438383+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8438364+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1595 + }, + "imageDetail": { + "width": 2653, + "height": 7745 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1595 }" + }, + "fileCreated": "2025-06-21T09:31:01.8454396+00:00", + "fileLastModified": "2025-07-14T09:31:01.8454398+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8454399+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8454385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1596 + }, + "imageDetail": { + "width": 9641, + "height": 5042 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77837, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1596 }" + }, + "fileCreated": "2025-06-21T09:31:01.847276+00:00", + "fileLastModified": "2025-07-14T09:31:01.8472762+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8472764+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.847275+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1597 + }, + "imageDetail": { + "width": 2801, + "height": 4444 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90142, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1597 }" + }, + "fileCreated": "2025-06-21T09:31:01.8498639+00:00", + "fileLastModified": "2025-07-14T09:31:01.8498641+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8498643+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8498623+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1598 + }, + "imageDetail": { + "width": 4192, + "height": 2240 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 52247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1598 }" + }, + "fileCreated": "2025-06-21T09:31:01.8518078+00:00", + "fileLastModified": "2025-07-14T09:31:01.851808+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8518081+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8518065+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1599 + }, + "imageDetail": { + "width": 9657, + "height": 7339 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1599 }" + }, + "fileCreated": "2025-06-21T09:31:01.853642+00:00", + "fileLastModified": "2025-07-14T09:31:01.8536422+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8536423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8536409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1600 + }, + "imageDetail": { + "width": 2249, + "height": 7061 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25274, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1600 }" + }, + "fileCreated": "2025-06-21T09:31:01.8554472+00:00", + "fileLastModified": "2025-07-14T09:31:01.8554474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8554461+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1601 + }, + "imageDetail": { + "width": 8858, + "height": 7272 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40348, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1601 }" + }, + "fileCreated": "2025-06-21T09:31:01.8570075+00:00", + "fileLastModified": "2025-07-14T09:31:01.8570077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8570066+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1602 + }, + "imageDetail": { + "width": 5147, + "height": 8451 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59464, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1602 }" + }, + "fileCreated": "2025-06-21T09:31:01.8585062+00:00", + "fileLastModified": "2025-07-14T09:31:01.8585064+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8585066+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8585052+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1603 + }, + "imageDetail": { + "width": 1297, + "height": 5164 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 91117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1603 }" + }, + "fileCreated": "2025-06-21T09:31:01.8600885+00:00", + "fileLastModified": "2025-07-14T09:31:01.8600887+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8600888+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8600876+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1604 + }, + "imageDetail": { + "width": 4972, + "height": 8411 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69556, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1604 }" + }, + "fileCreated": "2025-06-21T09:31:01.8627886+00:00", + "fileLastModified": "2025-07-14T09:31:01.8627889+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.862787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1605 + }, + "imageDetail": { + "width": 1751, + "height": 9837 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53466, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1605 }" + }, + "fileCreated": "2025-06-21T09:31:01.864606+00:00", + "fileLastModified": "2025-07-14T09:31:01.8646062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8646048+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1606 + }, + "imageDetail": { + "width": 8110, + "height": 7631 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1606 }" + }, + "fileCreated": "2025-06-21T09:31:01.8663924+00:00", + "fileLastModified": "2025-07-14T09:31:01.8663929+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8663912+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1607 + }, + "imageDetail": { + "width": 8745, + "height": 4243 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82061, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1607 }" + }, + "fileCreated": "2025-06-21T09:31:01.8681062+00:00", + "fileLastModified": "2025-07-14T09:31:01.8681064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8681052+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1608 + }, + "imageDetail": { + "width": 7433, + "height": 8694 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98558, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1608 }" + }, + "fileCreated": "2025-06-21T09:31:01.8697472+00:00", + "fileLastModified": "2025-07-14T09:31:01.8697474+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8697476+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8697452+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1609 + }, + "imageDetail": { + "width": 5027, + "height": 2571 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21393, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1609 }" + }, + "fileCreated": "2025-06-21T09:31:01.8712998+00:00", + "fileLastModified": "2025-07-14T09:31:01.8712999+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8713+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8712987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1610 + }, + "imageDetail": { + "width": 4301, + "height": 9361 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1610 }" + }, + "fileCreated": "2025-06-21T09:31:01.8728096+00:00", + "fileLastModified": "2025-07-14T09:31:01.8728098+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8728087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1611 + }, + "imageDetail": { + "width": 228, + "height": 6484 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44232, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1611 }" + }, + "fileCreated": "2025-06-21T09:31:01.8742665+00:00", + "fileLastModified": "2025-07-14T09:31:01.8742667+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8742668+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8742651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1612 + }, + "imageDetail": { + "width": 3520, + "height": 7672 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1612 }" + }, + "fileCreated": "2025-06-21T09:31:01.8763693+00:00", + "fileLastModified": "2025-07-14T09:31:01.8763695+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8763682+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1613 + }, + "imageDetail": { + "width": 6378, + "height": 2195 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80027, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1613 }" + }, + "fileCreated": "2025-06-21T09:31:01.8783232+00:00", + "fileLastModified": "2025-07-14T09:31:01.8783235+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8783237+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8783222+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1614 + }, + "imageDetail": { + "width": 7770, + "height": 7295 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72109, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1614 }" + }, + "fileCreated": "2025-06-21T09:31:01.8798472+00:00", + "fileLastModified": "2025-07-14T09:31:01.8798474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8798461+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1615 + }, + "imageDetail": { + "width": 7942, + "height": 8677 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1615 }" + }, + "fileCreated": "2025-06-21T09:31:01.881624+00:00", + "fileLastModified": "2025-07-14T09:31:01.8816242+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8816243+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8816227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1616 + }, + "imageDetail": { + "width": 1818, + "height": 6153 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37255, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1616 }" + }, + "fileCreated": "2025-06-21T09:31:01.8831738+00:00", + "fileLastModified": "2025-07-14T09:31:01.883174+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8831728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1617 + }, + "imageDetail": { + "width": 898, + "height": 9603 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62080, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1617 }" + }, + "fileCreated": "2025-06-21T09:31:01.8846227+00:00", + "fileLastModified": "2025-07-14T09:31:01.8846229+00:00", + "fileLastViewed": "2025-07-14T09:31:01.884623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8846218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1618 + }, + "imageDetail": { + "width": 1747, + "height": 5775 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63794, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1618 }" + }, + "fileCreated": "2025-06-21T09:31:01.8862189+00:00", + "fileLastModified": "2025-07-14T09:31:01.8862191+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8862176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1619 + }, + "imageDetail": { + "width": 272, + "height": 6711 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24904, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1619 }" + }, + "fileCreated": "2025-06-21T09:31:01.8877065+00:00", + "fileLastModified": "2025-07-14T09:31:01.8877067+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8877068+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8877055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1620 + }, + "imageDetail": { + "width": 7415, + "height": 3835 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1620 }" + }, + "fileCreated": "2025-06-21T09:31:01.8897365+00:00", + "fileLastModified": "2025-07-14T09:31:01.8897367+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8897355+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1621 + }, + "imageDetail": { + "width": 4862, + "height": 8820 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45560, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1621 }" + }, + "fileCreated": "2025-06-21T09:31:01.8913067+00:00", + "fileLastModified": "2025-07-14T09:31:01.8913069+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8913058+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1622 + }, + "imageDetail": { + "width": 942, + "height": 7004 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45790, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1622 }" + }, + "fileCreated": "2025-06-21T09:31:01.8935352+00:00", + "fileLastModified": "2025-07-14T09:31:01.8935354+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8935356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8935338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1623 + }, + "imageDetail": { + "width": 4405, + "height": 6985 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80995, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1623 }" + }, + "fileCreated": "2025-06-21T09:31:01.8951485+00:00", + "fileLastModified": "2025-07-14T09:31:01.8951487+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8951488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8951473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1624 + }, + "imageDetail": { + "width": 9216, + "height": 2485 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 97052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1624 }" + }, + "fileCreated": "2025-06-21T09:31:01.8967043+00:00", + "fileLastModified": "2025-07-14T09:31:01.8967045+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8967034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1625 + }, + "imageDetail": { + "width": 9611, + "height": 8019 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1625 }" + }, + "fileCreated": "2025-06-21T09:31:01.8982737+00:00", + "fileLastModified": "2025-07-14T09:31:01.898274+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8982741+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8982727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1626 + }, + "imageDetail": { + "width": 4954, + "height": 6320 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70913, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1626 }" + }, + "fileCreated": "2025-06-21T09:31:01.9000939+00:00", + "fileLastModified": "2025-07-14T09:31:01.9000941+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9000928+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1627 + }, + "imageDetail": { + "width": 5623, + "height": 6203 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47239, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1627 }" + }, + "fileCreated": "2025-06-21T09:31:01.9026945+00:00", + "fileLastModified": "2025-07-14T09:31:01.9026947+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9026934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1628 + }, + "imageDetail": { + "width": 1395, + "height": 2779 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1628 }" + }, + "fileCreated": "2025-06-21T09:31:01.9043022+00:00", + "fileLastModified": "2025-07-14T09:31:01.9043025+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9043026+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.904301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1629 + }, + "imageDetail": { + "width": 5030, + "height": 8967 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50329, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1629 }" + }, + "fileCreated": "2025-06-21T09:31:01.9059961+00:00", + "fileLastModified": "2025-07-14T09:31:01.9059963+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9059948+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1630 + }, + "imageDetail": { + "width": 9824, + "height": 2336 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24517, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1630 }" + }, + "fileCreated": "2025-06-21T09:31:01.9077091+00:00", + "fileLastModified": "2025-07-14T09:31:01.9077094+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9077073+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1631 + }, + "imageDetail": { + "width": 1976, + "height": 2442 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 43639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1631 }" + }, + "fileCreated": "2025-06-21T09:31:01.9094185+00:00", + "fileLastModified": "2025-07-14T09:31:01.9094187+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9094175+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1632 + }, + "imageDetail": { + "width": 9730, + "height": 3698 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22231, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1632 }" + }, + "fileCreated": "2025-06-21T09:31:01.9109743+00:00", + "fileLastModified": "2025-07-14T09:31:01.9109746+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9109747+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9109732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1633 + }, + "imageDetail": { + "width": 960, + "height": 5147 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89055, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1633 }" + }, + "fileCreated": "2025-06-21T09:31:01.912522+00:00", + "fileLastModified": "2025-07-14T09:31:01.9125222+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9125223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.912521+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1634 + }, + "imageDetail": { + "width": 3752, + "height": 6370 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68675, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1634 }" + }, + "fileCreated": "2025-06-21T09:31:01.9150902+00:00", + "fileLastModified": "2025-07-14T09:31:01.9150904+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9150889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1635 + }, + "imageDetail": { + "width": 5588, + "height": 7887 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1635 }" + }, + "fileCreated": "2025-06-21T09:31:01.9167832+00:00", + "fileLastModified": "2025-07-14T09:31:01.9167834+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9167835+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9167821+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1636 + }, + "imageDetail": { + "width": 7091, + "height": 8673 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94493, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1636 }" + }, + "fileCreated": "2025-06-21T09:31:01.9183377+00:00", + "fileLastModified": "2025-07-14T09:31:01.9183379+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9183366+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1637 + }, + "imageDetail": { + "width": 3119, + "height": 6501 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23428, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1637 }" + }, + "fileCreated": "2025-06-21T09:31:01.9199082+00:00", + "fileLastModified": "2025-07-14T09:31:01.9199084+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9199085+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9199072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1638 + }, + "imageDetail": { + "width": 7897, + "height": 7272 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 91758, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1638 }" + }, + "fileCreated": "2025-06-21T09:31:01.9215021+00:00", + "fileLastModified": "2025-07-14T09:31:01.9215023+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9215024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9215014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1639 + }, + "imageDetail": { + "width": 7917, + "height": 3317 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61993, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1639 }" + }, + "fileCreated": "2025-06-21T09:31:01.9231237+00:00", + "fileLastModified": "2025-07-14T09:31:01.9231239+00:00", + "fileLastViewed": "2025-07-14T09:31:01.923124+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.923123+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1640 + }, + "imageDetail": { + "width": 6281, + "height": 4453 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22377, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1640 }" + }, + "fileCreated": "2025-06-21T09:31:01.9253226+00:00", + "fileLastModified": "2025-07-14T09:31:01.9253231+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9253233+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9253217+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1641 + }, + "imageDetail": { + "width": 1337, + "height": 8472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1641 }" + }, + "fileCreated": "2025-06-21T09:31:01.9272941+00:00", + "fileLastModified": "2025-07-14T09:31:01.9272943+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9272944+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9272934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1642 + }, + "imageDetail": { + "width": 3350, + "height": 2331 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82812, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1642 }" + }, + "fileCreated": "2025-06-21T09:31:01.9295305+00:00", + "fileLastModified": "2025-07-14T09:31:01.9295307+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9295295+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1643 + }, + "imageDetail": { + "width": 6182, + "height": 8262 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47998, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1643 }" + }, + "fileCreated": "2025-06-21T09:31:01.9311579+00:00", + "fileLastModified": "2025-07-14T09:31:01.9311581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9311571+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1644 + }, + "imageDetail": { + "width": 7899, + "height": 9394 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23221, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1644 }" + }, + "fileCreated": "2025-06-21T09:31:01.9328194+00:00", + "fileLastModified": "2025-07-14T09:31:01.9328196+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9328187+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1645 + }, + "imageDetail": { + "width": 4930, + "height": 6640 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70861, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1645 }" + }, + "fileCreated": "2025-06-21T09:31:01.9344041+00:00", + "fileLastModified": "2025-07-14T09:31:01.9344043+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9344044+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9344034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1646 + }, + "imageDetail": { + "width": 4892, + "height": 4254 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57013, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1646 }" + }, + "fileCreated": "2025-06-21T09:31:01.9360402+00:00", + "fileLastModified": "2025-07-14T09:31:01.9360405+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9360406+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9360393+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1647 + }, + "imageDetail": { + "width": 8664, + "height": 9632 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66951, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1647 }" + }, + "fileCreated": "2025-06-21T09:31:01.9377088+00:00", + "fileLastModified": "2025-07-14T09:31:01.9377091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9377079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1648 + }, + "imageDetail": { + "width": 7208, + "height": 7023 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1648 }" + }, + "fileCreated": "2025-06-21T09:31:01.9394479+00:00", + "fileLastModified": "2025-07-14T09:31:01.9394482+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9394467+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1649 + }, + "imageDetail": { + "width": 3121, + "height": 3729 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23382, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1649 }" + }, + "fileCreated": "2025-06-21T09:31:01.9426144+00:00", + "fileLastModified": "2025-07-14T09:31:01.9426146+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9426136+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1650 + }, + "imageDetail": { + "width": 9592, + "height": 6027 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71176, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1650 }" + }, + "fileCreated": "2025-06-21T09:31:01.9442443+00:00", + "fileLastModified": "2025-07-14T09:31:01.9442446+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9442447+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9442436+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1651 + }, + "imageDetail": { + "width": 6198, + "height": 4956 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83317, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1651 }" + }, + "fileCreated": "2025-06-21T09:31:01.9458857+00:00", + "fileLastModified": "2025-07-14T09:31:01.9458859+00:00", + "fileLastViewed": "2025-07-14T09:31:01.945886+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9458849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1652 + }, + "imageDetail": { + "width": 6283, + "height": 9581 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25926, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1652 }" + }, + "fileCreated": "2025-06-21T09:31:01.9474589+00:00", + "fileLastModified": "2025-07-14T09:31:01.9474591+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9474581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1653 + }, + "imageDetail": { + "width": 7006, + "height": 8180 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1653 }" + }, + "fileCreated": "2025-06-21T09:31:01.9491774+00:00", + "fileLastModified": "2025-07-14T09:31:01.9491776+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9491777+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9491766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1654 + }, + "imageDetail": { + "width": 2781, + "height": 9774 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1654 }" + }, + "fileCreated": "2025-06-21T09:31:01.9508067+00:00", + "fileLastModified": "2025-07-14T09:31:01.9508069+00:00", + "fileLastViewed": "2025-07-14T09:31:01.950807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9508059+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1655 + }, + "imageDetail": { + "width": 6740, + "height": 8702 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59930, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1655 }" + }, + "fileCreated": "2025-06-21T09:31:01.952367+00:00", + "fileLastModified": "2025-07-14T09:31:01.9523673+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9523673+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9523663+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1656 + }, + "imageDetail": { + "width": 6287, + "height": 3379 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26798, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1656 }" + }, + "fileCreated": "2025-06-21T09:31:01.954632+00:00", + "fileLastModified": "2025-07-14T09:31:01.9546322+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9546312+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1657 + }, + "imageDetail": { + "width": 3539, + "height": 6597 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81912, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1657 }" + }, + "fileCreated": "2025-06-21T09:31:01.9567872+00:00", + "fileLastModified": "2025-07-14T09:31:01.9567878+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9567879+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9567863+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1658 + }, + "imageDetail": { + "width": 424, + "height": 5783 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1658 }" + }, + "fileCreated": "2025-06-21T09:31:01.9583999+00:00", + "fileLastModified": "2025-07-14T09:31:01.9584001+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9584002+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9583991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1659 + }, + "imageDetail": { + "width": 5480, + "height": 8998 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1659 }" + }, + "fileCreated": "2025-06-21T09:31:01.9599806+00:00", + "fileLastModified": "2025-07-14T09:31:01.9599808+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9599797+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1660 + }, + "imageDetail": { + "width": 5134, + "height": 7577 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 41401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1660 }" + }, + "fileCreated": "2025-06-21T09:31:01.9615414+00:00", + "fileLastModified": "2025-07-14T09:31:01.9615416+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9615417+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9615406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1661 + }, + "imageDetail": { + "width": 5433, + "height": 3967 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47218, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1661 }" + }, + "fileCreated": "2025-06-21T09:31:01.9630259+00:00", + "fileLastModified": "2025-07-14T09:31:01.9630261+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9630253+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1662 + }, + "imageDetail": { + "width": 3531, + "height": 5011 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44362, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1662 }" + }, + "fileCreated": "2025-06-21T09:31:01.9645412+00:00", + "fileLastModified": "2025-07-14T09:31:01.9645414+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9645415+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9645406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1663 + }, + "imageDetail": { + "width": 551, + "height": 2289 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83163, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1663 }" + }, + "fileCreated": "2025-06-21T09:31:01.9667654+00:00", + "fileLastModified": "2025-07-14T09:31:01.9667656+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9667657+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9667647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1664 + }, + "imageDetail": { + "width": 2051, + "height": 7240 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73584, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1664 }" + }, + "fileCreated": "2025-06-21T09:31:01.9685161+00:00", + "fileLastModified": "2025-07-14T09:31:01.9685163+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9685164+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9685154+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1665 + }, + "imageDetail": { + "width": 2180, + "height": 4924 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55348, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1665 }" + }, + "fileCreated": "2025-06-21T09:31:01.9707217+00:00", + "fileLastModified": "2025-07-14T09:31:01.9707223+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9707194+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1666 + }, + "imageDetail": { + "width": 8556, + "height": 2822 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 38461, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1666 }" + }, + "fileCreated": "2025-06-21T09:31:01.9735011+00:00", + "fileLastModified": "2025-07-14T09:31:01.9735014+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9735016+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9735001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1667 + }, + "imageDetail": { + "width": 4340, + "height": 8368 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66564, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1667 }" + }, + "fileCreated": "2025-06-21T09:31:01.9752479+00:00", + "fileLastModified": "2025-07-14T09:31:01.9752482+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9752471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1668 + }, + "imageDetail": { + "width": 9421, + "height": 3810 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92206, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1668 }" + }, + "fileCreated": "2025-06-21T09:31:01.9769322+00:00", + "fileLastModified": "2025-07-14T09:31:01.9769324+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9769325+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9769314+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1669 + }, + "imageDetail": { + "width": 4031, + "height": 3614 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86096, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1669 }" + }, + "fileCreated": "2025-06-21T09:31:01.9786467+00:00", + "fileLastModified": "2025-07-14T09:31:01.9786469+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.978646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1670 + }, + "imageDetail": { + "width": 9571, + "height": 4693 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 92817, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1670 }" + }, + "fileCreated": "2025-06-21T09:31:01.9811674+00:00", + "fileLastModified": "2025-07-14T09:31:01.9811676+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9811677+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9811667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1671 + }, + "imageDetail": { + "width": 6438, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31523, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1671 }" + }, + "fileCreated": "2025-06-21T09:31:01.9829065+00:00", + "fileLastModified": "2025-07-14T09:31:01.9829067+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9829068+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9829058+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1672 + }, + "imageDetail": { + "width": 1589, + "height": 6454 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41188, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1672 }" + }, + "fileCreated": "2025-06-21T09:31:01.9846369+00:00", + "fileLastModified": "2025-07-14T09:31:01.9846371+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9846362+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1673 + }, + "imageDetail": { + "width": 418, + "height": 2858 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1673 }" + }, + "fileCreated": "2025-06-21T09:31:01.9868334+00:00", + "fileLastModified": "2025-07-14T09:31:01.9868337+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9868338+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9868325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1674 + }, + "imageDetail": { + "width": 5701, + "height": 2275 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60921, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1674 }" + }, + "fileCreated": "2025-06-21T09:31:01.988601+00:00", + "fileLastModified": "2025-07-14T09:31:01.9886013+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9886013+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9886003+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1675 + }, + "imageDetail": { + "width": 4948, + "height": 9117 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1675 }" + }, + "fileCreated": "2025-06-21T09:31:01.9904033+00:00", + "fileLastModified": "2025-07-14T09:31:01.9904036+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9904027+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1676 + }, + "imageDetail": { + "width": 3012, + "height": 8503 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 72695, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1676 }" + }, + "fileCreated": "2025-06-21T09:31:01.9922012+00:00", + "fileLastModified": "2025-07-14T09:31:01.9922015+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9922015+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9922005+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1677 + }, + "imageDetail": { + "width": 403, + "height": 5671 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90622, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1677 }" + }, + "fileCreated": "2025-06-21T09:31:01.9946241+00:00", + "fileLastModified": "2025-07-14T09:31:01.9946244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9946233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1678 + }, + "imageDetail": { + "width": 4963, + "height": 9873 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42609, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1678 }" + }, + "fileCreated": "2025-06-21T09:31:01.9966578+00:00", + "fileLastModified": "2025-07-14T09:31:01.9966581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9966566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1679 + }, + "imageDetail": { + "width": 357, + "height": 7754 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 39449, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1679 }" + }, + "fileCreated": "2025-06-21T09:31:01.9985122+00:00", + "fileLastModified": "2025-07-14T09:31:01.9985124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9985115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1680 + }, + "imageDetail": { + "width": 9029, + "height": 3935 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1680 }" + }, + "fileCreated": "2025-06-21T09:31:02.0002245+00:00", + "fileLastModified": "2025-07-14T09:31:02.0002248+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0002249+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0002238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1681 + }, + "imageDetail": { + "width": 9555, + "height": 5816 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96839, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1681 }" + }, + "fileCreated": "2025-06-21T09:31:02.0022673+00:00", + "fileLastModified": "2025-07-14T09:31:02.0022675+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0022666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1682 + }, + "imageDetail": { + "width": 7718, + "height": 9725 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1682 }" + }, + "fileCreated": "2025-06-21T09:31:02.0039916+00:00", + "fileLastModified": "2025-07-14T09:31:02.0039918+00:00", + "fileLastViewed": "2025-07-14T09:31:02.003992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0039904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1683 + }, + "imageDetail": { + "width": 4712, + "height": 7517 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35466, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1683 }" + }, + "fileCreated": "2025-06-21T09:31:02.0057232+00:00", + "fileLastModified": "2025-07-14T09:31:02.0057234+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0057235+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0057225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1684 + }, + "imageDetail": { + "width": 6153, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35981, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1684 }" + }, + "fileCreated": "2025-06-21T09:31:02.0079759+00:00", + "fileLastModified": "2025-07-14T09:31:02.0079761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0079751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1685 + }, + "imageDetail": { + "width": 9906, + "height": 5115 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 68424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1685 }" + }, + "fileCreated": "2025-06-21T09:31:02.0096852+00:00", + "fileLastModified": "2025-07-14T09:31:02.0096855+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0096856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0096845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1686 + }, + "imageDetail": { + "width": 4835, + "height": 2367 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64687, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1686 }" + }, + "fileCreated": "2025-06-21T09:31:02.011478+00:00", + "fileLastModified": "2025-07-14T09:31:02.0114782+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0114769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1687 + }, + "imageDetail": { + "width": 470, + "height": 7869 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 60564, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1687 }" + }, + "fileCreated": "2025-06-21T09:31:02.0131393+00:00", + "fileLastModified": "2025-07-14T09:31:02.0131395+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0131396+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0131385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1688 + }, + "imageDetail": { + "width": 8367, + "height": 4566 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55439, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1688 }" + }, + "fileCreated": "2025-06-21T09:31:02.0151004+00:00", + "fileLastModified": "2025-07-14T09:31:02.0151007+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0151008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0150996+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1689 + }, + "imageDetail": { + "width": 3532, + "height": 3623 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93362, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1689 }" + }, + "fileCreated": "2025-06-21T09:31:02.0169737+00:00", + "fileLastModified": "2025-07-14T09:31:02.0169741+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0169727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1690 + }, + "imageDetail": { + "width": 402, + "height": 9309 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1690 }" + }, + "fileCreated": "2025-06-21T09:31:02.0187497+00:00", + "fileLastModified": "2025-07-14T09:31:02.0187499+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0187489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1691 + }, + "imageDetail": { + "width": 574, + "height": 3461 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25012, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1691 }" + }, + "fileCreated": "2025-06-21T09:31:02.0210711+00:00", + "fileLastModified": "2025-07-14T09:31:02.0210713+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0210704+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1692 + }, + "imageDetail": { + "width": 8512, + "height": 6771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31842, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1692 }" + }, + "fileCreated": "2025-06-21T09:31:02.0227531+00:00", + "fileLastModified": "2025-07-14T09:31:02.0227534+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0227524+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1693 + }, + "imageDetail": { + "width": 4387, + "height": 9092 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82787, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1693 }" + }, + "fileCreated": "2025-06-21T09:31:02.0243569+00:00", + "fileLastModified": "2025-07-14T09:31:02.0243571+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0243562+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1694 + }, + "imageDetail": { + "width": 3905, + "height": 8099 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29967, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1694 }" + }, + "fileCreated": "2025-06-21T09:31:02.0259793+00:00", + "fileLastModified": "2025-07-14T09:31:02.0259795+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0259796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0259787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1695 + }, + "imageDetail": { + "width": 811, + "height": 6883 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1695 }" + }, + "fileCreated": "2025-06-21T09:31:02.02777+00:00", + "fileLastModified": "2025-07-14T09:31:02.0277702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0277693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1696 + }, + "imageDetail": { + "width": 1180, + "height": 6682 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83851, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1696 }" + }, + "fileCreated": "2025-06-21T09:31:02.0294964+00:00", + "fileLastModified": "2025-07-14T09:31:02.0294966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0294861+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1697 + }, + "imageDetail": { + "width": 8824, + "height": 5123 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65127, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1697 }" + }, + "fileCreated": "2025-06-21T09:31:02.0317796+00:00", + "fileLastModified": "2025-07-14T09:31:02.0317799+00:00", + "fileLastViewed": "2025-07-14T09:31:02.03178+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0317789+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1698 + }, + "imageDetail": { + "width": 2945, + "height": 5439 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 27215, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1698 }" + }, + "fileCreated": "2025-06-21T09:31:02.0338576+00:00", + "fileLastModified": "2025-07-14T09:31:02.0338578+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0338568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1699 + }, + "imageDetail": { + "width": 6314, + "height": 7614 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38830, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1699 }" + }, + "fileCreated": "2025-06-21T09:31:02.0358671+00:00", + "fileLastModified": "2025-07-14T09:31:02.0358673+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0358674+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0358659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1700 + }, + "imageDetail": { + "width": 2757, + "height": 8763 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1700 }" + }, + "fileCreated": "2025-06-21T09:31:02.0376964+00:00", + "fileLastModified": "2025-07-14T09:31:02.0376966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0376952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1701 + }, + "imageDetail": { + "width": 6533, + "height": 4426 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30797, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1701 }" + }, + "fileCreated": "2025-06-21T09:31:02.0393248+00:00", + "fileLastModified": "2025-07-14T09:31:02.0393251+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0393252+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0393242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1702 + }, + "imageDetail": { + "width": 3668, + "height": 7226 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1702 }" + }, + "fileCreated": "2025-06-21T09:31:02.0412451+00:00", + "fileLastModified": "2025-07-14T09:31:02.0412453+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0412454+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.041244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1703 + }, + "imageDetail": { + "width": 6553, + "height": 5192 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53956, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1703 }" + }, + "fileCreated": "2025-06-21T09:31:02.042894+00:00", + "fileLastModified": "2025-07-14T09:31:02.0428942+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0428943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0428933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1704 + }, + "imageDetail": { + "width": 9751, + "height": 8172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44575, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1704 }" + }, + "fileCreated": "2025-06-21T09:31:02.0450682+00:00", + "fileLastModified": "2025-07-14T09:31:02.0450684+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0450675+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1705 + }, + "imageDetail": { + "width": 4789, + "height": 8257 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58334, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1705 }" + }, + "fileCreated": "2025-06-21T09:31:02.0465844+00:00", + "fileLastModified": "2025-07-14T09:31:02.0465846+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0465846+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0465836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1706 + }, + "imageDetail": { + "width": 8437, + "height": 7583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 74715, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1706 }" + }, + "fileCreated": "2025-06-21T09:31:02.0486247+00:00", + "fileLastModified": "2025-07-14T09:31:02.0486249+00:00", + "fileLastViewed": "2025-07-14T09:31:02.048625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0486237+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1707 + }, + "imageDetail": { + "width": 5964, + "height": 7564 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96587, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1707 }" + }, + "fileCreated": "2025-06-21T09:31:02.0504057+00:00", + "fileLastModified": "2025-07-14T09:31:02.0504061+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0504062+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0504049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1708 + }, + "imageDetail": { + "width": 9990, + "height": 3982 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96328, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1708 }" + }, + "fileCreated": "2025-06-21T09:31:02.0522648+00:00", + "fileLastModified": "2025-07-14T09:31:02.052265+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.052264+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1709 + }, + "imageDetail": { + "width": 3929, + "height": 3724 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59480, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1709 }" + }, + "fileCreated": "2025-06-21T09:31:02.0541338+00:00", + "fileLastModified": "2025-07-14T09:31:02.054134+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0541327+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1710 + }, + "imageDetail": { + "width": 4800, + "height": 8254 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87421, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1710 }" + }, + "fileCreated": "2025-06-21T09:31:02.0567502+00:00", + "fileLastModified": "2025-07-14T09:31:02.0567504+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0567495+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1711 + }, + "imageDetail": { + "width": 5055, + "height": 5996 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89837, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1711 }" + }, + "fileCreated": "2025-06-21T09:31:02.0585671+00:00", + "fileLastModified": "2025-07-14T09:31:02.0585673+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0585674+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0585662+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1712 + }, + "imageDetail": { + "width": 4275, + "height": 9200 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1712 }" + }, + "fileCreated": "2025-06-21T09:31:02.0603531+00:00", + "fileLastModified": "2025-07-14T09:31:02.0603533+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0603534+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0603523+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1713 + }, + "imageDetail": { + "width": 8214, + "height": 5802 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61477, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1713 }" + }, + "fileCreated": "2025-06-21T09:31:02.0620058+00:00", + "fileLastModified": "2025-07-14T09:31:02.062006+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0620051+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1714 + }, + "imageDetail": { + "width": 5319, + "height": 8814 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54620, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1714 }" + }, + "fileCreated": "2025-06-21T09:31:02.0640685+00:00", + "fileLastModified": "2025-07-14T09:31:02.0640687+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0640661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1715 + }, + "imageDetail": { + "width": 6312, + "height": 4092 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75201, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1715 }" + }, + "fileCreated": "2025-06-21T09:31:02.065843+00:00", + "fileLastModified": "2025-07-14T09:31:02.0658432+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0658433+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0658423+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1716 + }, + "imageDetail": { + "width": 6670, + "height": 9986 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 41463, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1716 }" + }, + "fileCreated": "2025-06-21T09:31:02.0676807+00:00", + "fileLastModified": "2025-07-14T09:31:02.0676809+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0676799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1717 + }, + "imageDetail": { + "width": 1820, + "height": 6339 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71693, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1717 }" + }, + "fileCreated": "2025-06-21T09:31:02.0702091+00:00", + "fileLastModified": "2025-07-14T09:31:02.0702093+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0702084+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1718 + }, + "imageDetail": { + "width": 597, + "height": 6123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1718 }" + }, + "fileCreated": "2025-06-21T09:31:02.071801+00:00", + "fileLastModified": "2025-07-14T09:31:02.0718013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0718004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1719 + }, + "imageDetail": { + "width": 8424, + "height": 4980 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74023, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1719 }" + }, + "fileCreated": "2025-06-21T09:31:02.073513+00:00", + "fileLastModified": "2025-07-14T09:31:02.0735133+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0735134+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0735124+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1720 + }, + "imageDetail": { + "width": 3084, + "height": 7999 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 66684, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1720 }" + }, + "fileCreated": "2025-06-21T09:31:02.0752192+00:00", + "fileLastModified": "2025-07-14T09:31:02.0752195+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0752196+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0752185+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1721 + }, + "imageDetail": { + "width": 8527, + "height": 5969 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23790, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1721 }" + }, + "fileCreated": "2025-06-21T09:31:02.076888+00:00", + "fileLastModified": "2025-07-14T09:31:02.0768882+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0768883+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0768874+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1722 + }, + "imageDetail": { + "width": 4242, + "height": 6154 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 52527, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1722 }" + }, + "fileCreated": "2025-06-21T09:31:02.0784114+00:00", + "fileLastModified": "2025-07-14T09:31:02.0784116+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0784117+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0784107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1723 + }, + "imageDetail": { + "width": 4854, + "height": 9512 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 46176, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1723 }" + }, + "fileCreated": "2025-06-21T09:31:02.0801206+00:00", + "fileLastModified": "2025-07-14T09:31:02.0801208+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0801209+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0801199+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1724 + }, + "imageDetail": { + "width": 7041, + "height": 9445 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45268, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1724 }" + }, + "fileCreated": "2025-06-21T09:31:02.0822856+00:00", + "fileLastModified": "2025-07-14T09:31:02.0822858+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0822847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1725 + }, + "imageDetail": { + "width": 3915, + "height": 3767 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67516, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1725 }" + }, + "fileCreated": "2025-06-21T09:31:02.0839364+00:00", + "fileLastModified": "2025-07-14T09:31:02.0839366+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0839357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1726 + }, + "imageDetail": { + "width": 792, + "height": 4358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96356, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1726 }" + }, + "fileCreated": "2025-06-21T09:31:02.0855623+00:00", + "fileLastModified": "2025-07-14T09:31:02.0855625+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0855616+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1727 + }, + "imageDetail": { + "width": 1581, + "height": 3729 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41542, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1727 }" + }, + "fileCreated": "2025-06-21T09:31:02.0871266+00:00", + "fileLastModified": "2025-07-14T09:31:02.0871268+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0871268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0871259+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1728 + }, + "imageDetail": { + "width": 2497, + "height": 5384 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86506, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1728 }" + }, + "fileCreated": "2025-06-21T09:31:02.0886985+00:00", + "fileLastModified": "2025-07-14T09:31:02.0886987+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0886988+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0886978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1729 + }, + "imageDetail": { + "width": 3648, + "height": 7813 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90827, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1729 }" + }, + "fileCreated": "2025-06-21T09:31:02.0902311+00:00", + "fileLastModified": "2025-07-14T09:31:02.0902313+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0902314+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0902304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1730 + }, + "imageDetail": { + "width": 5501, + "height": 9596 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56045, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1730 }" + }, + "fileCreated": "2025-06-21T09:31:02.0923797+00:00", + "fileLastModified": "2025-07-14T09:31:02.0923799+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0923789+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1731 + }, + "imageDetail": { + "width": 5086, + "height": 6197 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49800, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1731 }" + }, + "fileCreated": "2025-06-21T09:31:02.093959+00:00", + "fileLastModified": "2025-07-14T09:31:02.0939592+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0939583+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1732 + }, + "imageDetail": { + "width": 1624, + "height": 5050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45751, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1732 }" + }, + "fileCreated": "2025-06-21T09:31:02.0962394+00:00", + "fileLastModified": "2025-07-14T09:31:02.0962397+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0962399+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0962385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1733 + }, + "imageDetail": { + "width": 7020, + "height": 2391 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54128, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1733 }" + }, + "fileCreated": "2025-06-21T09:31:02.0980559+00:00", + "fileLastModified": "2025-07-14T09:31:02.0980562+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.098055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1734 + }, + "imageDetail": { + "width": 3877, + "height": 9819 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 69886, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1734 }" + }, + "fileCreated": "2025-06-21T09:31:02.0997251+00:00", + "fileLastModified": "2025-07-14T09:31:02.0997253+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0997254+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0997243+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1735 + }, + "imageDetail": { + "width": 8677, + "height": 5132 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1735 }" + }, + "fileCreated": "2025-06-21T09:31:02.1012752+00:00", + "fileLastModified": "2025-07-14T09:31:02.1012755+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1012746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1736 + }, + "imageDetail": { + "width": 2466, + "height": 5340 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62170, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1736 }" + }, + "fileCreated": "2025-06-21T09:31:02.1034809+00:00", + "fileLastModified": "2025-07-14T09:31:02.1034811+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1034803+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1737 + }, + "imageDetail": { + "width": 4105, + "height": 8974 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59320, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1737 }" + }, + "fileCreated": "2025-06-21T09:31:02.1050588+00:00", + "fileLastModified": "2025-07-14T09:31:02.105059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1050581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1738 + }, + "imageDetail": { + "width": 5792, + "height": 3494 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81316, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1738 }" + }, + "fileCreated": "2025-06-21T09:31:02.1067312+00:00", + "fileLastModified": "2025-07-14T09:31:02.1067314+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1067315+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1067304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1739 + }, + "imageDetail": { + "width": 9049, + "height": 3418 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83296, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1739 }" + }, + "fileCreated": "2025-06-21T09:31:02.1086238+00:00", + "fileLastModified": "2025-07-14T09:31:02.108624+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1086231+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1740 + }, + "imageDetail": { + "width": 4371, + "height": 2671 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84116, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1740 }" + }, + "fileCreated": "2025-06-21T09:31:02.1104+00:00", + "fileLastModified": "2025-07-14T09:31:02.1104003+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1103989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1741 + }, + "imageDetail": { + "width": 5722, + "height": 8924 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37878, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1741 }" + }, + "fileCreated": "2025-06-21T09:31:02.1122985+00:00", + "fileLastModified": "2025-07-14T09:31:02.1122988+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1122978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1742 + }, + "imageDetail": { + "width": 6229, + "height": 5605 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1742 }" + }, + "fileCreated": "2025-06-21T09:31:02.114024+00:00", + "fileLastModified": "2025-07-14T09:31:02.1140243+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1140244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1140234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1743 + }, + "imageDetail": { + "width": 615, + "height": 7072 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87820, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1743 }" + }, + "fileCreated": "2025-06-21T09:31:02.1162766+00:00", + "fileLastModified": "2025-07-14T09:31:02.1162783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1162759+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1744 + }, + "imageDetail": { + "width": 4190, + "height": 3914 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1744 }" + }, + "fileCreated": "2025-06-21T09:31:02.1181122+00:00", + "fileLastModified": "2025-07-14T09:31:02.1181124+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1181125+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1181115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1745 + }, + "imageDetail": { + "width": 9098, + "height": 7101 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 68229, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1745 }" + }, + "fileCreated": "2025-06-21T09:31:02.1198348+00:00", + "fileLastModified": "2025-07-14T09:31:02.1198351+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1198341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1746 + }, + "imageDetail": { + "width": 6917, + "height": 5984 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44739, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1746 }" + }, + "fileCreated": "2025-06-21T09:31:02.1214382+00:00", + "fileLastModified": "2025-07-14T09:31:02.1214384+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1214374+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1747 + }, + "imageDetail": { + "width": 8281, + "height": 8617 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59153, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1747 }" + }, + "fileCreated": "2025-06-21T09:31:02.1230621+00:00", + "fileLastModified": "2025-07-14T09:31:02.1230623+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1230624+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1230614+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1748 + }, + "imageDetail": { + "width": 1505, + "height": 5530 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21854, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1748 }" + }, + "fileCreated": "2025-06-21T09:31:02.1246278+00:00", + "fileLastModified": "2025-07-14T09:31:02.124628+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1246281+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1246271+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1749 + }, + "imageDetail": { + "width": 4349, + "height": 8135 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47167, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1749 }" + }, + "fileCreated": "2025-06-21T09:31:02.1276543+00:00", + "fileLastModified": "2025-07-14T09:31:02.1276546+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1276534+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1750 + }, + "imageDetail": { + "width": 1918, + "height": 5293 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 60887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1750 }" + }, + "fileCreated": "2025-06-21T09:31:02.1297099+00:00", + "fileLastModified": "2025-07-14T09:31:02.1297101+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1297102+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.129709+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1751 + }, + "imageDetail": { + "width": 9790, + "height": 9305 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32359, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1751 }" + }, + "fileCreated": "2025-06-21T09:31:02.1314627+00:00", + "fileLastModified": "2025-07-14T09:31:02.1314629+00:00", + "fileLastViewed": "2025-07-14T09:31:02.131463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1314617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1752 + }, + "imageDetail": { + "width": 9347, + "height": 2444 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92235, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1752 }" + }, + "fileCreated": "2025-06-21T09:31:02.1331779+00:00", + "fileLastModified": "2025-07-14T09:31:02.1331782+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1331783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1331769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1753 + }, + "imageDetail": { + "width": 2673, + "height": 2189 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86049, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1753 }" + }, + "fileCreated": "2025-06-21T09:31:02.134787+00:00", + "fileLastModified": "2025-07-14T09:31:02.1347873+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1347864+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1754 + }, + "imageDetail": { + "width": 9341, + "height": 7846 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1754 }" + }, + "fileCreated": "2025-06-21T09:31:02.1364973+00:00", + "fileLastModified": "2025-07-14T09:31:02.1364975+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1364976+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1364966+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1755 + }, + "imageDetail": { + "width": 1897, + "height": 5466 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54487, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1755 }" + }, + "fileCreated": "2025-06-21T09:31:02.1388493+00:00", + "fileLastModified": "2025-07-14T09:31:02.1388495+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1388484+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1756 + }, + "imageDetail": { + "width": 5798, + "height": 7848 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 52753, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1756 }" + }, + "fileCreated": "2025-06-21T09:31:02.1405476+00:00", + "fileLastModified": "2025-07-14T09:31:02.1405478+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1405479+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1405468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1757 + }, + "imageDetail": { + "width": 490, + "height": 5576 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 88399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1757 }" + }, + "fileCreated": "2025-06-21T09:31:02.14342+00:00", + "fileLastModified": "2025-07-14T09:31:02.1434204+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1434178+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1758 + }, + "imageDetail": { + "width": 7479, + "height": 5790 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45249, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1758 }" + }, + "fileCreated": "2025-06-21T09:31:02.1459963+00:00", + "fileLastModified": "2025-07-14T09:31:02.1459968+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1459945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1759 + }, + "imageDetail": { + "width": 6065, + "height": 5423 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94829, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1759 }" + }, + "fileCreated": "2025-06-21T09:31:02.1492174+00:00", + "fileLastModified": "2025-07-14T09:31:02.1492176+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.149216+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1760 + }, + "imageDetail": { + "width": 9077, + "height": 4761 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64816, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1760 }" + }, + "fileCreated": "2025-06-21T09:31:02.1520698+00:00", + "fileLastModified": "2025-07-14T09:31:02.1520702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1520679+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1761 + }, + "imageDetail": { + "width": 5778, + "height": 6981 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24487, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1761 }" + }, + "fileCreated": "2025-06-21T09:31:02.15569+00:00", + "fileLastModified": "2025-07-14T09:31:02.1556904+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1556883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1762 + }, + "imageDetail": { + "width": 919, + "height": 2877 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57224, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1762 }" + }, + "fileCreated": "2025-06-21T09:31:02.1589063+00:00", + "fileLastModified": "2025-07-14T09:31:02.1589068+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1589071+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1589046+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1763 + }, + "imageDetail": { + "width": 7924, + "height": 3098 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1763 }" + }, + "fileCreated": "2025-06-21T09:31:02.1623117+00:00", + "fileLastModified": "2025-07-14T09:31:02.162312+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1623107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1764 + }, + "imageDetail": { + "width": 1192, + "height": 8747 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35893, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1764 }" + }, + "fileCreated": "2025-06-21T09:31:02.1646189+00:00", + "fileLastModified": "2025-07-14T09:31:02.1646192+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1646178+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1765 + }, + "imageDetail": { + "width": 6899, + "height": 5852 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1765 }" + }, + "fileCreated": "2025-06-21T09:31:02.1674932+00:00", + "fileLastModified": "2025-07-14T09:31:02.1674936+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1674938+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1674911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1766 + }, + "imageDetail": { + "width": 8952, + "height": 7183 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1766 }" + }, + "fileCreated": "2025-06-21T09:31:02.1701362+00:00", + "fileLastModified": "2025-07-14T09:31:02.1701368+00:00", + "fileLastViewed": "2025-07-14T09:31:02.170137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1701348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1767 + }, + "imageDetail": { + "width": 1677, + "height": 8520 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98048, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1767 }" + }, + "fileCreated": "2025-06-21T09:31:02.1734996+00:00", + "fileLastModified": "2025-07-14T09:31:02.1734999+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1734987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1768 + }, + "imageDetail": { + "width": 785, + "height": 3370 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92363, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1768 }" + }, + "fileCreated": "2025-06-21T09:31:02.1753423+00:00", + "fileLastModified": "2025-07-14T09:31:02.1753426+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1753427+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1753414+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1769 + }, + "imageDetail": { + "width": 8866, + "height": 2900 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95486, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1769 }" + }, + "fileCreated": "2025-06-21T09:31:02.177331+00:00", + "fileLastModified": "2025-07-14T09:31:02.1773312+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1773302+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1770 + }, + "imageDetail": { + "width": 7120, + "height": 3433 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94364, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1770 }" + }, + "fileCreated": "2025-06-21T09:31:02.1792511+00:00", + "fileLastModified": "2025-07-14T09:31:02.1792514+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1792515+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1792503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1771 + }, + "imageDetail": { + "width": 4684, + "height": 7744 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1771 }" + }, + "fileCreated": "2025-06-21T09:31:02.181209+00:00", + "fileLastModified": "2025-07-14T09:31:02.1812092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1812081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1772 + }, + "imageDetail": { + "width": 158, + "height": 4660 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21359, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1772 }" + }, + "fileCreated": "2025-06-21T09:31:02.1830754+00:00", + "fileLastModified": "2025-07-14T09:31:02.1830756+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1830757+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1830746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1773 + }, + "imageDetail": { + "width": 7905, + "height": 7530 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47153, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1773 }" + }, + "fileCreated": "2025-06-21T09:31:02.1848733+00:00", + "fileLastModified": "2025-07-14T09:31:02.1848735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1848726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1774 + }, + "imageDetail": { + "width": 9700, + "height": 3404 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60078, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1774 }" + }, + "fileCreated": "2025-06-21T09:31:02.1870258+00:00", + "fileLastModified": "2025-07-14T09:31:02.187026+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.187025+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1775 + }, + "imageDetail": { + "width": 1013, + "height": 3556 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1775 }" + }, + "fileCreated": "2025-06-21T09:31:02.18904+00:00", + "fileLastModified": "2025-07-14T09:31:02.1890402+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1890388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1776 + }, + "imageDetail": { + "width": 1089, + "height": 9375 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1776 }" + }, + "fileCreated": "2025-06-21T09:31:02.1909961+00:00", + "fileLastModified": "2025-07-14T09:31:02.1909964+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1909952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1777 + }, + "imageDetail": { + "width": 3933, + "height": 4895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42966, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1777 }" + }, + "fileCreated": "2025-06-21T09:31:02.1929744+00:00", + "fileLastModified": "2025-07-14T09:31:02.1929748+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1929749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1929738+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1778 + }, + "imageDetail": { + "width": 5989, + "height": 8146 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41248, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1778 }" + }, + "fileCreated": "2025-06-21T09:31:02.194812+00:00", + "fileLastModified": "2025-07-14T09:31:02.1948122+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1948123+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1948112+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1779 + }, + "imageDetail": { + "width": 9004, + "height": 6745 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54148, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1779 }" + }, + "fileCreated": "2025-06-21T09:31:02.1966055+00:00", + "fileLastModified": "2025-07-14T09:31:02.1966057+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1966058+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1966034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1780 + }, + "imageDetail": { + "width": 5405, + "height": 4833 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50383, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1780 }" + }, + "fileCreated": "2025-06-21T09:31:02.1993291+00:00", + "fileLastModified": "2025-07-14T09:31:02.1993294+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1993295+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1993284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1781 + }, + "imageDetail": { + "width": 8384, + "height": 5336 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29142, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1781 }" + }, + "fileCreated": "2025-06-21T09:31:02.2011179+00:00", + "fileLastModified": "2025-07-14T09:31:02.2011181+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2011182+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2011171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1782 + }, + "imageDetail": { + "width": 8344, + "height": 6728 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91340, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1782 }" + }, + "fileCreated": "2025-06-21T09:31:02.2029037+00:00", + "fileLastModified": "2025-07-14T09:31:02.202904+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2029041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2028816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1783 + }, + "imageDetail": { + "width": 1874, + "height": 6904 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28136, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1783 }" + }, + "fileCreated": "2025-06-21T09:31:02.2052028+00:00", + "fileLastModified": "2025-07-14T09:31:02.2052031+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2052033+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.205202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1784 + }, + "imageDetail": { + "width": 7891, + "height": 5803 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32818, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1784 }" + }, + "fileCreated": "2025-06-21T09:31:02.2070777+00:00", + "fileLastModified": "2025-07-14T09:31:02.207078+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2070769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1785 + }, + "imageDetail": { + "width": 3986, + "height": 8564 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29397, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1785 }" + }, + "fileCreated": "2025-06-21T09:31:02.2088166+00:00", + "fileLastModified": "2025-07-14T09:31:02.2088168+00:00", + "fileLastViewed": "2025-07-14T09:31:02.208817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.208816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1786 + }, + "imageDetail": { + "width": 2489, + "height": 3044 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1786 }" + }, + "fileCreated": "2025-06-21T09:31:02.2110792+00:00", + "fileLastModified": "2025-07-14T09:31:02.2110795+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2110796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2110784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1787 + }, + "imageDetail": { + "width": 5809, + "height": 3339 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42673, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1787 }" + }, + "fileCreated": "2025-06-21T09:31:02.2128496+00:00", + "fileLastModified": "2025-07-14T09:31:02.2128498+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2128499+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.212849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1788 + }, + "imageDetail": { + "width": 2175, + "height": 7790 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60127, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1788 }" + }, + "fileCreated": "2025-06-21T09:31:02.2148505+00:00", + "fileLastModified": "2025-07-14T09:31:02.2148507+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2148508+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2148498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1789 + }, + "imageDetail": { + "width": 134, + "height": 5647 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33295, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1789 }" + }, + "fileCreated": "2025-06-21T09:31:02.21664+00:00", + "fileLastModified": "2025-07-14T09:31:02.2166402+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2166403+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2166392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1790 + }, + "imageDetail": { + "width": 6846, + "height": 4993 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1790 }" + }, + "fileCreated": "2025-06-21T09:31:02.2184088+00:00", + "fileLastModified": "2025-07-14T09:31:02.218409+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2184091+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.218408+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1791 + }, + "imageDetail": { + "width": 9777, + "height": 5089 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74769, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1791 }" + }, + "fileCreated": "2025-06-21T09:31:02.2208392+00:00", + "fileLastModified": "2025-07-14T09:31:02.2208395+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2208383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1792 + }, + "imageDetail": { + "width": 8629, + "height": 5043 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1792 }" + }, + "fileCreated": "2025-06-21T09:31:02.2225952+00:00", + "fileLastModified": "2025-07-14T09:31:02.2225955+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2225956+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2225945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1793 + }, + "imageDetail": { + "width": 8266, + "height": 4043 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21662, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1793 }" + }, + "fileCreated": "2025-06-21T09:31:02.2244118+00:00", + "fileLastModified": "2025-07-14T09:31:02.224412+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2244121+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.224411+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1794 + }, + "imageDetail": { + "width": 6559, + "height": 7213 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76021, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1794 }" + }, + "fileCreated": "2025-06-21T09:31:02.2261262+00:00", + "fileLastModified": "2025-07-14T09:31:02.2261265+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2261255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1795 + }, + "imageDetail": { + "width": 4998, + "height": 8761 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64812, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1795 }" + }, + "fileCreated": "2025-06-21T09:31:02.2278753+00:00", + "fileLastModified": "2025-07-14T09:31:02.2278755+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2278756+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2278746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1796 + }, + "imageDetail": { + "width": 2092, + "height": 7774 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1796 }" + }, + "fileCreated": "2025-06-21T09:31:02.2297343+00:00", + "fileLastModified": "2025-07-14T09:31:02.2297345+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2297334+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1797 + }, + "imageDetail": { + "width": 5966, + "height": 7771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24958, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1797 }" + }, + "fileCreated": "2025-06-21T09:31:02.231912+00:00", + "fileLastModified": "2025-07-14T09:31:02.2319122+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2319123+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2319112+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1798 + }, + "imageDetail": { + "width": 6343, + "height": 4787 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73087, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1798 }" + }, + "fileCreated": "2025-06-21T09:31:02.2335964+00:00", + "fileLastModified": "2025-07-14T09:31:02.2335966+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2335967+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2335957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1799 + }, + "imageDetail": { + "width": 7149, + "height": 5499 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 57731, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1799 }" + }, + "fileCreated": "2025-06-21T09:31:02.235429+00:00", + "fileLastModified": "2025-07-14T09:31:02.2354292+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2354293+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2354281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1800 + }, + "imageDetail": { + "width": 5018, + "height": 8986 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53777, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1800 }" + }, + "fileCreated": "2025-06-21T09:31:02.2374249+00:00", + "fileLastModified": "2025-07-14T09:31:02.2374251+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2374253+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2374241+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1801 + }, + "imageDetail": { + "width": 167, + "height": 2942 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92785, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1801 }" + }, + "fileCreated": "2025-06-21T09:31:02.2392848+00:00", + "fileLastModified": "2025-07-14T09:31:02.239285+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.239284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1802 + }, + "imageDetail": { + "width": 2089, + "height": 4292 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54199, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1802 }" + }, + "fileCreated": "2025-06-21T09:31:02.2412105+00:00", + "fileLastModified": "2025-07-14T09:31:02.2412107+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2412094+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1803 + }, + "imageDetail": { + "width": 8369, + "height": 4082 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1803 }" + }, + "fileCreated": "2025-06-21T09:31:02.2433612+00:00", + "fileLastModified": "2025-07-14T09:31:02.2433615+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2433605+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1804 + }, + "imageDetail": { + "width": 7762, + "height": 8634 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80883, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1804 }" + }, + "fileCreated": "2025-06-21T09:31:02.2454738+00:00", + "fileLastModified": "2025-07-14T09:31:02.2454741+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2454731+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1805 + }, + "imageDetail": { + "width": 2477, + "height": 4877 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87842, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1805 }" + }, + "fileCreated": "2025-06-21T09:31:02.2472879+00:00", + "fileLastModified": "2025-07-14T09:31:02.2472881+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2472882+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2472871+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1806 + }, + "imageDetail": { + "width": 7754, + "height": 4018 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45345, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1806 }" + }, + "fileCreated": "2025-06-21T09:31:02.2490595+00:00", + "fileLastModified": "2025-07-14T09:31:02.2490597+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2490598+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2490587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1807 + }, + "imageDetail": { + "width": 5038, + "height": 5717 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44122, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1807 }" + }, + "fileCreated": "2025-06-21T09:31:02.251125+00:00", + "fileLastModified": "2025-07-14T09:31:02.2511252+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2511254+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2511241+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1808 + }, + "imageDetail": { + "width": 3171, + "height": 4970 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1808 }" + }, + "fileCreated": "2025-06-21T09:31:02.2531111+00:00", + "fileLastModified": "2025-07-14T09:31:02.2531118+00:00", + "fileLastViewed": "2025-07-14T09:31:02.253112+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2531102+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1809 + }, + "imageDetail": { + "width": 5063, + "height": 7878 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82905, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1809 }" + }, + "fileCreated": "2025-06-21T09:31:02.2556697+00:00", + "fileLastModified": "2025-07-14T09:31:02.25567+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2556701+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2556689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1810 + }, + "imageDetail": { + "width": 4969, + "height": 2733 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57845, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1810 }" + }, + "fileCreated": "2025-06-21T09:31:02.2575622+00:00", + "fileLastModified": "2025-07-14T09:31:02.2575625+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2575626+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2575614+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1811 + }, + "imageDetail": { + "width": 7000, + "height": 4211 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76467, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1811 }" + }, + "fileCreated": "2025-06-21T09:31:02.2594001+00:00", + "fileLastModified": "2025-07-14T09:31:02.2594004+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2593993+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1812 + }, + "imageDetail": { + "width": 4976, + "height": 9788 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40670, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1812 }" + }, + "fileCreated": "2025-06-21T09:31:02.2612188+00:00", + "fileLastModified": "2025-07-14T09:31:02.2612191+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2612181+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1813 + }, + "imageDetail": { + "width": 1135, + "height": 5409 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53100, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1813 }" + }, + "fileCreated": "2025-06-21T09:31:02.2630552+00:00", + "fileLastModified": "2025-07-14T09:31:02.2630557+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2630558+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2630544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1814 + }, + "imageDetail": { + "width": 9143, + "height": 2331 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 79066, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1814 }" + }, + "fileCreated": "2025-06-21T09:31:02.264925+00:00", + "fileLastModified": "2025-07-14T09:31:02.2649253+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2649254+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2649242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1815 + }, + "imageDetail": { + "width": 7031, + "height": 3622 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63979, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1815 }" + }, + "fileCreated": "2025-06-21T09:31:02.2677+00:00", + "fileLastModified": "2025-07-14T09:31:02.2677003+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2677004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2676992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1816 + }, + "imageDetail": { + "width": 6309, + "height": 2610 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38074, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1816 }" + }, + "fileCreated": "2025-06-21T09:31:02.2695491+00:00", + "fileLastModified": "2025-07-14T09:31:02.2695495+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2695496+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2695482+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1817 + }, + "imageDetail": { + "width": 7534, + "height": 3990 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1817 }" + }, + "fileCreated": "2025-06-21T09:31:02.2715009+00:00", + "fileLastModified": "2025-07-14T09:31:02.2715012+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2715013+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2715001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1818 + }, + "imageDetail": { + "width": 7055, + "height": 9627 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 21544, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1818 }" + }, + "fileCreated": "2025-06-21T09:31:02.2736515+00:00", + "fileLastModified": "2025-07-14T09:31:02.2736517+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2736518+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2736506+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1819 + }, + "imageDetail": { + "width": 7790, + "height": 9897 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43399, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1819 }" + }, + "fileCreated": "2025-06-21T09:31:02.275631+00:00", + "fileLastModified": "2025-07-14T09:31:02.2756312+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2756301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1820 + }, + "imageDetail": { + "width": 7628, + "height": 9611 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1820 }" + }, + "fileCreated": "2025-06-21T09:31:02.2775845+00:00", + "fileLastModified": "2025-07-14T09:31:02.2775847+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2775848+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2775837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1821 + }, + "imageDetail": { + "width": 7732, + "height": 5932 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1821 }" + }, + "fileCreated": "2025-06-21T09:31:02.2799821+00:00", + "fileLastModified": "2025-07-14T09:31:02.2799823+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2799811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1822 + }, + "imageDetail": { + "width": 2295, + "height": 3887 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1822 }" + }, + "fileCreated": "2025-06-21T09:31:02.282471+00:00", + "fileLastModified": "2025-07-14T09:31:02.2824713+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2824715+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2824698+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1823 + }, + "imageDetail": { + "width": 1721, + "height": 5441 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36318, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1823 }" + }, + "fileCreated": "2025-06-21T09:31:02.2843478+00:00", + "fileLastModified": "2025-07-14T09:31:02.2843481+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2843471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1824 + }, + "imageDetail": { + "width": 4561, + "height": 5663 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 39258, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1824 }" + }, + "fileCreated": "2025-06-21T09:31:02.286278+00:00", + "fileLastModified": "2025-07-14T09:31:02.2862783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2862772+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1825 + }, + "imageDetail": { + "width": 9330, + "height": 6711 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1825 }" + }, + "fileCreated": "2025-06-21T09:31:02.2880729+00:00", + "fileLastModified": "2025-07-14T09:31:02.2880731+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2880733+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2880721+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1826 + }, + "imageDetail": { + "width": 1440, + "height": 9413 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67126, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1826 }" + }, + "fileCreated": "2025-06-21T09:31:02.2902799+00:00", + "fileLastModified": "2025-07-14T09:31:02.2902802+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2902793+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1827 + }, + "imageDetail": { + "width": 6090, + "height": 7781 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 76097, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1827 }" + }, + "fileCreated": "2025-06-21T09:31:02.2920877+00:00", + "fileLastModified": "2025-07-14T09:31:02.2920879+00:00", + "fileLastViewed": "2025-07-14T09:31:02.292088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.292087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1828 + }, + "imageDetail": { + "width": 9883, + "height": 3053 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1828 }" + }, + "fileCreated": "2025-06-21T09:31:02.2938881+00:00", + "fileLastModified": "2025-07-14T09:31:02.2938883+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.293887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1829 + }, + "imageDetail": { + "width": 1065, + "height": 5199 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80945, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1829 }" + }, + "fileCreated": "2025-06-21T09:31:02.2956541+00:00", + "fileLastModified": "2025-07-14T09:31:02.2956543+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2956532+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1830 + }, + "imageDetail": { + "width": 4530, + "height": 2257 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 82903, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1830 }" + }, + "fileCreated": "2025-06-21T09:31:02.2979057+00:00", + "fileLastModified": "2025-07-14T09:31:02.297906+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2979062+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2979049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1831 + }, + "imageDetail": { + "width": 5032, + "height": 9470 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52301, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1831 }" + }, + "fileCreated": "2025-06-21T09:31:02.2997993+00:00", + "fileLastModified": "2025-07-14T09:31:02.2997996+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2997998+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2997987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1832 + }, + "imageDetail": { + "width": 3649, + "height": 2210 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1832 }" + }, + "fileCreated": "2025-06-21T09:31:02.3021558+00:00", + "fileLastModified": "2025-07-14T09:31:02.3021561+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3021547+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1833 + }, + "imageDetail": { + "width": 3166, + "height": 4198 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1833 }" + }, + "fileCreated": "2025-06-21T09:31:02.3039543+00:00", + "fileLastModified": "2025-07-14T09:31:02.3039546+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3039547+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3039536+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1834 + }, + "imageDetail": { + "width": 1518, + "height": 8108 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84392, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1834 }" + }, + "fileCreated": "2025-06-21T09:31:02.3056723+00:00", + "fileLastModified": "2025-07-14T09:31:02.3056725+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3056726+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3056712+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1835 + }, + "imageDetail": { + "width": 4634, + "height": 2829 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1835 }" + }, + "fileCreated": "2025-06-21T09:31:02.3075972+00:00", + "fileLastModified": "2025-07-14T09:31:02.3075974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3075964+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1836 + }, + "imageDetail": { + "width": 5481, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1836 }" + }, + "fileCreated": "2025-06-21T09:31:02.3094005+00:00", + "fileLastModified": "2025-07-14T09:31:02.3094007+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3094008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3093997+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1837 + }, + "imageDetail": { + "width": 7931, + "height": 4265 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99437, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1837 }" + }, + "fileCreated": "2025-06-21T09:31:02.3112113+00:00", + "fileLastModified": "2025-07-14T09:31:02.3112116+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3112104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1838 + }, + "imageDetail": { + "width": 6169, + "height": 4909 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1838 }" + }, + "fileCreated": "2025-06-21T09:31:02.3138126+00:00", + "fileLastModified": "2025-07-14T09:31:02.3138128+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3138116+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1839 + }, + "imageDetail": { + "width": 507, + "height": 7826 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1839 }" + }, + "fileCreated": "2025-06-21T09:31:02.3156062+00:00", + "fileLastModified": "2025-07-14T09:31:02.3156064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3156053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1840 + }, + "imageDetail": { + "width": 7682, + "height": 7589 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1840 }" + }, + "fileCreated": "2025-06-21T09:31:02.3173668+00:00", + "fileLastModified": "2025-07-14T09:31:02.3173671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3173661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1841 + }, + "imageDetail": { + "width": 2025, + "height": 3661 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36732, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1841 }" + }, + "fileCreated": "2025-06-21T09:31:02.3191745+00:00", + "fileLastModified": "2025-07-14T09:31:02.3191747+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3191737+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1842 + }, + "imageDetail": { + "width": 5623, + "height": 5514 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74000, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1842 }" + }, + "fileCreated": "2025-06-21T09:31:02.3209292+00:00", + "fileLastModified": "2025-07-14T09:31:02.3209294+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3209285+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1843 + }, + "imageDetail": { + "width": 5385, + "height": 5217 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37381, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1843 }" + }, + "fileCreated": "2025-06-21T09:31:02.3231095+00:00", + "fileLastModified": "2025-07-14T09:31:02.3231097+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3231088+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1844 + }, + "imageDetail": { + "width": 4093, + "height": 6110 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95541, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1844 }" + }, + "fileCreated": "2025-06-21T09:31:02.3248663+00:00", + "fileLastModified": "2025-07-14T09:31:02.3248665+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3248666+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3248656+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1845 + }, + "imageDetail": { + "width": 1450, + "height": 9557 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1845 }" + }, + "fileCreated": "2025-06-21T09:31:02.3266233+00:00", + "fileLastModified": "2025-07-14T09:31:02.3266235+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3266221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1846 + }, + "imageDetail": { + "width": 7585, + "height": 7194 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87607, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1846 }" + }, + "fileCreated": "2025-06-21T09:31:02.3288268+00:00", + "fileLastModified": "2025-07-14T09:31:02.3288271+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3288272+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3288256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1847 + }, + "imageDetail": { + "width": 8299, + "height": 4177 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97319, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1847 }" + }, + "fileCreated": "2025-06-21T09:31:02.3307898+00:00", + "fileLastModified": "2025-07-14T09:31:02.33079+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3307889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1848 + }, + "imageDetail": { + "width": 1099, + "height": 7800 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 43061, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1848 }" + }, + "fileCreated": "2025-06-21T09:31:02.332639+00:00", + "fileLastModified": "2025-07-14T09:31:02.3326393+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3326394+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3326383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1849 + }, + "imageDetail": { + "width": 2819, + "height": 8622 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78071, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1849 }" + }, + "fileCreated": "2025-06-21T09:31:02.3350675+00:00", + "fileLastModified": "2025-07-14T09:31:02.3350677+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3350679+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3350667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1850 + }, + "imageDetail": { + "width": 6517, + "height": 9229 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 40606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1850 }" + }, + "fileCreated": "2025-06-21T09:31:02.336868+00:00", + "fileLastModified": "2025-07-14T09:31:02.3368682+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3368683+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3368673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1851 + }, + "imageDetail": { + "width": 770, + "height": 6354 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80611, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1851 }" + }, + "fileCreated": "2025-06-21T09:31:02.338709+00:00", + "fileLastModified": "2025-07-14T09:31:02.3387092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3387084+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1852 + }, + "imageDetail": { + "width": 7363, + "height": 2614 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 33779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1852 }" + }, + "fileCreated": "2025-06-21T09:31:02.3405733+00:00", + "fileLastModified": "2025-07-14T09:31:02.3405735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3405725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1853 + }, + "imageDetail": { + "width": 4740, + "height": 5961 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26379, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1853 }" + }, + "fileCreated": "2025-06-21T09:31:02.3423952+00:00", + "fileLastModified": "2025-07-14T09:31:02.3423953+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3423955+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3423945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1854 + }, + "imageDetail": { + "width": 5391, + "height": 9601 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70995, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1854 }" + }, + "fileCreated": "2025-06-21T09:31:02.3454736+00:00", + "fileLastModified": "2025-07-14T09:31:02.3454739+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3454726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1855 + }, + "imageDetail": { + "width": 3814, + "height": 5198 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 71266, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1855 }" + }, + "fileCreated": "2025-06-21T09:31:02.3473482+00:00", + "fileLastModified": "2025-07-14T09:31:02.3473484+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3473475+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1856 + }, + "imageDetail": { + "width": 6715, + "height": 6276 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35570, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1856 }" + }, + "fileCreated": "2025-06-21T09:31:02.349526+00:00", + "fileLastModified": "2025-07-14T09:31:02.3495263+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3495264+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.349525+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1857 + }, + "imageDetail": { + "width": 6645, + "height": 7968 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1857 }" + }, + "fileCreated": "2025-06-21T09:31:02.3517687+00:00", + "fileLastModified": "2025-07-14T09:31:02.3517689+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3517692+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3517679+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1858 + }, + "imageDetail": { + "width": 6022, + "height": 9492 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92345, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1858 }" + }, + "fileCreated": "2025-06-21T09:31:02.3537834+00:00", + "fileLastModified": "2025-07-14T09:31:02.3537836+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3537837+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3537827+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1859 + }, + "imageDetail": { + "width": 7224, + "height": 5572 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94591, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1859 }" + }, + "fileCreated": "2025-06-21T09:31:02.3556711+00:00", + "fileLastModified": "2025-07-14T09:31:02.3556714+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3556704+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1860 + }, + "imageDetail": { + "width": 5205, + "height": 4655 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33167, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1860 }" + }, + "fileCreated": "2025-06-21T09:31:02.3579215+00:00", + "fileLastModified": "2025-07-14T09:31:02.3579218+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3579208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1861 + }, + "imageDetail": { + "width": 4376, + "height": 9660 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52709, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1861 }" + }, + "fileCreated": "2025-06-21T09:31:02.3603391+00:00", + "fileLastModified": "2025-07-14T09:31:02.3603394+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.360338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1862 + }, + "imageDetail": { + "width": 3160, + "height": 8527 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1862 }" + }, + "fileCreated": "2025-06-21T09:31:02.3621563+00:00", + "fileLastModified": "2025-07-14T09:31:02.3621565+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3621555+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1863 + }, + "imageDetail": { + "width": 8610, + "height": 8869 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52867, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1863 }" + }, + "fileCreated": "2025-06-21T09:31:02.3640097+00:00", + "fileLastModified": "2025-07-14T09:31:02.36401+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3640086+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1864 + }, + "imageDetail": { + "width": 9421, + "height": 4754 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41030, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1864 }" + }, + "fileCreated": "2025-06-21T09:31:02.3661949+00:00", + "fileLastModified": "2025-07-14T09:31:02.3661952+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.366194+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1865 + }, + "imageDetail": { + "width": 6760, + "height": 3037 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34038, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1865 }" + }, + "fileCreated": "2025-06-21T09:31:02.3685902+00:00", + "fileLastModified": "2025-07-14T09:31:02.3685905+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3685906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3685894+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1866 + }, + "imageDetail": { + "width": 1867, + "height": 4799 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75962, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1866 }" + }, + "fileCreated": "2025-06-21T09:31:02.3706364+00:00", + "fileLastModified": "2025-07-14T09:31:02.3706367+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3706368+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3706356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1867 + }, + "imageDetail": { + "width": 9285, + "height": 8182 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95505, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1867 }" + }, + "fileCreated": "2025-06-21T09:31:02.3724866+00:00", + "fileLastModified": "2025-07-14T09:31:02.3724868+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3724869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3724859+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1868 + }, + "imageDetail": { + "width": 2038, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1868 }" + }, + "fileCreated": "2025-06-21T09:31:02.3744663+00:00", + "fileLastModified": "2025-07-14T09:31:02.3744666+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3744667+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3744652+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1869 + }, + "imageDetail": { + "width": 5387, + "height": 4501 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44371, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1869 }" + }, + "fileCreated": "2025-06-21T09:31:02.3768695+00:00", + "fileLastModified": "2025-07-14T09:31:02.3768698+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3768699+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3768687+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1870 + }, + "imageDetail": { + "width": 1916, + "height": 5769 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95427, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1870 }" + }, + "fileCreated": "2025-06-21T09:31:02.3786619+00:00", + "fileLastModified": "2025-07-14T09:31:02.3786622+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3786622+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3786611+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1871 + }, + "imageDetail": { + "width": 3768, + "height": 4254 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43681, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1871 }" + }, + "fileCreated": "2025-06-21T09:31:02.3810163+00:00", + "fileLastModified": "2025-07-14T09:31:02.3810165+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3810166+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3810152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1872 + }, + "imageDetail": { + "width": 6669, + "height": 6575 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66557, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1872 }" + }, + "fileCreated": "2025-06-21T09:31:02.3831487+00:00", + "fileLastModified": "2025-07-14T09:31:02.383149+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3831478+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1873 + }, + "imageDetail": { + "width": 3588, + "height": 5559 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95122, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1873 }" + }, + "fileCreated": "2025-06-21T09:31:02.3849661+00:00", + "fileLastModified": "2025-07-14T09:31:02.3849663+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3849664+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3849654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1874 + }, + "imageDetail": { + "width": 4074, + "height": 8050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1874 }" + }, + "fileCreated": "2025-06-21T09:31:02.3868123+00:00", + "fileLastModified": "2025-07-14T09:31:02.3868125+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3868115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1875 + }, + "imageDetail": { + "width": 638, + "height": 5738 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1875 }" + }, + "fileCreated": "2025-06-21T09:31:02.3886584+00:00", + "fileLastModified": "2025-07-14T09:31:02.388659+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3886591+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3886572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1876 + }, + "imageDetail": { + "width": 1348, + "height": 8558 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1876 }" + }, + "fileCreated": "2025-06-21T09:31:02.391793+00:00", + "fileLastModified": "2025-07-14T09:31:02.3917933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3917911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1877 + }, + "imageDetail": { + "width": 3621, + "height": 3068 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20539, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1877 }" + }, + "fileCreated": "2025-06-21T09:31:02.3938199+00:00", + "fileLastModified": "2025-07-14T09:31:02.3938201+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.393819+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1878 + }, + "imageDetail": { + "width": 3371, + "height": 3354 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67046, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1878 }" + }, + "fileCreated": "2025-06-21T09:31:02.3956758+00:00", + "fileLastModified": "2025-07-14T09:31:02.3956761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3956751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1879 + }, + "imageDetail": { + "width": 5670, + "height": 9569 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34389, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1879 }" + }, + "fileCreated": "2025-06-21T09:31:02.3975605+00:00", + "fileLastModified": "2025-07-14T09:31:02.3975608+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3975609+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3975599+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1880 + }, + "imageDetail": { + "width": 6987, + "height": 4033 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88169, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1880 }" + }, + "fileCreated": "2025-06-21T09:31:02.3993522+00:00", + "fileLastModified": "2025-07-14T09:31:02.3993524+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3993515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1881 + }, + "imageDetail": { + "width": 978, + "height": 8869 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94860, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1881 }" + }, + "fileCreated": "2025-06-21T09:31:02.4015692+00:00", + "fileLastModified": "2025-07-14T09:31:02.4015694+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4015695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4015686+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1882 + }, + "imageDetail": { + "width": 1241, + "height": 6079 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83023, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1882 }" + }, + "fileCreated": "2025-06-21T09:31:02.4034911+00:00", + "fileLastModified": "2025-07-14T09:31:02.4034914+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4034915+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4034901+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1883 + }, + "imageDetail": { + "width": 8308, + "height": 7650 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 63003, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1883 }" + }, + "fileCreated": "2025-06-21T09:31:02.4054273+00:00", + "fileLastModified": "2025-07-14T09:31:02.4054277+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4054278+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4054265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1884 + }, + "imageDetail": { + "width": 5792, + "height": 7426 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1884 }" + }, + "fileCreated": "2025-06-21T09:31:02.4075016+00:00", + "fileLastModified": "2025-07-14T09:31:02.4075018+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4075008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1885 + }, + "imageDetail": { + "width": 1496, + "height": 7357 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1885 }" + }, + "fileCreated": "2025-06-21T09:31:02.4094408+00:00", + "fileLastModified": "2025-07-14T09:31:02.409441+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4094392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1886 + }, + "imageDetail": { + "width": 2335, + "height": 7391 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70648, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1886 }" + }, + "fileCreated": "2025-06-21T09:31:02.4113538+00:00", + "fileLastModified": "2025-07-14T09:31:02.411354+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4113529+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1887 + }, + "imageDetail": { + "width": 3920, + "height": 9860 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1887 }" + }, + "fileCreated": "2025-06-21T09:31:02.4137255+00:00", + "fileLastModified": "2025-07-14T09:31:02.4137257+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4137258+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4137248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1888 + }, + "imageDetail": { + "width": 1907, + "height": 7507 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31712, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1888 }" + }, + "fileCreated": "2025-06-21T09:31:02.4157397+00:00", + "fileLastModified": "2025-07-14T09:31:02.41574+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4157401+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.415739+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1889 + }, + "imageDetail": { + "width": 7268, + "height": 2657 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 50639, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1889 }" + }, + "fileCreated": "2025-06-21T09:31:02.4175934+00:00", + "fileLastModified": "2025-07-14T09:31:02.4175936+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4175937+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4175926+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1890 + }, + "imageDetail": { + "width": 7513, + "height": 6633 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 83754, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1890 }" + }, + "fileCreated": "2025-06-21T09:31:02.4194789+00:00", + "fileLastModified": "2025-07-14T09:31:02.4194791+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4194792+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4194781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1891 + }, + "imageDetail": { + "width": 757, + "height": 6103 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84157, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1891 }" + }, + "fileCreated": "2025-06-21T09:31:02.4218426+00:00", + "fileLastModified": "2025-07-14T09:31:02.4218428+00:00", + "fileLastViewed": "2025-07-14T09:31:02.421843+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4218412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1892 + }, + "imageDetail": { + "width": 4128, + "height": 6322 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 51655, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1892 }" + }, + "fileCreated": "2025-06-21T09:31:02.424255+00:00", + "fileLastModified": "2025-07-14T09:31:02.4242553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4242542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1893 + }, + "imageDetail": { + "width": 6743, + "height": 4962 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48894, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1893 }" + }, + "fileCreated": "2025-06-21T09:31:02.4261063+00:00", + "fileLastModified": "2025-07-14T09:31:02.4261065+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4261054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1894 + }, + "imageDetail": { + "width": 7352, + "height": 6939 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1894 }" + }, + "fileCreated": "2025-06-21T09:31:02.4279529+00:00", + "fileLastModified": "2025-07-14T09:31:02.4279531+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4279532+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4279522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1895 + }, + "imageDetail": { + "width": 3197, + "height": 6770 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97745, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1895 }" + }, + "fileCreated": "2025-06-21T09:31:02.4298067+00:00", + "fileLastModified": "2025-07-14T09:31:02.4298068+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.429806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1896 + }, + "imageDetail": { + "width": 7193, + "height": 2936 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68373, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1896 }" + }, + "fileCreated": "2025-06-21T09:31:02.4318962+00:00", + "fileLastModified": "2025-07-14T09:31:02.4318964+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4318954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1897 + }, + "imageDetail": { + "width": 5840, + "height": 5871 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 97043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1897 }" + }, + "fileCreated": "2025-06-21T09:31:02.4342253+00:00", + "fileLastModified": "2025-07-14T09:31:02.4342255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4342246+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1898 + }, + "imageDetail": { + "width": 9442, + "height": 7594 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1898 }" + }, + "fileCreated": "2025-06-21T09:31:02.4360352+00:00", + "fileLastModified": "2025-07-14T09:31:02.4360355+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4360356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4360344+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1899 + }, + "imageDetail": { + "width": 6798, + "height": 9665 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1899 }" + }, + "fileCreated": "2025-06-21T09:31:02.4384483+00:00", + "fileLastModified": "2025-07-14T09:31:02.4384485+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.438447+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1900 + }, + "imageDetail": { + "width": 4280, + "height": 2607 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83581, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1900 }" + }, + "fileCreated": "2025-06-21T09:31:02.4404743+00:00", + "fileLastModified": "2025-07-14T09:31:02.4404745+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4404735+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1901 + }, + "imageDetail": { + "width": 8940, + "height": 6791 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20991, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1901 }" + }, + "fileCreated": "2025-06-21T09:31:02.442384+00:00", + "fileLastModified": "2025-07-14T09:31:02.4423842+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4423843+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4423833+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1902 + }, + "imageDetail": { + "width": 6833, + "height": 7176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89490, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1902 }" + }, + "fileCreated": "2025-06-21T09:31:02.444294+00:00", + "fileLastModified": "2025-07-14T09:31:02.4442942+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4442943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4442933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1903 + }, + "imageDetail": { + "width": 1051, + "height": 3109 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93577, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1903 }" + }, + "fileCreated": "2025-06-21T09:31:02.4465195+00:00", + "fileLastModified": "2025-07-14T09:31:02.4465197+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4465189+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1904 + }, + "imageDetail": { + "width": 1923, + "height": 4419 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 94796, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1904 }" + }, + "fileCreated": "2025-06-21T09:31:02.448364+00:00", + "fileLastModified": "2025-07-14T09:31:02.4483642+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4483643+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4483632+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1905 + }, + "imageDetail": { + "width": 2593, + "height": 7703 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32020, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1905 }" + }, + "fileCreated": "2025-06-21T09:31:02.4502837+00:00", + "fileLastModified": "2025-07-14T09:31:02.4502839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4502829+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1906 + }, + "imageDetail": { + "width": 3810, + "height": 7179 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1906 }" + }, + "fileCreated": "2025-06-21T09:31:02.4521475+00:00", + "fileLastModified": "2025-07-14T09:31:02.4521477+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4521467+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1907 + }, + "imageDetail": { + "width": 1569, + "height": 8789 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83359, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1907 }" + }, + "fileCreated": "2025-06-21T09:31:02.4546774+00:00", + "fileLastModified": "2025-07-14T09:31:02.4546776+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4546764+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1908 + }, + "imageDetail": { + "width": 565, + "height": 5711 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43965, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1908 }" + }, + "fileCreated": "2025-06-21T09:31:02.4570499+00:00", + "fileLastModified": "2025-07-14T09:31:02.4570501+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4570491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1909 + }, + "imageDetail": { + "width": 3607, + "height": 7362 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1909 }" + }, + "fileCreated": "2025-06-21T09:31:02.4588718+00:00", + "fileLastModified": "2025-07-14T09:31:02.458872+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4588711+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1910 + }, + "imageDetail": { + "width": 8351, + "height": 4788 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27822, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1910 }" + }, + "fileCreated": "2025-06-21T09:31:02.4608987+00:00", + "fileLastModified": "2025-07-14T09:31:02.4608989+00:00", + "fileLastViewed": "2025-07-14T09:31:02.460899+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.460898+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1911 + }, + "imageDetail": { + "width": 4079, + "height": 8364 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1911 }" + }, + "fileCreated": "2025-06-21T09:31:02.4627815+00:00", + "fileLastModified": "2025-07-14T09:31:02.4627817+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4627818+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4627806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1912 + }, + "imageDetail": { + "width": 8357, + "height": 6429 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90249, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1912 }" + }, + "fileCreated": "2025-06-21T09:31:02.4646165+00:00", + "fileLastModified": "2025-07-14T09:31:02.4646166+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4646167+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4646157+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1913 + }, + "imageDetail": { + "width": 5422, + "height": 5939 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31343, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1913 }" + }, + "fileCreated": "2025-06-21T09:31:02.4669788+00:00", + "fileLastModified": "2025-07-14T09:31:02.466979+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4669791+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.466978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1914 + }, + "imageDetail": { + "width": 5572, + "height": 2840 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23562, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1914 }" + }, + "fileCreated": "2025-06-21T09:31:02.4692594+00:00", + "fileLastModified": "2025-07-14T09:31:02.4692596+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4692584+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1915 + }, + "imageDetail": { + "width": 316, + "height": 5510 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1915 }" + }, + "fileCreated": "2025-06-21T09:31:02.4711907+00:00", + "fileLastModified": "2025-07-14T09:31:02.4711909+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.47119+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1916 + }, + "imageDetail": { + "width": 966, + "height": 9308 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27693, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1916 }" + }, + "fileCreated": "2025-06-21T09:31:02.4731242+00:00", + "fileLastModified": "2025-07-14T09:31:02.4731244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4731234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1917 + }, + "imageDetail": { + "width": 8953, + "height": 5626 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49869, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1917 }" + }, + "fileCreated": "2025-06-21T09:31:02.4750205+00:00", + "fileLastModified": "2025-07-14T09:31:02.4750207+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4750197+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1918 + }, + "imageDetail": { + "width": 9781, + "height": 9385 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 95887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1918 }" + }, + "fileCreated": "2025-06-21T09:31:02.4773358+00:00", + "fileLastModified": "2025-07-14T09:31:02.4773361+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4773362+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4773351+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1919 + }, + "imageDetail": { + "width": 3351, + "height": 3661 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33724, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1919 }" + }, + "fileCreated": "2025-06-21T09:31:02.4791942+00:00", + "fileLastModified": "2025-07-14T09:31:02.4791945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4791935+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1920 + }, + "imageDetail": { + "width": 5548, + "height": 7945 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 65550, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1920 }" + }, + "fileCreated": "2025-06-21T09:31:02.4810062+00:00", + "fileLastModified": "2025-07-14T09:31:02.4810064+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4810065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4810055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1921 + }, + "imageDetail": { + "width": 5960, + "height": 9180 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87102, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1921 }" + }, + "fileCreated": "2025-06-21T09:31:02.4828256+00:00", + "fileLastModified": "2025-07-14T09:31:02.4828258+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4828259+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4828248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1922 + }, + "imageDetail": { + "width": 2893, + "height": 4087 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44292, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1922 }" + }, + "fileCreated": "2025-06-21T09:31:02.4849829+00:00", + "fileLastModified": "2025-07-14T09:31:02.4849831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4849822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1923 + }, + "imageDetail": { + "width": 3960, + "height": 9323 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65030, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1923 }" + }, + "fileCreated": "2025-06-21T09:31:02.4872339+00:00", + "fileLastModified": "2025-07-14T09:31:02.4872341+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4872342+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4872332+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1924 + }, + "imageDetail": { + "width": 1241, + "height": 6072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1924 }" + }, + "fileCreated": "2025-06-21T09:31:02.4890101+00:00", + "fileLastModified": "2025-07-14T09:31:02.4890103+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4890104+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4890094+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1925 + }, + "imageDetail": { + "width": 6637, + "height": 6709 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1925 }" + }, + "fileCreated": "2025-06-21T09:31:02.4907373+00:00", + "fileLastModified": "2025-07-14T09:31:02.4907375+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4907376+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4907366+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1926 + }, + "imageDetail": { + "width": 1421, + "height": 8954 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1926 }" + }, + "fileCreated": "2025-06-21T09:31:02.4925919+00:00", + "fileLastModified": "2025-07-14T09:31:02.4925921+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4925912+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1927 + }, + "imageDetail": { + "width": 9570, + "height": 9206 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35337, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1927 }" + }, + "fileCreated": "2025-06-21T09:31:02.4944994+00:00", + "fileLastModified": "2025-07-14T09:31:02.4944996+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4944987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1928 + }, + "imageDetail": { + "width": 7093, + "height": 6808 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73238, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1928 }" + }, + "fileCreated": "2025-06-21T09:31:02.4967247+00:00", + "fileLastModified": "2025-07-14T09:31:02.4967249+00:00", + "fileLastViewed": "2025-07-14T09:31:02.496725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.496724+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1929 + }, + "imageDetail": { + "width": 7342, + "height": 4055 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44840, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1929 }" + }, + "fileCreated": "2025-06-21T09:31:02.4985464+00:00", + "fileLastModified": "2025-07-14T09:31:02.4985466+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4985467+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4985456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1930 + }, + "imageDetail": { + "width": 4239, + "height": 3237 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 78694, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1930 }" + }, + "fileCreated": "2025-06-21T09:31:02.5003755+00:00", + "fileLastModified": "2025-07-14T09:31:02.5003757+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5003758+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5003748+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1931 + }, + "imageDetail": { + "width": 1843, + "height": 6309 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 51234, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1931 }" + }, + "fileCreated": "2025-06-21T09:31:02.5021542+00:00", + "fileLastModified": "2025-07-14T09:31:02.5021544+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5021545+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5021536+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1932 + }, + "imageDetail": { + "width": 651, + "height": 6394 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34376, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1932 }" + }, + "fileCreated": "2025-06-21T09:31:02.5038897+00:00", + "fileLastModified": "2025-07-14T09:31:02.5038899+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.503889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1933 + }, + "imageDetail": { + "width": 9607, + "height": 5108 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97369, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1933 }" + }, + "fileCreated": "2025-06-21T09:31:02.5061602+00:00", + "fileLastModified": "2025-07-14T09:31:02.5061604+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5061596+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1934 + }, + "imageDetail": { + "width": 8234, + "height": 8329 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1934 }" + }, + "fileCreated": "2025-06-21T09:31:02.5080293+00:00", + "fileLastModified": "2025-07-14T09:31:02.5080295+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5080286+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1935 + }, + "imageDetail": { + "width": 5908, + "height": 2399 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28894, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1935 }" + }, + "fileCreated": "2025-06-21T09:31:02.5099171+00:00", + "fileLastModified": "2025-07-14T09:31:02.5099173+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5099174+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5099164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1936 + }, + "imageDetail": { + "width": 8686, + "height": 9901 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 79210, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1936 }" + }, + "fileCreated": "2025-06-21T09:31:02.5116656+00:00", + "fileLastModified": "2025-07-14T09:31:02.5116658+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.511665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1937 + }, + "imageDetail": { + "width": 2539, + "height": 6453 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28658, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1937 }" + }, + "fileCreated": "2025-06-21T09:31:02.5135287+00:00", + "fileLastModified": "2025-07-14T09:31:02.5135289+00:00", + "fileLastViewed": "2025-07-14T09:31:02.513529+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.513528+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1938 + }, + "imageDetail": { + "width": 1347, + "height": 2150 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1938 }" + }, + "fileCreated": "2025-06-21T09:31:02.5161461+00:00", + "fileLastModified": "2025-07-14T09:31:02.5161464+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5161465+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5161453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1939 + }, + "imageDetail": { + "width": 7813, + "height": 7448 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87234, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1939 }" + }, + "fileCreated": "2025-06-21T09:31:02.5179415+00:00", + "fileLastModified": "2025-07-14T09:31:02.5179417+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5179418+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5179408+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1940 + }, + "imageDetail": { + "width": 3402, + "height": 5123 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67185, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1940 }" + }, + "fileCreated": "2025-06-21T09:31:02.5197665+00:00", + "fileLastModified": "2025-07-14T09:31:02.5197667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5197658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1941 + }, + "imageDetail": { + "width": 7934, + "height": 7409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48178, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1941 }" + }, + "fileCreated": "2025-06-21T09:31:02.5215601+00:00", + "fileLastModified": "2025-07-14T09:31:02.5215603+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5215604+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5215595+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1942 + }, + "imageDetail": { + "width": 4199, + "height": 3977 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47708, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1942 }" + }, + "fileCreated": "2025-06-21T09:31:02.5234573+00:00", + "fileLastModified": "2025-07-14T09:31:02.5234575+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5234566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1943 + }, + "imageDetail": { + "width": 199, + "height": 5565 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89360, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1943 }" + }, + "fileCreated": "2025-06-21T09:31:02.5258092+00:00", + "fileLastModified": "2025-07-14T09:31:02.5258094+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5258085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1944 + }, + "imageDetail": { + "width": 6875, + "height": 7493 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1944 }" + }, + "fileCreated": "2025-06-21T09:31:02.527568+00:00", + "fileLastModified": "2025-07-14T09:31:02.5275682+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5275673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1945 + }, + "imageDetail": { + "width": 5249, + "height": 2471 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59404, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1945 }" + }, + "fileCreated": "2025-06-21T09:31:02.5293485+00:00", + "fileLastModified": "2025-07-14T09:31:02.5293487+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5293488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5293479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1946 + }, + "imageDetail": { + "width": 155, + "height": 5249 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96784, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1946 }" + }, + "fileCreated": "2025-06-21T09:31:02.5316891+00:00", + "fileLastModified": "2025-07-14T09:31:02.5316894+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5316882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1947 + }, + "imageDetail": { + "width": 1636, + "height": 4691 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1947 }" + }, + "fileCreated": "2025-06-21T09:31:02.5335225+00:00", + "fileLastModified": "2025-07-14T09:31:02.5335227+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5335218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1948 + }, + "imageDetail": { + "width": 2174, + "height": 4876 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28975, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1948 }" + }, + "fileCreated": "2025-06-21T09:31:02.5358916+00:00", + "fileLastModified": "2025-07-14T09:31:02.5358918+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5358908+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1949 + }, + "imageDetail": { + "width": 3822, + "height": 5013 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63460, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1949 }" + }, + "fileCreated": "2025-06-21T09:31:02.5377529+00:00", + "fileLastModified": "2025-07-14T09:31:02.5377531+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5377522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1950 + }, + "imageDetail": { + "width": 9086, + "height": 9439 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1950 }" + }, + "fileCreated": "2025-06-21T09:31:02.5395516+00:00", + "fileLastModified": "2025-07-14T09:31:02.5395519+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5395509+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1951 + }, + "imageDetail": { + "width": 1404, + "height": 6680 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92081, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1951 }" + }, + "fileCreated": "2025-06-21T09:31:02.5413257+00:00", + "fileLastModified": "2025-07-14T09:31:02.541326+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5413261+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5413242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1952 + }, + "imageDetail": { + "width": 2116, + "height": 7119 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76138, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1952 }" + }, + "fileCreated": "2025-06-21T09:31:02.5430869+00:00", + "fileLastModified": "2025-07-14T09:31:02.5430872+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5430873+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5430862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1953 + }, + "imageDetail": { + "width": 2144, + "height": 8980 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 59152, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1953 }" + }, + "fileCreated": "2025-06-21T09:31:02.5457079+00:00", + "fileLastModified": "2025-07-14T09:31:02.5457081+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5457082+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5457071+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1954 + }, + "imageDetail": { + "width": 8339, + "height": 4919 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65843, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1954 }" + }, + "fileCreated": "2025-06-21T09:31:02.5479996+00:00", + "fileLastModified": "2025-07-14T09:31:02.5479998+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.547999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1955 + }, + "imageDetail": { + "width": 1478, + "height": 3519 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97516, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1955 }" + }, + "fileCreated": "2025-06-21T09:31:02.549841+00:00", + "fileLastModified": "2025-07-14T09:31:02.5498413+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5498403+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1956 + }, + "imageDetail": { + "width": 8895, + "height": 4377 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46838, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1956 }" + }, + "fileCreated": "2025-06-21T09:31:02.5516243+00:00", + "fileLastModified": "2025-07-14T09:31:02.5516245+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5516236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1957 + }, + "imageDetail": { + "width": 9478, + "height": 7118 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24795, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1957 }" + }, + "fileCreated": "2025-06-21T09:31:02.5534642+00:00", + "fileLastModified": "2025-07-14T09:31:02.5534644+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5534636+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1958 + }, + "imageDetail": { + "width": 3525, + "height": 6366 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1958 }" + }, + "fileCreated": "2025-06-21T09:31:02.5557858+00:00", + "fileLastModified": "2025-07-14T09:31:02.555786+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5557861+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5557851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1959 + }, + "imageDetail": { + "width": 2903, + "height": 6866 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53179, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1959 }" + }, + "fileCreated": "2025-06-21T09:31:02.5576259+00:00", + "fileLastModified": "2025-07-14T09:31:02.5576261+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5576262+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5576252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1960 + }, + "imageDetail": { + "width": 6642, + "height": 4958 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 83921, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1960 }" + }, + "fileCreated": "2025-06-21T09:31:02.5594718+00:00", + "fileLastModified": "2025-07-14T09:31:02.5594721+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5594712+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1961 + }, + "imageDetail": { + "width": 8850, + "height": 2046 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79860, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1961 }" + }, + "fileCreated": "2025-06-21T09:31:02.5615838+00:00", + "fileLastModified": "2025-07-14T09:31:02.561584+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5615841+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5615832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1962 + }, + "imageDetail": { + "width": 1555, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82751, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1962 }" + }, + "fileCreated": "2025-06-21T09:31:02.5634348+00:00", + "fileLastModified": "2025-07-14T09:31:02.563435+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5634341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1963 + }, + "imageDetail": { + "width": 733, + "height": 7762 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79858, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1963 }" + }, + "fileCreated": "2025-06-21T09:31:02.565747+00:00", + "fileLastModified": "2025-07-14T09:31:02.5657472+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5657463+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1964 + }, + "imageDetail": { + "width": 4450, + "height": 6108 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71326, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1964 }" + }, + "fileCreated": "2025-06-21T09:31:02.5676556+00:00", + "fileLastModified": "2025-07-14T09:31:02.5676558+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5676559+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5676549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1965 + }, + "imageDetail": { + "width": 3793, + "height": 4215 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27071, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1965 }" + }, + "fileCreated": "2025-06-21T09:31:02.5695195+00:00", + "fileLastModified": "2025-07-14T09:31:02.5695197+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5695198+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5695188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1966 + }, + "imageDetail": { + "width": 9179, + "height": 7091 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 39970, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1966 }" + }, + "fileCreated": "2025-06-21T09:31:02.5713614+00:00", + "fileLastModified": "2025-07-14T09:31:02.5713616+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5713617+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5713607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1967 + }, + "imageDetail": { + "width": 6542, + "height": 5187 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25171, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1967 }" + }, + "fileCreated": "2025-06-21T09:31:02.5732518+00:00", + "fileLastModified": "2025-07-14T09:31:02.573252+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5732521+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5732512+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1968 + }, + "imageDetail": { + "width": 767, + "height": 6499 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89613, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1968 }" + }, + "fileCreated": "2025-06-21T09:31:02.5755089+00:00", + "fileLastModified": "2025-07-14T09:31:02.5755091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5755079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1969 + }, + "imageDetail": { + "width": 4416, + "height": 5604 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29205, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1969 }" + }, + "fileCreated": "2025-06-21T09:31:02.5775266+00:00", + "fileLastModified": "2025-07-14T09:31:02.5775268+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.577526+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1970 + }, + "imageDetail": { + "width": 462, + "height": 6465 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 31408, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1970 }" + }, + "fileCreated": "2025-06-21T09:31:02.5795005+00:00", + "fileLastModified": "2025-07-14T09:31:02.5795007+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5795008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5794998+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1971 + }, + "imageDetail": { + "width": 3439, + "height": 5372 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1971 }" + }, + "fileCreated": "2025-06-21T09:31:02.5812824+00:00", + "fileLastModified": "2025-07-14T09:31:02.5812826+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5812827+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5812817+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1972 + }, + "imageDetail": { + "width": 9792, + "height": 7187 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1972 }" + }, + "fileCreated": "2025-06-21T09:31:02.583008+00:00", + "fileLastModified": "2025-07-14T09:31:02.5830082+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5830083+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5830074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1973 + }, + "imageDetail": { + "width": 1825, + "height": 3585 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 27148, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1973 }" + }, + "fileCreated": "2025-06-21T09:31:02.5851968+00:00", + "fileLastModified": "2025-07-14T09:31:02.5851971+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5851972+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5851962+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1974 + }, + "imageDetail": { + "width": 1450, + "height": 7945 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 58846, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1974 }" + }, + "fileCreated": "2025-06-21T09:31:02.5869241+00:00", + "fileLastModified": "2025-07-14T09:31:02.5869244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5869235+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1975 + }, + "imageDetail": { + "width": 9581, + "height": 4085 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 96443, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1975 }" + }, + "fileCreated": "2025-06-21T09:31:02.5886227+00:00", + "fileLastModified": "2025-07-14T09:31:02.5886229+00:00", + "fileLastViewed": "2025-07-14T09:31:02.588623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5886221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1976 + }, + "imageDetail": { + "width": 2896, + "height": 2083 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1976 }" + }, + "fileCreated": "2025-06-21T09:31:02.5904071+00:00", + "fileLastModified": "2025-07-14T09:31:02.5904073+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5904074+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5904064+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1977 + }, + "imageDetail": { + "width": 9926, + "height": 5333 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54978, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1977 }" + }, + "fileCreated": "2025-06-21T09:31:02.5921154+00:00", + "fileLastModified": "2025-07-14T09:31:02.5921156+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5921147+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1978 + }, + "imageDetail": { + "width": 485, + "height": 8293 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87942, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1978 }" + }, + "fileCreated": "2025-06-21T09:31:02.5947998+00:00", + "fileLastModified": "2025-07-14T09:31:02.5948+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5947988+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1979 + }, + "imageDetail": { + "width": 7133, + "height": 5329 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26842, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1979 }" + }, + "fileCreated": "2025-06-21T09:31:02.5965519+00:00", + "fileLastModified": "2025-07-14T09:31:02.5965521+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5965522+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5965513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1980 + }, + "imageDetail": { + "width": 6754, + "height": 7340 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99449, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1980 }" + }, + "fileCreated": "2025-06-21T09:31:02.5982951+00:00", + "fileLastModified": "2025-07-14T09:31:02.5982953+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5982954+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5982944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1981 + }, + "imageDetail": { + "width": 8616, + "height": 6560 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90473, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1981 }" + }, + "fileCreated": "2025-06-21T09:31:02.6000742+00:00", + "fileLastModified": "2025-07-14T09:31:02.6000744+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6000745+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6000736+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1982 + }, + "imageDetail": { + "width": 4534, + "height": 8673 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29163, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1982 }" + }, + "fileCreated": "2025-06-21T09:31:02.6018594+00:00", + "fileLastModified": "2025-07-14T09:31:02.6018596+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6018597+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6018585+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1983 + }, + "imageDetail": { + "width": 9300, + "height": 4285 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49892, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1983 }" + }, + "fileCreated": "2025-06-21T09:31:02.6041609+00:00", + "fileLastModified": "2025-07-14T09:31:02.6041611+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6041612+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6041602+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1984 + }, + "imageDetail": { + "width": 5715, + "height": 9904 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26354, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1984 }" + }, + "fileCreated": "2025-06-21T09:31:02.6060223+00:00", + "fileLastModified": "2025-07-14T09:31:02.6060225+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6060216+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1985 + }, + "imageDetail": { + "width": 4265, + "height": 6240 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59001, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1985 }" + }, + "fileCreated": "2025-06-21T09:31:02.6078336+00:00", + "fileLastModified": "2025-07-14T09:31:02.6078338+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.607833+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1986 + }, + "imageDetail": { + "width": 9019, + "height": 8560 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35858, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1986 }" + }, + "fileCreated": "2025-06-21T09:31:02.6107499+00:00", + "fileLastModified": "2025-07-14T09:31:02.6107502+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6107488+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1987 + }, + "imageDetail": { + "width": 7996, + "height": 4633 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55397, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1987 }" + }, + "fileCreated": "2025-06-21T09:31:02.6131985+00:00", + "fileLastModified": "2025-07-14T09:31:02.6131987+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6131988+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6131972+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1988 + }, + "imageDetail": { + "width": 4204, + "height": 6995 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1988 }" + }, + "fileCreated": "2025-06-21T09:31:02.6150335+00:00", + "fileLastModified": "2025-07-14T09:31:02.6150337+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6150338+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6150328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1989 + }, + "imageDetail": { + "width": 495, + "height": 9526 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37820, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1989 }" + }, + "fileCreated": "2025-06-21T09:31:02.6169656+00:00", + "fileLastModified": "2025-07-14T09:31:02.6169658+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6169659+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6169649+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1990 + }, + "imageDetail": { + "width": 961, + "height": 9682 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57686, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1990 }" + }, + "fileCreated": "2025-06-21T09:31:02.618753+00:00", + "fileLastModified": "2025-07-14T09:31:02.6187532+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6187533+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6187514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1991 + }, + "imageDetail": { + "width": 6997, + "height": 4322 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95810, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1991 }" + }, + "fileCreated": "2025-06-21T09:31:02.6205227+00:00", + "fileLastModified": "2025-07-14T09:31:02.6205229+00:00", + "fileLastViewed": "2025-07-14T09:31:02.620523+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6205221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1992 + }, + "imageDetail": { + "width": 6935, + "height": 6212 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 28793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1992 }" + }, + "fileCreated": "2025-06-21T09:31:02.6228614+00:00", + "fileLastModified": "2025-07-14T09:31:02.6228616+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6228617+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6228607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1993 + }, + "imageDetail": { + "width": 9558, + "height": 3924 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96283, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1993 }" + }, + "fileCreated": "2025-06-21T09:31:02.6253604+00:00", + "fileLastModified": "2025-07-14T09:31:02.6253606+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6253607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6253593+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1994 + }, + "imageDetail": { + "width": 4563, + "height": 5975 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1994 }" + }, + "fileCreated": "2025-06-21T09:31:02.6272113+00:00", + "fileLastModified": "2025-07-14T09:31:02.6272115+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6272116+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6272106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1995 + }, + "imageDetail": { + "width": 4467, + "height": 5928 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40441, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1995 }" + }, + "fileCreated": "2025-06-21T09:31:02.6291319+00:00", + "fileLastModified": "2025-07-14T09:31:02.6291321+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6291313+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1996 + }, + "imageDetail": { + "width": 612, + "height": 7268 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58962, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1996 }" + }, + "fileCreated": "2025-06-21T09:31:02.6310984+00:00", + "fileLastModified": "2025-07-14T09:31:02.6310986+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6310987+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6310977+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1997 + }, + "imageDetail": { + "width": 4075, + "height": 6065 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49576, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1997 }" + }, + "fileCreated": "2025-06-21T09:31:02.6333897+00:00", + "fileLastModified": "2025-07-14T09:31:02.63339+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6333891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1998 + }, + "imageDetail": { + "width": 9844, + "height": 9979 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45627, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1998 }" + }, + "fileCreated": "2025-06-21T09:31:02.6351973+00:00", + "fileLastModified": "2025-07-14T09:31:02.6351975+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6351976+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6351967+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 1999 + }, + "imageDetail": { + "width": 2776, + "height": 6210 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20658, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1999 }" + }, + "fileCreated": "2025-06-21T09:31:02.6370035+00:00", + "fileLastModified": "2025-07-14T09:31:02.6370037+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6370028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100001 + }, + "imageDetail": { + "width": 6394, + "height": 8458 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45197, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1 }98CC2012-9473-4E5D-99C8-A1AA58F4AF5E" + }, + "fileCreated": "2025-06-21T09:21:52.4468007+00:00", + "fileLastModified": "2025-07-14T09:21:52.446945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4458268+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100004 + }, + "imageDetail": { + "width": 7557, + "height": 4155 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47003, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 4 }43B61082-9CC2-411B-85DD-9232A388283A" + }, + "fileCreated": "2025-06-21T09:21:52.4473661+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473661+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473662+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100006 + }, + "imageDetail": { + "width": 8608, + "height": 9870 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86997, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 6 }DA3205DA-1C8D-4EBC-8A72-87C7733A54E6" + }, + "fileCreated": "2025-06-21T09:21:52.4473684+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473685+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473685+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473683+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100007 + }, + "imageDetail": { + "width": 7772, + "height": 8742 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92722, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 7 }628E7E0F-0EA4-4877-BBEE-4B9F4CA828E8" + }, + "fileCreated": "2025-06-21T09:21:52.4473693+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473694+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473691+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100008 + }, + "imageDetail": { + "width": 8482, + "height": 2221 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31919, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 8 }D3451D7F-0E5F-4220-A671-5A7E4BCB8EF5" + }, + "fileCreated": "2025-06-21T09:21:52.4473697+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473698+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473698+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473695+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100010 + }, + "imageDetail": { + "width": 318, + "height": 7603 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 10 }961760D0-703E-4A80-B81E-C45793E592BA" + }, + "fileCreated": "2025-06-21T09:21:52.4473706+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473707+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473705+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100011 + }, + "imageDetail": { + "width": 7005, + "height": 9981 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77037, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 11 }90328FD1-D171-4DB7-9E03-3B7445A75777" + }, + "fileCreated": "2025-06-21T09:21:52.4473711+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473712+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473712+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473709+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100012 + }, + "imageDetail": { + "width": 4741, + "height": 2166 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 12 }835775EA-8937-4C35-B105-557492CC4B87" + }, + "fileCreated": "2025-06-21T09:21:52.4473715+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473716+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473716+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100013 + }, + "imageDetail": { + "width": 1384, + "height": 4976 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40597, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 13 }83B14F65-5082-4F7B-AF0F-CF1979801D6E" + }, + "fileCreated": "2025-06-21T09:21:52.4473719+00:00", + "fileLastModified": "2025-07-14T09:21:52.447372+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100017 + }, + "imageDetail": { + "width": 6000, + "height": 3842 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71086, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 17 }FA12BD10-37F1-4015-A3A0-7528F11D3E83" + }, + "fileCreated": "2025-06-21T09:21:52.4473768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473769+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100018 + }, + "imageDetail": { + "width": 7853, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 95960, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 18 }E706DB05-561B-414C-8665-9ADE66D7612C" + }, + "fileCreated": "2025-06-21T09:21:52.4473773+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473773+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473774+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473771+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100020 + }, + "imageDetail": { + "width": 4135, + "height": 3714 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99512, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 20 }824258B9-D347-4446-8E1D-0E8C838751D2" + }, + "fileCreated": "2025-06-21T09:21:52.447378+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473781+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473781+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473779+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100022 + }, + "imageDetail": { + "width": 3521, + "height": 4694 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 22 }7497A6D0-5122-4A1F-AB58-8D300F458B85" + }, + "fileCreated": "2025-06-21T09:21:52.4473788+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473789+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473789+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100023 + }, + "imageDetail": { + "width": 2012, + "height": 9592 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92757, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 23 }1D478B31-456C-4304-BFFF-AB9FD70893DE" + }, + "fileCreated": "2025-06-21T09:21:52.44738+00:00", + "fileLastModified": "2025-07-14T09:21:52.44738+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473801+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473791+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100025 + }, + "imageDetail": { + "width": 7067, + "height": 5602 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 25 }DB73F2C8-91EC-40CD-88EB-4CD86775B0D9" + }, + "fileCreated": "2025-06-21T09:21:52.4473808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473808+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473809+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100027 + }, + "imageDetail": { + "width": 6151, + "height": 4770 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 27 }23364221-3668-48BF-8105-B28B6911435B" + }, + "fileCreated": "2025-06-21T09:21:52.4473816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473816+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100028 + }, + "imageDetail": { + "width": 9210, + "height": 8849 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22558, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 28 }4923D450-F940-4FC3-A435-2DFC2D942EE4" + }, + "fileCreated": "2025-06-21T09:21:52.4473838+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100030 + }, + "imageDetail": { + "width": 5269, + "height": 3306 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 37750, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 30 }39D379BE-25A5-416D-95CA-6C9F7183B2CB" + }, + "fileCreated": "2025-06-21T09:21:52.4473849+00:00", + "fileLastModified": "2025-07-14T09:21:52.447385+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447385+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473848+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100034 + }, + "imageDetail": { + "width": 5908, + "height": 4947 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 34 }645E1225-92C0-4987-B80C-284AF9B7A65D" + }, + "fileCreated": "2025-06-21T09:21:52.4473866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473867+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100036 + }, + "imageDetail": { + "width": 1905, + "height": 9679 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67766, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 36 }000D25B7-832D-4A35-B272-DE435A1C6133" + }, + "fileCreated": "2025-06-21T09:21:52.4473881+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473881+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473879+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100037 + }, + "imageDetail": { + "width": 7916, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80133, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 37 }C6023DF9-79F7-4E66-A47B-82AD3CDE75E5" + }, + "fileCreated": "2025-06-21T09:21:52.4473884+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473885+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100040 + }, + "imageDetail": { + "width": 2042, + "height": 2514 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 61689, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 40 }12D55B3A-C94B-4575-9AB7-4CC8A79C16FB" + }, + "fileCreated": "2025-06-21T09:21:52.4473896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473897+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473897+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473895+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100041 + }, + "imageDetail": { + "width": 3000, + "height": 9939 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56131, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 41 }1E9B03F6-7AE3-42F5-A0CE-064F84FDE782" + }, + "fileCreated": "2025-06-21T09:21:52.4473959+00:00", + "fileLastModified": "2025-07-14T09:21:52.447396+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473958+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100042 + }, + "imageDetail": { + "width": 2491, + "height": 4700 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45804, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 42 }197AD69F-A66E-4953-AF9E-325F04A649FA" + }, + "fileCreated": "2025-06-21T09:21:52.4473963+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473963+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473961+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100043 + }, + "imageDetail": { + "width": 6792, + "height": 2328 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83304, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 43 }65A20620-4350-492C-81FD-259BA48BA45E" + }, + "fileCreated": "2025-06-21T09:21:52.4473966+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473967+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4473967+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473965+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100044 + }, + "imageDetail": { + "width": 8224, + "height": 5740 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77990, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 44 }CF33F5B0-C3B2-46B7-986E-E478ACA28866" + }, + "fileCreated": "2025-06-21T09:21:52.447397+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473971+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100045 + }, + "imageDetail": { + "width": 2975, + "height": 7495 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94107, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 45 }58569C00-181A-436A-9623-B789D64DBB4B" + }, + "fileCreated": "2025-06-21T09:21:52.4473974+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473972+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100049 + }, + "imageDetail": { + "width": 6521, + "height": 5139 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73093, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 49 }696F36C2-E54E-4467-B671-005E6C1161DA" + }, + "fileCreated": "2025-06-21T09:21:52.4473988+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473989+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4473987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100050 + }, + "imageDetail": { + "width": 2911, + "height": 7704 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84656, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 50 }2D983851-7C46-4E82-A85E-B1AAE6365286" + }, + "fileCreated": "2025-06-21T09:21:52.4473992+00:00", + "fileLastModified": "2025-07-14T09:21:52.4473992+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447399+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100056 + }, + "imageDetail": { + "width": 6432, + "height": 9604 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 24029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 56 }D1762133-7885-4044-98C2-5E212AE18D6C" + }, + "fileCreated": "2025-06-21T09:21:52.4474054+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474054+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474055+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474052+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100057 + }, + "imageDetail": { + "width": 8202, + "height": 8836 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89972, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 57 }0A2C242C-35C0-4B6D-86DA-DADE43FACB9F" + }, + "fileCreated": "2025-06-21T09:21:52.4474058+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474057+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100058 + }, + "imageDetail": { + "width": 7341, + "height": 8598 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71491, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 58 }AEEEF2FD-8B14-4C12-A03F-2B17C70EC660" + }, + "fileCreated": "2025-06-21T09:21:52.4474062+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100059 + }, + "imageDetail": { + "width": 6486, + "height": 6228 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34402, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 59 }5505497F-E4AA-4E5E-ADFC-BCDB8E6678EB" + }, + "fileCreated": "2025-06-21T09:21:52.4474065+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474066+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474066+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474064+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100065 + }, + "imageDetail": { + "width": 8819, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91710, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 65 }649DEEEE-90A9-408D-B08F-66123E412BE6" + }, + "fileCreated": "2025-06-21T09:21:52.4474088+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474088+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474089+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474086+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100069 + }, + "imageDetail": { + "width": 8601, + "height": 7661 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22997, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 69 }96ACB7F3-0725-465C-A02D-E404D8797D00" + }, + "fileCreated": "2025-06-21T09:21:52.4474128+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474129+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100071 + }, + "imageDetail": { + "width": 2725, + "height": 5081 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53010, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 71 }370701A6-6C1D-4562-904F-BFE7C1483573" + }, + "fileCreated": "2025-06-21T09:21:52.4474135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474135+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100072 + }, + "imageDetail": { + "width": 2492, + "height": 6146 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 72 }FB1F1F7A-8C27-40C3-9D76-0B4E6318DDCA" + }, + "fileCreated": "2025-06-21T09:21:52.4474138+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474139+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474139+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100075 + }, + "imageDetail": { + "width": 7838, + "height": 7082 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 75 }20892ADA-F370-441E-A014-B5D3DF15C16A" + }, + "fileCreated": "2025-06-21T09:21:52.447415+00:00", + "fileLastModified": "2025-07-14T09:21:52.447415+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474148+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100076 + }, + "imageDetail": { + "width": 5716, + "height": 4767 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43593, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 76 }08C863AF-429E-4A51-8837-304DC084633D" + }, + "fileCreated": "2025-06-21T09:21:52.4474154+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474154+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100077 + }, + "imageDetail": { + "width": 7540, + "height": 2587 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 77 }70BDE443-BDCE-47CD-B28A-4FF9E4A6CD4F" + }, + "fileCreated": "2025-06-21T09:21:52.4474157+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474158+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100080 + }, + "imageDetail": { + "width": 8107, + "height": 6625 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87664, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 80 }E60A5C76-22DB-46B7-A937-92E522C10DC8" + }, + "fileCreated": "2025-06-21T09:21:52.4474192+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474192+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447419+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100082 + }, + "imageDetail": { + "width": 1872, + "height": 7027 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 82 }3C2E264E-B00D-424E-BF0D-BCEBCD4EF25E" + }, + "fileCreated": "2025-06-21T09:21:52.4474199+00:00", + "fileLastModified": "2025-07-14T09:21:52.44742+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44742+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474198+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100083 + }, + "imageDetail": { + "width": 1104, + "height": 2983 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88604, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 83 }06BFCE46-5C9D-49E9-95B5-1D8F9EAF3B67" + }, + "fileCreated": "2025-06-21T09:21:52.4474203+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474204+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474204+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100086 + }, + "imageDetail": { + "width": 5650, + "height": 3006 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 86 }064D5FA4-9BE2-4677-8838-2A209B4E5BD6" + }, + "fileCreated": "2025-06-21T09:21:52.4474215+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474215+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474213+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100089 + }, + "imageDetail": { + "width": 8886, + "height": 9598 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 95528, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 89 }DD8D9178-74D2-4510-B207-D8180EB5035C" + }, + "fileCreated": "2025-06-21T09:21:52.4474226+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474227+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474227+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100091 + }, + "imageDetail": { + "width": 2601, + "height": 6575 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51880, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 91 }FC9AA42E-878E-4600-B1C5-5A2F87CE2B85" + }, + "fileCreated": "2025-06-21T09:21:52.4474234+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474235+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100092 + }, + "imageDetail": { + "width": 9900, + "height": 9628 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69143, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 92 }F53C0C94-89FF-4A69-9D72-2DC3BA5338CA" + }, + "fileCreated": "2025-06-21T09:21:52.4474238+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474238+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100093 + }, + "imageDetail": { + "width": 9207, + "height": 6591 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88989, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 93 }95F07017-E5E8-48AB-A0D0-9FD823C8D246" + }, + "fileCreated": "2025-06-21T09:21:52.4474267+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100095 + }, + "imageDetail": { + "width": 3705, + "height": 5772 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51001, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 95 }C72409FA-7DC1-4CB9-9A6E-B1BBEF4F30E5" + }, + "fileCreated": "2025-06-21T09:21:52.4474275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474275+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100099 + }, + "imageDetail": { + "width": 908, + "height": 3398 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59120, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 99 }E7888EA0-BFB0-4E66-A643-52B06BA8F1D5" + }, + "fileCreated": "2025-06-21T09:21:52.4474289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447429+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100100 + }, + "imageDetail": { + "width": 7079, + "height": 2335 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 100 }3E463C4B-4DAF-4160-BC52-28A032AFA932" + }, + "fileCreated": "2025-06-21T09:21:52.4474293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474294+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100102 + }, + "imageDetail": { + "width": 3323, + "height": 8530 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 102 }4B4E0BA2-2E15-40AA-9121-F219AF5B167C" + }, + "fileCreated": "2025-06-21T09:21:52.44743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474301+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100105 + }, + "imageDetail": { + "width": 4272, + "height": 7595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21133, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 105 }673F6237-3707-4434-89EA-35DAE663C91D" + }, + "fileCreated": "2025-06-21T09:21:52.4474311+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474311+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474309+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100109 + }, + "imageDetail": { + "width": 6156, + "height": 9762 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88867, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 109 }41967498-E5BE-4799-B292-3A8B7D88F74A" + }, + "fileCreated": "2025-06-21T09:21:52.447435+00:00", + "fileLastModified": "2025-07-14T09:21:52.447435+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474351+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100111 + }, + "imageDetail": { + "width": 5013, + "height": 7928 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 111 }6C6DAD32-A888-40BD-A30D-B75524E579CC" + }, + "fileCreated": "2025-06-21T09:21:52.4474357+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100115 + }, + "imageDetail": { + "width": 7299, + "height": 7055 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93669, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 115 }A3CAABEA-1C6B-43F6-8D3B-E301C9413A79" + }, + "fileCreated": "2025-06-21T09:21:52.4474372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474373+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474373+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100116 + }, + "imageDetail": { + "width": 8347, + "height": 2351 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63978, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 116 }8491ADFF-BD7C-43B6-875E-25F1CC0CE364" + }, + "fileCreated": "2025-06-21T09:21:52.4474376+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474377+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474377+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474375+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100117 + }, + "imageDetail": { + "width": 4468, + "height": 3331 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59216, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 117 }3FBC1DF5-F168-4E3A-ABEE-9C69F2D24743" + }, + "fileCreated": "2025-06-21T09:21:52.447438+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474381+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474381+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474379+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100119 + }, + "imageDetail": { + "width": 6780, + "height": 2125 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 78115, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 119 }180EC021-4E45-4795-B50E-1265B798C38A" + }, + "fileCreated": "2025-06-21T09:21:52.4474388+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474388+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474389+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100121 + }, + "imageDetail": { + "width": 9899, + "height": 7593 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96278, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 121 }7ABA4BCC-9282-4E38-9035-0F7E1BD9AB74" + }, + "fileCreated": "2025-06-21T09:21:52.447442+00:00", + "fileLastModified": "2025-07-14T09:21:52.447442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474421+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474418+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100122 + }, + "imageDetail": { + "width": 1800, + "height": 9694 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88683, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 122 }DE2824F2-88EE-4C36-BEB9-29FC36261240" + }, + "fileCreated": "2025-06-21T09:21:52.4474424+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474424+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474422+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100124 + }, + "imageDetail": { + "width": 9270, + "height": 6348 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82049, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 124 }637A9810-9C88-43D7-B212-1EB8469A5DDA" + }, + "fileCreated": "2025-06-21T09:21:52.4474431+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474432+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447443+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100127 + }, + "imageDetail": { + "width": 9205, + "height": 3830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33109, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 127 }11732CAB-ED48-4152-8CD7-A9421868C023" + }, + "fileCreated": "2025-06-21T09:21:52.4474442+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474443+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474441+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100128 + }, + "imageDetail": { + "width": 5268, + "height": 6718 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 128 }737E2A93-7BBC-4D45-B4F1-60996EFA9955" + }, + "fileCreated": "2025-06-21T09:21:52.4474446+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474447+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474445+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100129 + }, + "imageDetail": { + "width": 2891, + "height": 6270 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 39386, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 129 }3D44D126-377E-467C-8A47-DAB244401A33" + }, + "fileCreated": "2025-06-21T09:21:52.447445+00:00", + "fileLastModified": "2025-07-14T09:21:52.447445+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474451+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474448+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100130 + }, + "imageDetail": { + "width": 3001, + "height": 2704 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 130 }CBAE9299-7E8E-4C62-970D-F372CB181C46" + }, + "fileCreated": "2025-06-21T09:21:52.4474455+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474455+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474456+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100133 + }, + "imageDetail": { + "width": 1507, + "height": 2977 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75008, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 133 }AA317E53-5982-4DBA-BE80-762906FF6301" + }, + "fileCreated": "2025-06-21T09:21:52.4474622+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474623+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447462+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100136 + }, + "imageDetail": { + "width": 7332, + "height": 4072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 39130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 136 }D99DEE2E-F586-486B-8031-CA43D6700EF0" + }, + "fileCreated": "2025-06-21T09:21:52.4474634+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474634+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474632+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100137 + }, + "imageDetail": { + "width": 7445, + "height": 4901 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62124, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 137 }57B4A2FC-5039-418B-909A-D6E9D9B9329F" + }, + "fileCreated": "2025-06-21T09:21:52.4474638+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474638+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474636+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100143 + }, + "imageDetail": { + "width": 9095, + "height": 4067 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26598, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 143 }DD800FBB-1087-4199-AC6D-FEF30697A0DE" + }, + "fileCreated": "2025-06-21T09:21:52.447466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474661+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474659+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100148 + }, + "imageDetail": { + "width": 4931, + "height": 4208 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63805, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 148 }01B6CC48-5B01-48A5-8701-A6A76F96CD86" + }, + "fileCreated": "2025-06-21T09:21:52.447472+00:00", + "fileLastModified": "2025-07-14T09:21:52.447472+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474721+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474718+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100149 + }, + "imageDetail": { + "width": 4545, + "height": 9547 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29831, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 149 }3117BDA8-7DD7-442E-BC4E-04DEACB69695" + }, + "fileCreated": "2025-06-21T09:21:52.4474724+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474724+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100151 + }, + "imageDetail": { + "width": 7466, + "height": 3819 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 20983, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 151 }FECB4EF3-896F-4E06-AE3C-80F3281085B0" + }, + "fileCreated": "2025-06-21T09:21:52.4474731+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474732+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100152 + }, + "imageDetail": { + "width": 7665, + "height": 3085 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80813, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 152 }EB791198-5F90-456C-B8C5-5648FE7DA744" + }, + "fileCreated": "2025-06-21T09:21:52.4474735+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100158 + }, + "imageDetail": { + "width": 6088, + "height": 3725 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 158 }E093906C-B076-4FD2-9A58-5858196ACD9C" + }, + "fileCreated": "2025-06-21T09:21:52.4474791+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474792+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100164 + }, + "imageDetail": { + "width": 9225, + "height": 4720 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38037, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 164 }75683B93-D336-48F6-9BD3-D6FDB4281419" + }, + "fileCreated": "2025-06-21T09:21:52.4474813+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474813+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100167 + }, + "imageDetail": { + "width": 5472, + "height": 2267 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71170, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 167 }8597C11B-32C7-4F8A-9B8F-20414FE003DE" + }, + "fileCreated": "2025-06-21T09:21:52.4474824+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100168 + }, + "imageDetail": { + "width": 8713, + "height": 7089 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93917, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 168 }8DD2944F-0E48-412E-BE66-418DD17292E3" + }, + "fileCreated": "2025-06-21T09:21:52.4474827+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100171 + }, + "imageDetail": { + "width": 888, + "height": 9932 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47122, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 171 }970DC3A7-4B72-4EA2-A08C-0EF8689EEFDE" + }, + "fileCreated": "2025-06-21T09:21:52.4474838+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474838+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100172 + }, + "imageDetail": { + "width": 9067, + "height": 5134 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 172 }4570FA2E-AB7A-46B2-90C6-66A8D6A85902" + }, + "fileCreated": "2025-06-21T09:21:52.4474866+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474864+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100173 + }, + "imageDetail": { + "width": 2560, + "height": 5168 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93881, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 173 }62916802-6521-4467-B6CB-0A43883B3185" + }, + "fileCreated": "2025-06-21T09:21:52.4474869+00:00", + "fileLastModified": "2025-07-14T09:21:52.447487+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474868+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100177 + }, + "imageDetail": { + "width": 7133, + "height": 9374 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71654, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 177 }ADB86447-F52E-4CBD-8CCA-1C886E01EB44" + }, + "fileCreated": "2025-06-21T09:21:52.4474884+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474884+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474885+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100178 + }, + "imageDetail": { + "width": 8392, + "height": 2510 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26336, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 178 }149261EC-57BE-4C7B-9F0E-5F112F476CB4" + }, + "fileCreated": "2025-06-21T09:21:52.4474888+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474889+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474889+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100179 + }, + "imageDetail": { + "width": 6957, + "height": 9637 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98809, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 179 }B9E1A883-0F7F-4FAA-85E3-0CCC665D3ADC" + }, + "fileCreated": "2025-06-21T09:21:52.4474892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474892+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474893+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100182 + }, + "imageDetail": { + "width": 516, + "height": 3889 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45445, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 182 }9E2A33E4-45D0-46F2-AA12-427D2929DB00" + }, + "fileCreated": "2025-06-21T09:21:52.4474903+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474904+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474904+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474902+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100183 + }, + "imageDetail": { + "width": 6795, + "height": 4078 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81837, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 183 }7B1BC74D-6DBE-4D64-8F30-2458505A44EF" + }, + "fileCreated": "2025-06-21T09:21:52.4474907+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474908+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474908+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474905+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100184 + }, + "imageDetail": { + "width": 6845, + "height": 5317 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81405, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 184 }59A2A21B-EAAC-4798-826F-265AAD5FFD80" + }, + "fileCreated": "2025-06-21T09:21:52.4474911+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474912+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474912+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100185 + }, + "imageDetail": { + "width": 2744, + "height": 8307 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59755, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 185 }A980C0BA-6824-459E-BEE2-09EDCD1B5BF2" + }, + "fileCreated": "2025-06-21T09:21:52.4474943+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474944+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100186 + }, + "imageDetail": { + "width": 6402, + "height": 4591 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22534, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 186 }CD37D3D4-EA8D-410D-BE98-29554F011F53" + }, + "fileCreated": "2025-06-21T09:21:52.4474947+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474947+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100187 + }, + "imageDetail": { + "width": 4461, + "height": 4951 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22778, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 187 }FA154BEB-549D-4B06-8F14-4492E0BD4C1D" + }, + "fileCreated": "2025-06-21T09:21:52.447495+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474951+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474951+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474949+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100192 + }, + "imageDetail": { + "width": 4803, + "height": 9368 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65990, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 192 }CE921C2A-8A34-4A1A-9E6B-B3A2FF0980CD" + }, + "fileCreated": "2025-06-21T09:21:52.4474969+00:00", + "fileLastModified": "2025-07-14T09:21:52.447497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474967+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100193 + }, + "imageDetail": { + "width": 2597, + "height": 8595 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88857, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 193 }A4E97F2B-4408-4A0B-9F05-4612FE02379A" + }, + "fileCreated": "2025-06-21T09:21:52.4474972+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474973+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474971+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100194 + }, + "imageDetail": { + "width": 9178, + "height": 2061 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41121, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 194 }DE7D4720-81DA-4311-9AD9-C5D3CCC79E42" + }, + "fileCreated": "2025-06-21T09:21:52.4474976+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474977+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474977+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474974+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100195 + }, + "imageDetail": { + "width": 9105, + "height": 3633 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64111, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 195 }32FA6358-88E1-4EB7-A450-33BCE7A6A6E0" + }, + "fileCreated": "2025-06-21T09:21:52.447498+00:00", + "fileLastModified": "2025-07-14T09:21:52.447498+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474981+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4474978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100198 + }, + "imageDetail": { + "width": 5570, + "height": 9155 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 84247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 198 }D821E036-E35C-4AE2-A9D5-0CDB332411AE" + }, + "fileCreated": "2025-06-21T09:21:52.4474992+00:00", + "fileLastModified": "2025-07-14T09:21:52.4474992+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4474992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100199 + }, + "imageDetail": { + "width": 5283, + "height": 8368 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 199 }BD91FC45-9AC4-4390-87EC-C7310EBE5CC4" + }, + "fileCreated": "2025-06-21T09:21:52.4475023+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475024+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475022+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100200 + }, + "imageDetail": { + "width": 1462, + "height": 6690 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 200 }264EA408-507B-43F3-86E4-8EB140BDADBD" + }, + "fileCreated": "2025-06-21T09:21:52.4475027+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475028+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475028+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475026+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100203 + }, + "imageDetail": { + "width": 6080, + "height": 2382 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 68715, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 203 }6BE0B4E6-DBA7-4B7F-AA64-C3EDF1D190BE" + }, + "fileCreated": "2025-06-21T09:21:52.4475039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447504+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447504+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100205 + }, + "imageDetail": { + "width": 8325, + "height": 3757 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 21352, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 205 }B0CF811E-0BC3-4922-966A-0695C8644F4D" + }, + "fileCreated": "2025-06-21T09:21:52.4475047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100207 + }, + "imageDetail": { + "width": 2286, + "height": 8671 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98541, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 207 }AFAE8A96-0901-4370-BAF5-770401A24F3F" + }, + "fileCreated": "2025-06-21T09:21:52.4475055+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475055+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475056+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100208 + }, + "imageDetail": { + "width": 3279, + "height": 7457 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45175, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 208 }9F16C70C-15D2-4B46-A696-FF0DA7DB49A1" + }, + "fileCreated": "2025-06-21T09:21:52.4475059+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475059+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447506+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475057+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100209 + }, + "imageDetail": { + "width": 1670, + "height": 3925 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54274, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 209 }30481E00-03D6-4477-A31F-811C568BB43A" + }, + "fileCreated": "2025-06-21T09:21:52.4475062+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475063+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475061+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100211 + }, + "imageDetail": { + "width": 1553, + "height": 3888 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31965, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 211 }81FA3EC1-3172-488F-B955-E0C43B542F1C" + }, + "fileCreated": "2025-06-21T09:21:52.447507+00:00", + "fileLastModified": "2025-07-14T09:21:52.447507+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475068+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100214 + }, + "imageDetail": { + "width": 9522, + "height": 7511 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28437, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 214 }6F25D4BE-B986-4237-AEAD-5D17453B8847" + }, + "fileCreated": "2025-06-21T09:21:52.4475104+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475105+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475102+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100215 + }, + "imageDetail": { + "width": 1654, + "height": 9289 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 215 }CE858CF0-C014-4C28-AD0E-34A8A3F68A52" + }, + "fileCreated": "2025-06-21T09:21:52.4475108+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475108+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475108+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100216 + }, + "imageDetail": { + "width": 2550, + "height": 2963 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 216 }49EF23A1-035D-4421-8850-1A57287F6593" + }, + "fileCreated": "2025-06-21T09:21:52.4475112+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475112+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447511+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100217 + }, + "imageDetail": { + "width": 8596, + "height": 8969 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 217 }917AE1DB-5F6D-4704-AFD1-BD6D6CD9F1C1" + }, + "fileCreated": "2025-06-21T09:21:52.4475115+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475116+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475116+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475113+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100220 + }, + "imageDetail": { + "width": 4502, + "height": 8397 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32303, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 220 }0C6CAEE8-8B9D-4DDF-BEC6-B70337E9DCA5" + }, + "fileCreated": "2025-06-21T09:21:52.4475127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475127+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475127+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100224 + }, + "imageDetail": { + "width": 9563, + "height": 9120 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93535, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 224 }C92523A6-6164-4BFE-A4DD-A6A6EADC1D9C" + }, + "fileCreated": "2025-06-21T09:21:52.4475141+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475142+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100226 + }, + "imageDetail": { + "width": 7787, + "height": 6020 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 226 }C8329D80-4CAC-4137-8DAE-E7BD0335C03A" + }, + "fileCreated": "2025-06-21T09:21:52.4475176+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475176+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475177+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475147+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100229 + }, + "imageDetail": { + "width": 4782, + "height": 8371 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41331, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 229 }F62754E9-C703-4950-AC41-3C676192FA4F" + }, + "fileCreated": "2025-06-21T09:21:52.4475187+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475188+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475186+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100230 + }, + "imageDetail": { + "width": 7964, + "height": 4149 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 82017, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 230 }FECB8F0D-69BE-4450-B7FB-EAFCFA319270" + }, + "fileCreated": "2025-06-21T09:21:52.4475191+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475192+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475192+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100231 + }, + "imageDetail": { + "width": 5214, + "height": 4790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42940, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 231 }681D5EF4-6D7F-4F98-80AC-902BFC038715" + }, + "fileCreated": "2025-06-21T09:21:52.4475195+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475195+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475193+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100232 + }, + "imageDetail": { + "width": 6185, + "height": 2337 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 232 }1DA3527D-CB2B-4B5E-A040-6FCFDE7DC333" + }, + "fileCreated": "2025-06-21T09:21:52.4475198+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475199+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475199+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475197+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100233 + }, + "imageDetail": { + "width": 1415, + "height": 5157 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72921, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 233 }7DD53407-3DA3-4AD9-81DA-C05B73CA3ED8" + }, + "fileCreated": "2025-06-21T09:21:52.4475202+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475202+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475203+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100234 + }, + "imageDetail": { + "width": 1012, + "height": 9035 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 234 }662A1B01-1FDF-408D-B24E-B129B1ED9B73" + }, + "fileCreated": "2025-06-21T09:21:52.4475206+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475207+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475204+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100236 + }, + "imageDetail": { + "width": 3653, + "height": 6073 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 236 }07D300EA-5263-42F4-BA39-63568C71EC34" + }, + "fileCreated": "2025-06-21T09:21:52.4475214+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475214+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475215+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475212+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100238 + }, + "imageDetail": { + "width": 6061, + "height": 2215 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 74058, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 238 }399E582B-E5AE-4B3C-9590-BD6ADF3FCCFC" + }, + "fileCreated": "2025-06-21T09:21:52.4475221+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475222+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100239 + }, + "imageDetail": { + "width": 4605, + "height": 2866 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96321, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 239 }61CB0B00-BBEB-415F-8D21-EFE774C3C756" + }, + "fileCreated": "2025-06-21T09:21:52.4475225+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475226+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475224+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100240 + }, + "imageDetail": { + "width": 9273, + "height": 8339 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85485, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 240 }ACDD3869-F3E2-431A-B076-A03BF2795576" + }, + "fileCreated": "2025-06-21T09:21:52.4475244+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475245+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475246+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475243+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100242 + }, + "imageDetail": { + "width": 2734, + "height": 6140 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38986, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 242 }B80C9B10-E0B2-44AF-AC73-631EF24439AE" + }, + "fileCreated": "2025-06-21T09:21:52.4475253+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475253+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475254+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475251+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100243 + }, + "imageDetail": { + "width": 2171, + "height": 4685 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93165, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 243 }643852BC-AB8E-4021-AB59-CDC0F5A9B733" + }, + "fileCreated": "2025-06-21T09:21:52.4475257+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475258+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100246 + }, + "imageDetail": { + "width": 8322, + "height": 5603 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65204, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 246 }FDC7ECB4-F7B5-4B67-8226-4EA5847C942D" + }, + "fileCreated": "2025-06-21T09:21:52.4475268+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475268+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475266+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100247 + }, + "imageDetail": { + "width": 5746, + "height": 8737 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57189, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 247 }B4B13EAF-4346-4F3E-AFE4-82C8D03F3359" + }, + "fileCreated": "2025-06-21T09:21:52.4475271+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475272+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100248 + }, + "imageDetail": { + "width": 9117, + "height": 6034 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96647, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 248 }464D56BC-3298-4C2A-84D1-F4C85167EA6F" + }, + "fileCreated": "2025-06-21T09:21:52.4475275+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475275+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475276+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475273+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100250 + }, + "imageDetail": { + "width": 7447, + "height": 6079 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 250 }A19681B3-6859-4CA3-B143-A4A7B6FA584F" + }, + "fileCreated": "2025-06-21T09:21:52.4475282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100251 + }, + "imageDetail": { + "width": 5501, + "height": 2369 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24853, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 251 }9490D9ED-D177-4D9C-813C-6082DD294292" + }, + "fileCreated": "2025-06-21T09:21:52.4475286+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475286+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100254 + }, + "imageDetail": { + "width": 9998, + "height": 6009 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 254 }1E86F209-0AFD-421B-94C4-2FE4ED43C58E" + }, + "fileCreated": "2025-06-21T09:21:52.4475335+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475336+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100266 + }, + "imageDetail": { + "width": 8822, + "height": 7269 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70839, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 266 }48E28420-253E-4426-8A19-D02CEF86798F" + }, + "fileCreated": "2025-06-21T09:21:52.4475418+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100268 + }, + "imageDetail": { + "width": 9509, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44235, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 268 }7F843A81-C2BF-45D9-8BEF-71A60864B761" + }, + "fileCreated": "2025-06-21T09:21:52.4475426+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475427+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475425+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100271 + }, + "imageDetail": { + "width": 1971, + "height": 2146 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83126, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 271 }40FD7D9F-D6A7-465F-B83E-502A368006D1" + }, + "fileCreated": "2025-06-21T09:21:52.4475437+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475438+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475439+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475436+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100274 + }, + "imageDetail": { + "width": 478, + "height": 8204 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30913, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 274 }1B154E1A-C50E-42CB-B669-43CEDD3116EF" + }, + "fileCreated": "2025-06-21T09:21:52.4475475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475475+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100277 + }, + "imageDetail": { + "width": 605, + "height": 4449 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31460, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 277 }B74DDE57-EEAB-49B6-9CD8-2610F1F50715" + }, + "fileCreated": "2025-06-21T09:21:52.4475486+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475486+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100279 + }, + "imageDetail": { + "width": 4323, + "height": 9707 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 279 }D7599779-08E5-4816-9A16-A847D4863AA9" + }, + "fileCreated": "2025-06-21T09:21:52.4475493+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475493+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475494+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100280 + }, + "imageDetail": { + "width": 4869, + "height": 3417 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25126, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 280 }9F8CC7D6-2E95-4606-96A8-5E9E288627CC" + }, + "fileCreated": "2025-06-21T09:21:52.4475497+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475497+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475495+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100281 + }, + "imageDetail": { + "width": 1944, + "height": 2716 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79738, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 281 }083FC378-F67E-479A-8C36-20959510F057" + }, + "fileCreated": "2025-06-21T09:21:52.44755+00:00", + "fileLastModified": "2025-07-14T09:21:52.44755+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475501+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100283 + }, + "imageDetail": { + "width": 5388, + "height": 6777 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40524, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 283 }20215B8A-EEC4-4174-896B-DD74D9408D60" + }, + "fileCreated": "2025-06-21T09:21:52.4475508+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475508+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475506+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100284 + }, + "imageDetail": { + "width": 7657, + "height": 7964 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90850, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 284 }5B754235-EDC8-4C79-B40E-EB9505B50E72" + }, + "fileCreated": "2025-06-21T09:21:52.4475511+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475512+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100285 + }, + "imageDetail": { + "width": 6771, + "height": 2381 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75595, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 285 }9CFF331F-B1AB-4634-8515-4BC21FD777AA" + }, + "fileCreated": "2025-06-21T09:21:52.4475515+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475516+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100286 + }, + "imageDetail": { + "width": 5024, + "height": 7266 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67733, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 286 }17A59FB6-3B3D-45D6-AF50-4B074D5E5E27" + }, + "fileCreated": "2025-06-21T09:21:52.4475519+00:00", + "fileLastModified": "2025-07-14T09:21:52.447552+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475517+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100287 + }, + "imageDetail": { + "width": 9833, + "height": 7307 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69040, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 287 }F98A2385-B28E-4D83-8434-CD10855ED387" + }, + "fileCreated": "2025-06-21T09:21:52.4475545+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475546+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475521+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100289 + }, + "imageDetail": { + "width": 2513, + "height": 2486 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 70087, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 289 }53AC4B08-C1AD-4D32-BD60-5C754C6CC46A" + }, + "fileCreated": "2025-06-21T09:21:52.4475552+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100291 + }, + "imageDetail": { + "width": 3894, + "height": 5856 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25885, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 291 }298F4D1B-7692-49CB-9296-1DB195C4E01F" + }, + "fileCreated": "2025-06-21T09:21:52.447556+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475561+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475559+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100292 + }, + "imageDetail": { + "width": 4415, + "height": 5626 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 292 }B352A740-2B3F-4D33-8106-FADF52CC13FB" + }, + "fileCreated": "2025-06-21T09:21:52.4475563+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475564+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475565+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475562+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100294 + }, + "imageDetail": { + "width": 5116, + "height": 4034 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48682, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 294 }9EDCAC13-A929-481F-8A5B-B589FDA1C5C0" + }, + "fileCreated": "2025-06-21T09:21:52.4475571+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475572+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475572+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100297 + }, + "imageDetail": { + "width": 4515, + "height": 2907 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 29834, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 297 }9D76731E-06EC-4A63-9289-ED5C84037B25" + }, + "fileCreated": "2025-06-21T09:21:52.4475582+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475583+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100298 + }, + "imageDetail": { + "width": 5633, + "height": 9152 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28663, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 298 }C64477AB-395E-4B6D-991F-5279BCEDF0E2" + }, + "fileCreated": "2025-06-21T09:21:52.4475586+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475586+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475587+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475584+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100301 + }, + "imageDetail": { + "width": 3956, + "height": 6000 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40588, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 301 }76DAA165-9BE0-458C-961C-87172B62BA29" + }, + "fileCreated": "2025-06-21T09:21:52.4475692+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475693+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475693+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100302 + }, + "imageDetail": { + "width": 3133, + "height": 7770 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26274, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 302 }786E46C1-8D65-4835-B501-3CF031283B27" + }, + "fileCreated": "2025-06-21T09:21:52.4475696+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475695+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100303 + }, + "imageDetail": { + "width": 6487, + "height": 3939 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 303 }4EE7BF46-F42C-4EFF-8F21-7A67D378B874" + }, + "fileCreated": "2025-06-21T09:21:52.44757+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475701+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475698+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100305 + }, + "imageDetail": { + "width": 1050, + "height": 4111 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88999, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 305 }7485AE43-4931-455E-AA26-C0ABED13A336" + }, + "fileCreated": "2025-06-21T09:21:52.4475708+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475708+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100307 + }, + "imageDetail": { + "width": 2067, + "height": 9137 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37451, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 307 }3E3E6D61-D69A-4669-9CF7-4D77A84698AC" + }, + "fileCreated": "2025-06-21T09:21:52.4475715+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475716+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475716+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475714+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100309 + }, + "imageDetail": { + "width": 6905, + "height": 3016 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96471, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 309 }4F3D7C4B-3BB8-468B-B923-8E0FB7500F5C" + }, + "fileCreated": "2025-06-21T09:21:52.4475723+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475724+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100312 + }, + "imageDetail": { + "width": 1715, + "height": 2409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62139, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 312 }BE5C1ACA-F0B3-495A-B369-4F1A8AE2E617" + }, + "fileCreated": "2025-06-21T09:21:52.4475734+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100314 + }, + "imageDetail": { + "width": 5826, + "height": 2499 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 314 }6CC3B878-3869-4F61-8B90-B165C3CF0A9A" + }, + "fileCreated": "2025-06-21T09:21:52.4475742+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475743+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475743+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475741+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100315 + }, + "imageDetail": { + "width": 944, + "height": 8357 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 68920, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 315 }4464DA6D-EC1F-4F8B-A021-E6EB4F857FCF" + }, + "fileCreated": "2025-06-21T09:21:52.4475772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475773+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475773+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475771+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100317 + }, + "imageDetail": { + "width": 7404, + "height": 5906 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61803, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 317 }0190FEAF-E44D-424D-9124-8797AFA348C2" + }, + "fileCreated": "2025-06-21T09:21:52.447578+00:00", + "fileLastModified": "2025-07-14T09:21:52.447578+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475778+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100318 + }, + "imageDetail": { + "width": 7765, + "height": 2560 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68103, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 318 }043EE02F-DE27-4D94-B636-98D1AAFB8940" + }, + "fileCreated": "2025-06-21T09:21:52.4475783+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475784+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100319 + }, + "imageDetail": { + "width": 7909, + "height": 5800 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49350, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 319 }7CB34117-B75C-4ABF-9D0B-DD29B1351DB5" + }, + "fileCreated": "2025-06-21T09:21:52.4475786+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475787+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475787+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475785+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100321 + }, + "imageDetail": { + "width": 1999, + "height": 6424 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 321 }7B213BBC-CB31-453A-B874-4FE8434AF814" + }, + "fileCreated": "2025-06-21T09:21:52.4475794+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475795+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475793+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100324 + }, + "imageDetail": { + "width": 2347, + "height": 9454 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 69043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 324 }1E9A7DAA-BD98-4720-925C-047F5D3D5D6D" + }, + "fileCreated": "2025-06-21T09:21:52.4475805+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475806+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100326 + }, + "imageDetail": { + "width": 8948, + "height": 2476 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 326 }419FDF58-7088-4956-B543-C8F2E87BAA27" + }, + "fileCreated": "2025-06-21T09:21:52.4475813+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475813+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100327 + }, + "imageDetail": { + "width": 3561, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 327 }4E02C3F0-0340-4FF1-9457-BFD36941B619" + }, + "fileCreated": "2025-06-21T09:21:52.4475816+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475817+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475815+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100329 + }, + "imageDetail": { + "width": 7550, + "height": 3678 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42853, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 329 }F23E4B8F-97FB-46F7-9AF0-56595944981B" + }, + "fileCreated": "2025-06-21T09:21:52.4475849+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475849+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100333 + }, + "imageDetail": { + "width": 8720, + "height": 3858 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 333 }3441998C-5BCA-442A-9460-CC8AACF3815C" + }, + "fileCreated": "2025-06-21T09:21:52.4475863+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475864+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475864+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100334 + }, + "imageDetail": { + "width": 2397, + "height": 6999 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27666, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 334 }F542EA55-66AA-44CC-B495-94B72F386FC9" + }, + "fileCreated": "2025-06-21T09:21:52.4475867+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475868+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100340 + }, + "imageDetail": { + "width": 7494, + "height": 5061 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87378, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 340 }3959F6C6-76A3-44C2-8613-E8AE09619C86" + }, + "fileCreated": "2025-06-21T09:21:52.4475891+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475891+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100342 + }, + "imageDetail": { + "width": 1021, + "height": 4789 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93478, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 342 }C626E98C-055D-4432-83BA-C9BA2AEBF063" + }, + "fileCreated": "2025-06-21T09:21:52.4475915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475915+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475913+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100346 + }, + "imageDetail": { + "width": 8659, + "height": 5219 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 346 }1D7E0C8D-F874-43F8-AA72-E02874141B4F" + }, + "fileCreated": "2025-06-21T09:21:52.447593+00:00", + "fileLastModified": "2025-07-14T09:21:52.447593+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4475931+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475928+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100349 + }, + "imageDetail": { + "width": 6261, + "height": 2321 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 30395, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 349 }1D69159E-46CC-4B2A-9B73-2505805D83B1" + }, + "fileCreated": "2025-06-21T09:21:52.447594+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475941+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100350 + }, + "imageDetail": { + "width": 5775, + "height": 3687 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 85008, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 350 }AA5A2B60-04FA-401C-AAF7-2F709A560CEA" + }, + "fileCreated": "2025-06-21T09:21:52.4475944+00:00", + "fileLastModified": "2025-07-14T09:21:52.4475944+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4475942+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100357 + }, + "imageDetail": { + "width": 9647, + "height": 9855 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66004, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 357 }225BA883-5C33-4D03-B983-F81B6C842B16" + }, + "fileCreated": "2025-06-21T09:21:52.447601+00:00", + "fileLastModified": "2025-07-14T09:21:52.447601+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100358 + }, + "imageDetail": { + "width": 6450, + "height": 4746 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 358 }020D2803-2FD8-4770-B3E9-FB8EB4D08D0B" + }, + "fileCreated": "2025-06-21T09:21:52.4476013+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476014+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476012+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100361 + }, + "imageDetail": { + "width": 1724, + "height": 8967 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25826, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 361 }54282FB9-AD39-4C52-A719-6DAD50D07769" + }, + "fileCreated": "2025-06-21T09:21:52.4476024+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476025+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476023+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100363 + }, + "imageDetail": { + "width": 4798, + "height": 5921 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31582, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 363 }C88857ED-3947-497D-97D0-1228D285E2DF" + }, + "fileCreated": "2025-06-21T09:21:52.4476032+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476033+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447603+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100365 + }, + "imageDetail": { + "width": 6245, + "height": 5860 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90389, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 365 }A0F4AE4F-3DB0-4563-A512-826F975B9C8D" + }, + "fileCreated": "2025-06-21T09:21:52.4476039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447604+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100367 + }, + "imageDetail": { + "width": 7236, + "height": 8227 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62084, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 367 }25EEC562-F0D8-4FA9-AAB8-862514EA10D8" + }, + "fileCreated": "2025-06-21T09:21:52.4476047+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476047+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476048+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100369 + }, + "imageDetail": { + "width": 4862, + "height": 2378 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 369 }39977D13-0AF4-449D-ABF8-7755B7EA2AEC" + }, + "fileCreated": "2025-06-21T09:21:52.447609+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476089+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100370 + }, + "imageDetail": { + "width": 3161, + "height": 2615 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 70546, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 370 }79BD1CA2-71F2-4478-89E1-B6497E352AC1" + }, + "fileCreated": "2025-06-21T09:21:52.4476094+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476095+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476095+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476092+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100371 + }, + "imageDetail": { + "width": 9772, + "height": 3466 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 371 }37380BD9-6E13-4E57-A92E-40744F753501" + }, + "fileCreated": "2025-06-21T09:21:52.4476098+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476099+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100372 + }, + "imageDetail": { + "width": 7227, + "height": 6994 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37372, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 372 }54F65433-72DB-44AE-8A13-4D009A14FC54" + }, + "fileCreated": "2025-06-21T09:21:52.4476102+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476102+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100373 + }, + "imageDetail": { + "width": 9815, + "height": 9675 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96798, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 373 }B06CB687-0233-4E8C-9036-949AAABD61F7" + }, + "fileCreated": "2025-06-21T09:21:52.4476105+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476106+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100374 + }, + "imageDetail": { + "width": 6144, + "height": 6814 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 374 }693C4547-43E6-4373-B868-666383E3C031" + }, + "fileCreated": "2025-06-21T09:21:52.4476109+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476109+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100378 + }, + "imageDetail": { + "width": 280, + "height": 2142 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 20311, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 378 }7155AD8E-AE21-40BC-B5A0-C6B239E123F3" + }, + "fileCreated": "2025-06-21T09:21:52.4476124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100379 + }, + "imageDetail": { + "width": 4603, + "height": 3485 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 68865, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 379 }F9BF22FC-C6CD-42EA-98E0-903D25CA5F3E" + }, + "fileCreated": "2025-06-21T09:21:52.4476127+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476128+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476128+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476126+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100380 + }, + "imageDetail": { + "width": 9008, + "height": 9175 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38349, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 380 }E8263930-485F-410D-9BF2-932BA1633C2C" + }, + "fileCreated": "2025-06-21T09:21:52.4476131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476132+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100381 + }, + "imageDetail": { + "width": 8776, + "height": 5136 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98519, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 381 }180B34EC-154C-46CC-BE4B-829982D1635D" + }, + "fileCreated": "2025-06-21T09:21:52.4476135+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476135+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476136+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476133+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100382 + }, + "imageDetail": { + "width": 4503, + "height": 2703 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82420, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 382 }61056585-DF53-4D20-8BCB-7B22F45ED63F" + }, + "fileCreated": "2025-06-21T09:21:52.4476139+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476139+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447614+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476137+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100385 + }, + "imageDetail": { + "width": 1641, + "height": 2285 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 81129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 385 }A97F1DD3-60CF-4B3D-A144-C60EFCFE2965" + }, + "fileCreated": "2025-06-21T09:21:52.4476175+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476175+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476173+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100386 + }, + "imageDetail": { + "width": 182, + "height": 3852 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31883, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 386 }DD09F6D7-4767-4460-ADD1-ACD651D817E8" + }, + "fileCreated": "2025-06-21T09:21:52.4476178+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476179+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476179+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100388 + }, + "imageDetail": { + "width": 1163, + "height": 6407 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86880, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 388 }F049C34B-DD49-48BA-A965-494B3DA5DF7E" + }, + "fileCreated": "2025-06-21T09:21:52.4476186+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476187+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476185+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100390 + }, + "imageDetail": { + "width": 1536, + "height": 8472 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90944, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 390 }A0BFA92C-0920-4CAF-8345-7F1FD53264BB" + }, + "fileCreated": "2025-06-21T09:21:52.4476193+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476194+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476192+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100393 + }, + "imageDetail": { + "width": 3489, + "height": 4585 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 74448, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 393 }6567B0B0-38A8-4448-A9BD-A3FDE325C3A9" + }, + "fileCreated": "2025-06-21T09:21:52.4476205+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476205+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100394 + }, + "imageDetail": { + "width": 8287, + "height": 2936 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31063, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 394 }680612A2-A9CA-4981-B532-22888D79C884" + }, + "fileCreated": "2025-06-21T09:21:52.4476208+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476209+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476207+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100396 + }, + "imageDetail": { + "width": 9002, + "height": 4543 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73928, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 396 }A3392D40-EFCC-4A4C-919B-10491FB84052" + }, + "fileCreated": "2025-06-21T09:21:52.4476245+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476246+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100397 + }, + "imageDetail": { + "width": 1254, + "height": 2451 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62238, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 397 }004DD0C4-3ABB-4612-8DF1-ACB277F4ED01" + }, + "fileCreated": "2025-06-21T09:21:52.4476249+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476249+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476247+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100399 + }, + "imageDetail": { + "width": 6664, + "height": 8400 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 93585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 399 }0688A469-DAAC-42B6-B40A-FC477B4124D8" + }, + "fileCreated": "2025-06-21T09:21:52.4476256+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476255+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100400 + }, + "imageDetail": { + "width": 8609, + "height": 9681 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80101, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 400 }7A151AD6-F4CF-478A-8349-40C042328BC9" + }, + "fileCreated": "2025-06-21T09:21:52.447626+00:00", + "fileLastModified": "2025-07-14T09:21:52.447626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476258+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100401 + }, + "imageDetail": { + "width": 2373, + "height": 5404 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33523, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 401 }2B7B3DB9-DE67-4F64-83F0-562018FCD65B" + }, + "fileCreated": "2025-06-21T09:21:52.4476263+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476263+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476264+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476261+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100402 + }, + "imageDetail": { + "width": 2240, + "height": 3805 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 402 }0493F41C-1F48-4AF0-A2D8-205F452B64E4" + }, + "fileCreated": "2025-06-21T09:21:52.4476267+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100407 + }, + "imageDetail": { + "width": 6904, + "height": 3620 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36158, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 407 }737FE8C6-8495-4335-B6C0-188BA6DD952A" + }, + "fileCreated": "2025-06-21T09:21:52.4476285+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476286+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476286+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100408 + }, + "imageDetail": { + "width": 6889, + "height": 2910 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 58640, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 408 }197FD681-F70C-4D0F-943F-4961096C76D1" + }, + "fileCreated": "2025-06-21T09:21:52.4476289+00:00", + "fileLastModified": "2025-07-14T09:21:52.447629+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447629+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476288+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100412 + }, + "imageDetail": { + "width": 2726, + "height": 7026 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35610, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 412 }4FFF5A1A-715C-47D0-9E64-787D3296C6A1" + }, + "fileCreated": "2025-06-21T09:21:52.4476331+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476332+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447633+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100413 + }, + "imageDetail": { + "width": 537, + "height": 7164 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 413 }006B8F69-1C0C-45ED-8ED6-21AE51ABCA80" + }, + "fileCreated": "2025-06-21T09:21:52.4476335+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476335+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476336+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476333+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100416 + }, + "imageDetail": { + "width": 6289, + "height": 7356 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65722, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 416 }4B5F08BC-781C-40BF-97B5-D556C9CA02D0" + }, + "fileCreated": "2025-06-21T09:21:52.4476346+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476347+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476345+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100419 + }, + "imageDetail": { + "width": 7025, + "height": 7962 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37507, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 419 }9AA03CE7-618F-4988-9966-080AACA098FC" + }, + "fileCreated": "2025-06-21T09:21:52.4476358+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476358+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476356+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100421 + }, + "imageDetail": { + "width": 6019, + "height": 7197 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 421 }17F5C98C-B65E-48B0-BA4A-8F1CF4BBA750" + }, + "fileCreated": "2025-06-21T09:21:52.4476364+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476365+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476365+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476363+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100422 + }, + "imageDetail": { + "width": 9337, + "height": 5562 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26086, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 422 }BBCC47ED-75D2-4A53-AF03-458990E31C07" + }, + "fileCreated": "2025-06-21T09:21:52.4476368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476369+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100423 + }, + "imageDetail": { + "width": 2461, + "height": 2208 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63792, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 423 }F8FAEABB-EFD6-47EA-BA8C-EF8726B71E07" + }, + "fileCreated": "2025-06-21T09:21:52.4476372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476372+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100424 + }, + "imageDetail": { + "width": 2841, + "height": 9195 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24382, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 424 }9C035742-1A51-4443-84B4-17B162F492A5" + }, + "fileCreated": "2025-06-21T09:21:52.4476399+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476399+00:00", + "fileLastViewed": "2025-07-14T09:21:52.44764+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476397+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100425 + }, + "imageDetail": { + "width": 4412, + "height": 5284 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 93533, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 425 }642FC339-7FD6-4BD2-9BA2-44EC1330EE37" + }, + "fileCreated": "2025-06-21T09:21:52.4476403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100426 + }, + "imageDetail": { + "width": 6930, + "height": 3544 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 426 }8B5CC986-6575-4763-AD80-8A5367F48D8E" + }, + "fileCreated": "2025-06-21T09:21:52.4476406+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476407+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476407+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476405+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100427 + }, + "imageDetail": { + "width": 2049, + "height": 3571 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39407, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 427 }1A54C698-10C1-42E5-A43C-5F3CF55A36E8" + }, + "fileCreated": "2025-06-21T09:21:52.447641+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476411+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100430 + }, + "imageDetail": { + "width": 8970, + "height": 3931 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24515, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 430 }23399511-B10C-4F19-AB98-406892D0126E" + }, + "fileCreated": "2025-06-21T09:21:52.4476422+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476422+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447642+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100431 + }, + "imageDetail": { + "width": 8287, + "height": 9755 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57571, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 431 }77560D2E-031D-43D1-9500-6505377EC6DF" + }, + "fileCreated": "2025-06-21T09:21:52.4476425+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476426+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476426+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100433 + }, + "imageDetail": { + "width": 5098, + "height": 6362 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 433 }48A25AFA-9EFD-4A09-B00A-953F0D772101" + }, + "fileCreated": "2025-06-21T09:21:52.4476433+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476433+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476431+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100434 + }, + "imageDetail": { + "width": 4502, + "height": 5761 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 56269, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 434 }2A20579C-5A37-489C-BFC7-EEA1FE1C3784" + }, + "fileCreated": "2025-06-21T09:21:52.4476436+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476437+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476435+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100435 + }, + "imageDetail": { + "width": 9040, + "height": 7514 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 74555, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 435 }DCED64FC-42D4-460C-8D0A-2DC4D72EDB0D" + }, + "fileCreated": "2025-06-21T09:21:52.447644+00:00", + "fileLastModified": "2025-07-14T09:21:52.447644+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476441+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476438+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100436 + }, + "imageDetail": { + "width": 2639, + "height": 6709 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 436 }67378B67-9870-4DCD-B279-8B6B0A0FBA0E" + }, + "fileCreated": "2025-06-21T09:21:52.4476444+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476444+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476442+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100437 + }, + "imageDetail": { + "width": 334, + "height": 9858 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64328, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 437 }553A6E88-2888-4BE0-A5A0-CCCC3ED6AFC0" + }, + "fileCreated": "2025-06-21T09:21:52.4476471+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476471+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476469+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100443 + }, + "imageDetail": { + "width": 5782, + "height": 9862 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 38083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 443 }4A2DE8DD-FB17-40D7-9711-6D18C94B6024" + }, + "fileCreated": "2025-06-21T09:21:52.4476493+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476494+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476494+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476492+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100444 + }, + "imageDetail": { + "width": 3023, + "height": 4483 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 444 }BEE5952F-8D58-47AA-ADE3-06081475533B" + }, + "fileCreated": "2025-06-21T09:21:52.4476497+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476498+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476496+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100445 + }, + "imageDetail": { + "width": 8057, + "height": 5510 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45865, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 445 }F2512D99-D61B-4146-85F7-E89ED86F3DFA" + }, + "fileCreated": "2025-06-21T09:21:52.4476501+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476501+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476502+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100446 + }, + "imageDetail": { + "width": 3969, + "height": 7459 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 446 }0E6CF8BE-C7C2-4CEE-A5BB-399AFCAA24BF" + }, + "fileCreated": "2025-06-21T09:21:52.4476505+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476505+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100447 + }, + "imageDetail": { + "width": 8129, + "height": 8927 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35699, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 447 }7DD03B97-C5AE-40D7-91AE-B5C2530A0702" + }, + "fileCreated": "2025-06-21T09:21:52.4476508+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476509+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476509+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476507+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100449 + }, + "imageDetail": { + "width": 4809, + "height": 2781 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 98658, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 449 }F04F02DB-26BE-464A-A566-E3BA9DC89683" + }, + "fileCreated": "2025-06-21T09:21:52.4476516+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476516+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476514+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100452 + }, + "imageDetail": { + "width": 7904, + "height": 3040 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59339, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 452 }2BCCC5B0-25D5-4641-853C-87F5C19EBFE6" + }, + "fileCreated": "2025-06-21T09:21:52.4476543+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476544+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100454 + }, + "imageDetail": { + "width": 7094, + "height": 2798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 454 }1176D6DA-0361-4232-B7D3-1174251171BD" + }, + "fileCreated": "2025-06-21T09:21:52.4476551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100459 + }, + "imageDetail": { + "width": 7248, + "height": 5398 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59501, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 459 }D143A69E-BC9B-4E71-8754-51CFA7E6AD64" + }, + "fileCreated": "2025-06-21T09:21:52.447657+00:00", + "fileLastModified": "2025-07-14T09:21:52.447657+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476568+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100462 + }, + "imageDetail": { + "width": 7358, + "height": 4229 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 462 }59A8EF24-6D61-4AC1-832A-422EE5DED59B" + }, + "fileCreated": "2025-06-21T09:21:52.447658+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100464 + }, + "imageDetail": { + "width": 7718, + "height": 2506 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80302, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 464 }3D5B7491-9269-41AE-87CF-6234246B7642" + }, + "fileCreated": "2025-06-21T09:21:52.4476625+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476624+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100465 + }, + "imageDetail": { + "width": 2764, + "height": 3984 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29408, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 465 }2D983FD1-6679-4BB8-AA13-3C8FD1E70A77" + }, + "fileCreated": "2025-06-21T09:21:52.4476629+00:00", + "fileLastModified": "2025-07-14T09:21:52.447663+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100466 + }, + "imageDetail": { + "width": 6231, + "height": 2311 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49930, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 466 }8CE5FECD-D4B0-4C2B-A9DA-D053AF4D4AAE" + }, + "fileCreated": "2025-06-21T09:21:52.4476633+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476633+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476634+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476631+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100467 + }, + "imageDetail": { + "width": 6378, + "height": 8703 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75981, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 467 }DCE54B25-3440-4AC8-AEDA-859D9BA5A3ED" + }, + "fileCreated": "2025-06-21T09:21:52.4476637+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476637+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476635+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100469 + }, + "imageDetail": { + "width": 1023, + "height": 8008 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99062, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 469 }D7523449-C2DF-49F9-B007-E6F97B7EE737" + }, + "fileCreated": "2025-06-21T09:21:52.4476644+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476645+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100470 + }, + "imageDetail": { + "width": 1901, + "height": 8386 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54674, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 470 }957804AA-B286-4075-8D72-3C2AFD3CDC62" + }, + "fileCreated": "2025-06-21T09:21:52.4476648+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476648+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476649+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100471 + }, + "imageDetail": { + "width": 9198, + "height": 9704 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53027, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 471 }9920C1D2-0DA5-4E24-9944-6CF3FB454CE1" + }, + "fileCreated": "2025-06-21T09:21:52.4476652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476652+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100472 + }, + "imageDetail": { + "width": 8714, + "height": 4685 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76388, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 472 }45592D08-E181-4F86-8254-E23A4A1307D2" + }, + "fileCreated": "2025-06-21T09:21:52.4476655+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476656+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476656+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100473 + }, + "imageDetail": { + "width": 4495, + "height": 9895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73196, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 473 }54AB3E7A-6F95-4AD1-9E53-80FCCFBDC32A" + }, + "fileCreated": "2025-06-21T09:21:52.4476659+00:00", + "fileLastModified": "2025-07-14T09:21:52.447666+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447666+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100474 + }, + "imageDetail": { + "width": 859, + "height": 2357 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71204, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 474 }42285C20-5F0E-4966-A3C9-45E81A18E893" + }, + "fileCreated": "2025-06-21T09:21:52.4476663+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476664+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476662+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100475 + }, + "imageDetail": { + "width": 3715, + "height": 5765 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43668, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 475 }7B73961F-3B00-4C21-A874-584A379338F6" + }, + "fileCreated": "2025-06-21T09:21:52.4476667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100476 + }, + "imageDetail": { + "width": 8500, + "height": 2179 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49774, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 476 }32ECA8C1-F677-42BD-A8D8-2CC8D6218932" + }, + "fileCreated": "2025-06-21T09:21:52.447667+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476669+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100477 + }, + "imageDetail": { + "width": 7995, + "height": 5121 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 477 }8D7C6A66-3E9A-480C-A604-DEF75AA38181" + }, + "fileCreated": "2025-06-21T09:21:52.4476674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476675+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100479 + }, + "imageDetail": { + "width": 5532, + "height": 5237 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 50455, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 479 }E2EA7318-09E5-4A5C-BB7F-79208A9F8B6E" + }, + "fileCreated": "2025-06-21T09:21:52.4476774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476774+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476773+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100480 + }, + "imageDetail": { + "width": 759, + "height": 4341 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56370, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 480 }6D589D9B-7028-4DCE-9A52-7DF40DF06165" + }, + "fileCreated": "2025-06-21T09:21:52.4476777+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476778+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476778+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476776+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100485 + }, + "imageDetail": { + "width": 302, + "height": 9344 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60423, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 485 }331A58C1-B38B-4E6A-8C44-9F35129290BE" + }, + "fileCreated": "2025-06-21T09:21:52.4476797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476797+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476795+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100487 + }, + "imageDetail": { + "width": 2239, + "height": 8784 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86442, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 487 }CF5FCC3A-79FB-4103-8927-F29613A4A6DD" + }, + "fileCreated": "2025-06-21T09:21:52.4476804+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476805+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476803+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100490 + }, + "imageDetail": { + "width": 2342, + "height": 4238 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 55866, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 490 }626008F6-D78D-475F-A7C9-EA4BF1B8B02C" + }, + "fileCreated": "2025-06-21T09:21:52.4476815+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476816+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476814+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100492 + }, + "imageDetail": { + "width": 8888, + "height": 9212 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 492 }B1BD6732-B856-47FB-890F-A5233350C0FF" + }, + "fileCreated": "2025-06-21T09:21:52.4476851+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476852+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100494 + }, + "imageDetail": { + "width": 8444, + "height": 2338 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 494 }44AF0FFF-9E62-48AC-A8EF-617ED571946C" + }, + "fileCreated": "2025-06-21T09:21:52.4476859+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476859+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447686+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476857+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100495 + }, + "imageDetail": { + "width": 4063, + "height": 9781 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 79793, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 495 }44FC5291-63D0-405A-80DF-4486A61436E7" + }, + "fileCreated": "2025-06-21T09:21:52.4476863+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476863+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476864+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476861+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100497 + }, + "imageDetail": { + "width": 8073, + "height": 4105 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 497 }EA966609-90FC-45BF-A141-7CBB3DE7F837" + }, + "fileCreated": "2025-06-21T09:21:52.447687+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476871+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476869+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100499 + }, + "imageDetail": { + "width": 2440, + "height": 2561 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26052, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 499 }4D8F2F5C-10B8-4D05-AE15-A37296F1E053" + }, + "fileCreated": "2025-06-21T09:21:52.4476878+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476878+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476879+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476876+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100501 + }, + "imageDetail": { + "width": 7771, + "height": 6900 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 501 }3D4191F6-D085-4AED-97CB-2436750913C5" + }, + "fileCreated": "2025-06-21T09:21:52.4476885+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476886+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476884+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100503 + }, + "imageDetail": { + "width": 8657, + "height": 7541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 503 }9DE4D7FF-D4EF-48E1-BF6E-01C2821F47A2" + }, + "fileCreated": "2025-06-21T09:21:52.4476892+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476893+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476891+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100504 + }, + "imageDetail": { + "width": 7356, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 73479, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 504 }AAE6DE22-F46B-4A83-ADB0-7CAF016B8CD7" + }, + "fileCreated": "2025-06-21T09:21:52.4476896+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476897+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476895+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100505 + }, + "imageDetail": { + "width": 6520, + "height": 3031 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 81341, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 505 }3680E478-35F2-470F-938F-74AF424506B5" + }, + "fileCreated": "2025-06-21T09:21:52.4476925+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476925+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476926+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476923+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100509 + }, + "imageDetail": { + "width": 5079, + "height": 8708 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22358, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 509 }479E0772-9F33-4B4E-9C63-71A4661CBF2F" + }, + "fileCreated": "2025-06-21T09:21:52.4476939+00:00", + "fileLastModified": "2025-07-14T09:21:52.447694+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447694+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476938+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100510 + }, + "imageDetail": { + "width": 8115, + "height": 6848 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 510 }EDB5FA0E-C923-49B5-B5BD-C62371C52882" + }, + "fileCreated": "2025-06-21T09:21:52.4476943+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476943+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476941+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100514 + }, + "imageDetail": { + "width": 2124, + "height": 2291 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 36396, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 514 }3549C795-F510-4F7B-B780-BF1CC7D2942B" + }, + "fileCreated": "2025-06-21T09:21:52.4476991+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476991+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100515 + }, + "imageDetail": { + "width": 5929, + "height": 6892 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 84069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 515 }D5975270-28CA-4BE1-B305-B579EA76F455" + }, + "fileCreated": "2025-06-21T09:21:52.4476994+00:00", + "fileLastModified": "2025-07-14T09:21:52.4476995+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4476995+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4476993+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100518 + }, + "imageDetail": { + "width": 7450, + "height": 5314 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45320, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 518 }C16763C7-A2DE-4EC5-97E5-DCC2EE9CEBBF" + }, + "fileCreated": "2025-06-21T09:21:52.4477005+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477006+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477007+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100519 + }, + "imageDetail": { + "width": 9592, + "height": 9445 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 85603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 519 }EED9C531-10B9-442A-99A2-D3FC1CC2D934" + }, + "fileCreated": "2025-06-21T09:21:52.4477033+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477033+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477031+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100521 + }, + "imageDetail": { + "width": 8203, + "height": 7610 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79906, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 521 }FA740B63-BE33-412D-B83C-8572A8871F61" + }, + "fileCreated": "2025-06-21T09:21:52.447704+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477041+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477039+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100524 + }, + "imageDetail": { + "width": 5936, + "height": 5145 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 99779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 524 }4667C188-87FD-46A0-A0BC-1BAD1EC9BC98" + }, + "fileCreated": "2025-06-21T09:21:52.4477052+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477052+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447705+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100525 + }, + "imageDetail": { + "width": 2178, + "height": 6737 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 95178, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 525 }20078EC8-7ED1-40C9-8282-12E95DF694C6" + }, + "fileCreated": "2025-06-21T09:21:52.4477055+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477056+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477056+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100527 + }, + "imageDetail": { + "width": 3770, + "height": 6447 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57446, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 527 }37DB2599-8F43-4163-A2C2-3A4C350CCF29" + }, + "fileCreated": "2025-06-21T09:21:52.4477063+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477062+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100530 + }, + "imageDetail": { + "width": 9644, + "height": 5598 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 530 }40605200-5571-42DE-8FF5-473D652DBB38" + }, + "fileCreated": "2025-06-21T09:21:52.4477074+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477074+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477075+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100533 + }, + "imageDetail": { + "width": 7958, + "height": 6037 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90107, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 533 }F82DAF5F-057A-491B-A082-EA1560D0868C" + }, + "fileCreated": "2025-06-21T09:21:52.4477108+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477109+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477109+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100536 + }, + "imageDetail": { + "width": 9419, + "height": 9561 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 66367, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 536 }F1969067-B14F-492A-AF84-DB8390798249" + }, + "fileCreated": "2025-06-21T09:21:52.447712+00:00", + "fileLastModified": "2025-07-14T09:21:52.447712+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477118+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100537 + }, + "imageDetail": { + "width": 7173, + "height": 3590 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76409, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 537 }7B596DC8-1CB2-488C-9B3C-2E45F3D418AF" + }, + "fileCreated": "2025-06-21T09:21:52.4477124+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477124+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100539 + }, + "imageDetail": { + "width": 4688, + "height": 7950 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 71580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 539 }9978DDB5-F28E-42AE-8D39-8093608BCE37" + }, + "fileCreated": "2025-06-21T09:21:52.4477131+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477132+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447713+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100541 + }, + "imageDetail": { + "width": 4616, + "height": 7102 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74635, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 541 }F9C44E55-D935-42BE-ABFF-1C85DF91939B" + }, + "fileCreated": "2025-06-21T09:21:52.4477139+00:00", + "fileLastModified": "2025-07-14T09:21:52.447714+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477138+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100542 + }, + "imageDetail": { + "width": 2988, + "height": 3720 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50638, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 542 }C48154C7-43D0-4CDC-B501-9BD12975349C" + }, + "fileCreated": "2025-06-21T09:21:52.4477143+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100543 + }, + "imageDetail": { + "width": 360, + "height": 3827 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 543 }F1E1CBD9-AF26-4557-B23D-9DFE5CC71878" + }, + "fileCreated": "2025-06-21T09:21:52.4477146+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477147+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477147+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100546 + }, + "imageDetail": { + "width": 1110, + "height": 8407 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 546 }92185740-46D8-4656-BC30-A85DB57AF33E" + }, + "fileCreated": "2025-06-21T09:21:52.4477174+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477175+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477175+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100547 + }, + "imageDetail": { + "width": 9509, + "height": 2400 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82375, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 547 }4B1D905D-AEFB-474F-BC34-FB0B3FC40FB3" + }, + "fileCreated": "2025-06-21T09:21:52.4477178+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477179+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477179+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477177+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100549 + }, + "imageDetail": { + "width": 2117, + "height": 5820 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 83936, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 549 }0DA1574B-DC20-42CA-8F5B-90193E5A4ACB" + }, + "fileCreated": "2025-06-21T09:21:52.4477186+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477186+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477187+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477184+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100552 + }, + "imageDetail": { + "width": 8589, + "height": 2861 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38405, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 552 }C3CE64DA-9BBB-4A94-BAD6-6694385661E9" + }, + "fileCreated": "2025-06-21T09:21:52.4477197+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477198+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477198+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100554 + }, + "imageDetail": { + "width": 8272, + "height": 5283 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41952, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 554 }EA626C1C-F7FB-46C4-A45F-5BD0FED65F31" + }, + "fileCreated": "2025-06-21T09:21:52.4477205+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477205+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477206+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100556 + }, + "imageDetail": { + "width": 6074, + "height": 3110 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30268, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 556 }AB100BA1-12CB-4257-80E0-3331E28A2F90" + }, + "fileCreated": "2025-06-21T09:21:52.4477212+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477213+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100558 + }, + "imageDetail": { + "width": 2418, + "height": 6761 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50015, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 558 }DE1C2DA8-B143-498F-AFD8-0763507916B4" + }, + "fileCreated": "2025-06-21T09:21:52.447722+00:00", + "fileLastModified": "2025-07-14T09:21:52.447722+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100561 + }, + "imageDetail": { + "width": 3589, + "height": 5037 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49658, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 561 }6552B436-0BD2-478D-B916-66A866327A23" + }, + "fileCreated": "2025-06-21T09:21:52.4477266+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477267+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477267+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477265+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100562 + }, + "imageDetail": { + "width": 5219, + "height": 6365 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70488, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 562 }1A9F5E75-FC4B-4E6B-A806-BFF32F7CC895" + }, + "fileCreated": "2025-06-21T09:21:52.447727+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477271+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477271+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477269+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100564 + }, + "imageDetail": { + "width": 8615, + "height": 9081 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86313, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 564 }665AEC63-AAC6-4A9C-85A8-86DD9B4976AD" + }, + "fileCreated": "2025-06-21T09:21:52.4477278+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100565 + }, + "imageDetail": { + "width": 4941, + "height": 5090 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 565 }A0B241B4-F7F3-4593-9BFA-06664D1427D1" + }, + "fileCreated": "2025-06-21T09:21:52.4477282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477282+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100567 + }, + "imageDetail": { + "width": 7279, + "height": 5428 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90041, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 567 }10BAF0A7-EC77-45B0-B548-B8D31EEA6D2F" + }, + "fileCreated": "2025-06-21T09:21:52.4477289+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477289+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477287+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100568 + }, + "imageDetail": { + "width": 7385, + "height": 6596 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50088, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 568 }AB0B69A5-08AA-4521-85E6-2D7E689FC311" + }, + "fileCreated": "2025-06-21T09:21:52.4477292+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477293+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477291+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100569 + }, + "imageDetail": { + "width": 9586, + "height": 3785 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87630, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 569 }455782F5-D601-4121-840B-EC1672576CB1" + }, + "fileCreated": "2025-06-21T09:21:52.4477296+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477296+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100570 + }, + "imageDetail": { + "width": 5782, + "height": 2665 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 98725, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 570 }E1518826-C0A3-4554-9AC8-C1F3380EC85E" + }, + "fileCreated": "2025-06-21T09:21:52.4477299+00:00", + "fileLastModified": "2025-07-14T09:21:52.44773+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100571 + }, + "imageDetail": { + "width": 6725, + "height": 6937 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63777, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 571 }AC9BA965-9316-474E-8989-5A0852508170" + }, + "fileCreated": "2025-06-21T09:21:52.4477303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477303+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477304+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100572 + }, + "imageDetail": { + "width": 7281, + "height": 7135 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43630, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 572 }35DC9FB0-3865-4DB3-839C-4206B7E41467" + }, + "fileCreated": "2025-06-21T09:21:52.4477307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477307+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477305+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100573 + }, + "imageDetail": { + "width": 9154, + "height": 6207 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 573 }D39EF378-8DCF-413B-A46B-6B4C66D5624E" + }, + "fileCreated": "2025-06-21T09:21:52.4477441+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477442+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477442+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477438+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100577 + }, + "imageDetail": { + "width": 2784, + "height": 4695 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82605, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 577 }F2542C59-5EBF-4D3D-87AE-11F60EB50C08" + }, + "fileCreated": "2025-06-21T09:21:52.4477457+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477458+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100578 + }, + "imageDetail": { + "width": 6209, + "height": 2223 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84922, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 578 }D8D9553E-F05E-4A8F-87A5-7DD6C59F5758" + }, + "fileCreated": "2025-06-21T09:21:52.4477461+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477461+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477462+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477459+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100579 + }, + "imageDetail": { + "width": 1413, + "height": 8072 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 63480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 579 }7CBA5C2B-3F31-4D2C-8999-75BC185EC48D" + }, + "fileCreated": "2025-06-21T09:21:52.4477465+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477465+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477463+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100580 + }, + "imageDetail": { + "width": 8056, + "height": 4028 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 76528, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 580 }3506CE62-720B-4757-B0B1-91409DD3A7FB" + }, + "fileCreated": "2025-06-21T09:21:52.4477468+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477469+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477467+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100581 + }, + "imageDetail": { + "width": 7678, + "height": 6768 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 86161, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 581 }AF370EC1-3D24-4CAD-815F-02CDAC8F40CA" + }, + "fileCreated": "2025-06-21T09:21:52.4477471+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477472+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447747+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100582 + }, + "imageDetail": { + "width": 9435, + "height": 5427 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 45158, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 582 }5C718725-01B0-4BEA-98E5-0A4B1F0B16AF" + }, + "fileCreated": "2025-06-21T09:21:52.4477475+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477476+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477476+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477474+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100584 + }, + "imageDetail": { + "width": 6663, + "height": 3730 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 584 }41215C9E-C647-435B-9DFA-12443DA7B853" + }, + "fileCreated": "2025-06-21T09:21:52.4477483+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477483+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477484+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477481+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100585 + }, + "imageDetail": { + "width": 324, + "height": 5504 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 585 }3448EB74-3902-40DC-847D-6F62211F831F" + }, + "fileCreated": "2025-06-21T09:21:52.4477487+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477487+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100586 + }, + "imageDetail": { + "width": 9999, + "height": 8393 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 586 }801BB381-F060-4363-9083-4745A9636685" + }, + "fileCreated": "2025-06-21T09:21:52.447749+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477491+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477491+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100589 + }, + "imageDetail": { + "width": 5443, + "height": 6072 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33936, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 589 }6A620F25-C2D1-44B5-9BE9-C2C26CFFD814" + }, + "fileCreated": "2025-06-21T09:21:52.4477529+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477529+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477527+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100591 + }, + "imageDetail": { + "width": 6803, + "height": 8075 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 591 }DDB6B9C0-06F4-491C-A7E2-7320A200BF2B" + }, + "fileCreated": "2025-06-21T09:21:52.4477536+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477537+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477535+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100592 + }, + "imageDetail": { + "width": 9394, + "height": 7486 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21049, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 592 }9E39BB1D-F10F-4882-BD36-FFA3A6F737BA" + }, + "fileCreated": "2025-06-21T09:21:52.447754+00:00", + "fileLastModified": "2025-07-14T09:21:52.447754+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100595 + }, + "imageDetail": { + "width": 1306, + "height": 2497 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54702, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 595 }81BF3F6C-3CDE-44D4-A96A-D40AB109BF92" + }, + "fileCreated": "2025-06-21T09:21:52.4477551+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477551+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477549+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100599 + }, + "imageDetail": { + "width": 6965, + "height": 7787 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53219, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 599 }F5094E94-2829-4B9D-AB3E-DAC74E96790D" + }, + "fileCreated": "2025-06-21T09:21:52.4477566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477566+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477567+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100601 + }, + "imageDetail": { + "width": 3909, + "height": 7553 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 601 }8921974C-E731-4B5D-8499-B757D4D87655" + }, + "fileCreated": "2025-06-21T09:21:52.4477605+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477606+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477604+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100608 + }, + "imageDetail": { + "width": 8767, + "height": 2978 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88524, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 608 }1F9B47FB-A073-41B9-9497-3B5057BC9B20" + }, + "fileCreated": "2025-06-21T09:21:52.4477631+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477632+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477632+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100610 + }, + "imageDetail": { + "width": 7404, + "height": 6214 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 610 }8C52CAAF-1DAF-4DFD-A353-76CE020FD374" + }, + "fileCreated": "2025-06-21T09:21:52.4477639+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477639+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477637+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100612 + }, + "imageDetail": { + "width": 5812, + "height": 6469 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23992, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 612 }02026E03-D5C6-4EE8-BA1F-130D6E500FA4" + }, + "fileCreated": "2025-06-21T09:21:52.4477646+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477646+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100613 + }, + "imageDetail": { + "width": 8017, + "height": 4061 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 61290, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 613 }6FC7AC13-DDF0-4B96-A088-7CB4757194B4" + }, + "fileCreated": "2025-06-21T09:21:52.4477649+00:00", + "fileLastModified": "2025-07-14T09:21:52.447765+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447765+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477648+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100616 + }, + "imageDetail": { + "width": 6770, + "height": 6335 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 616 }BD452A8A-9362-4E26-8AA0-065FC419EAD6" + }, + "fileCreated": "2025-06-21T09:21:52.4477686+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477686+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477687+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477684+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100618 + }, + "imageDetail": { + "width": 9468, + "height": 6838 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60818, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 618 }5BAAD70B-FEB8-444B-B35A-F601D6FB388D" + }, + "fileCreated": "2025-06-21T09:21:52.4477694+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477695+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100620 + }, + "imageDetail": { + "width": 1647, + "height": 3647 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71831, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 620 }4D2FA601-C7FE-4436-AF4E-F4D4592EEAC0" + }, + "fileCreated": "2025-06-21T09:21:52.4477702+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100621 + }, + "imageDetail": { + "width": 7578, + "height": 7967 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96712, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 621 }CE04CB0C-E304-4368-88DA-34F44D640026" + }, + "fileCreated": "2025-06-21T09:21:52.4477706+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477706+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477704+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100626 + }, + "imageDetail": { + "width": 1912, + "height": 5228 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23232, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 626 }39032F7D-21CD-492D-B03B-9BF04AA9C2DF" + }, + "fileCreated": "2025-06-21T09:21:52.4477724+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477724+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477722+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100630 + }, + "imageDetail": { + "width": 9511, + "height": 5764 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 630 }C6959808-5390-4052-A61D-AE319A32D184" + }, + "fileCreated": "2025-06-21T09:21:52.4477765+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477765+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477763+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100631 + }, + "imageDetail": { + "width": 6480, + "height": 6251 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62621, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 631 }5A65029A-4942-44F9-8C0A-41B66A3C4F8D" + }, + "fileCreated": "2025-06-21T09:21:52.4477768+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477769+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477767+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100632 + }, + "imageDetail": { + "width": 9500, + "height": 9947 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 632 }D6EA8851-2469-44FF-A080-E7D22D76A623" + }, + "fileCreated": "2025-06-21T09:21:52.4477772+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477772+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100634 + }, + "imageDetail": { + "width": 2539, + "height": 7679 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 36929, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 634 }544497B6-C1E0-4E9A-8389-41A93B970B13" + }, + "fileCreated": "2025-06-21T09:21:52.4477779+00:00", + "fileLastModified": "2025-07-14T09:21:52.447778+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477777+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100635 + }, + "imageDetail": { + "width": 8459, + "height": 6614 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 635 }C706D730-FBE2-4343-AFFF-C8A391DEE1D5" + }, + "fileCreated": "2025-06-21T09:21:52.4477783+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100636 + }, + "imageDetail": { + "width": 5265, + "height": 3383 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24996, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 636 }304906BE-2F5B-4742-B3D0-D8032F1E2C92" + }, + "fileCreated": "2025-06-21T09:21:52.4477786+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477787+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477787+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477785+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100638 + }, + "imageDetail": { + "width": 5325, + "height": 3987 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49700, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 638 }4576DC0B-82CD-49B6-9E20-0B59B3410353" + }, + "fileCreated": "2025-06-21T09:21:52.4477793+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477792+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100640 + }, + "imageDetail": { + "width": 4382, + "height": 4451 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 20270, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 640 }DD448E06-2F96-460A-8131-431457F46142" + }, + "fileCreated": "2025-06-21T09:21:52.44778+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477801+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100641 + }, + "imageDetail": { + "width": 5537, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88346, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 641 }90BAC483-318C-453B-A6ED-2EDB92186B32" + }, + "fileCreated": "2025-06-21T09:21:52.4477964+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477965+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477802+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100642 + }, + "imageDetail": { + "width": 9991, + "height": 2390 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 642 }7DD7BFBB-57A9-4840-BCA5-B5EEC7DD74F1" + }, + "fileCreated": "2025-06-21T09:21:52.447797+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477971+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477968+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100645 + }, + "imageDetail": { + "width": 4327, + "height": 7098 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 645 }921A7142-4747-454F-A81A-1801B6DEC68D" + }, + "fileCreated": "2025-06-21T09:21:52.4477981+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100648 + }, + "imageDetail": { + "width": 7149, + "height": 5822 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48676, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 648 }706D0950-5438-4F13-B698-F48C5EDA32CA" + }, + "fileCreated": "2025-06-21T09:21:52.4477993+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477993+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477994+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100649 + }, + "imageDetail": { + "width": 9556, + "height": 7297 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94681, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 649 }EA72FADE-8F4D-4A49-AA65-9F2DB1191523" + }, + "fileCreated": "2025-06-21T09:21:52.4477997+00:00", + "fileLastModified": "2025-07-14T09:21:52.4477997+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4477998+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100650 + }, + "imageDetail": { + "width": 2396, + "height": 8022 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 89105, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 650 }1A696145-8B6A-4F3D-8020-DADC46154EFF" + }, + "fileCreated": "2025-06-21T09:21:52.4478001+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478001+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478001+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4477999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100652 + }, + "imageDetail": { + "width": 224, + "height": 5481 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75911, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 652 }6C2F4434-9F55-4CC7-8A39-B2904A80C1DA" + }, + "fileCreated": "2025-06-21T09:21:52.4478008+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478006+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100654 + }, + "imageDetail": { + "width": 3003, + "height": 7099 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 654 }AC5F9231-7D1B-437E-8C7C-425A8E56D421" + }, + "fileCreated": "2025-06-21T09:21:52.4478016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478016+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100655 + }, + "imageDetail": { + "width": 8997, + "height": 9239 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54763, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 655 }10B1DFF4-24F1-4BF8-811D-90575A2AFC49" + }, + "fileCreated": "2025-06-21T09:21:52.4478039+00:00", + "fileLastModified": "2025-07-14T09:21:52.447804+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447804+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100656 + }, + "imageDetail": { + "width": 7112, + "height": 4432 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80056, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 656 }C2C519C8-8BFA-48C4-9888-9D8BCCC64275" + }, + "fileCreated": "2025-06-21T09:21:52.4478043+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478044+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100658 + }, + "imageDetail": { + "width": 3847, + "height": 5388 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87530, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 658 }3F67E820-AE08-4F52-8C71-8BBF93541187" + }, + "fileCreated": "2025-06-21T09:21:52.4478051+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478051+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478049+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100661 + }, + "imageDetail": { + "width": 8387, + "height": 8383 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78429, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 661 }9498FF46-5725-4033-A72D-840886D26B4C" + }, + "fileCreated": "2025-06-21T09:21:52.4478061+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478062+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478062+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100662 + }, + "imageDetail": { + "width": 7563, + "height": 9696 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 662 }3D110F84-FE7D-4408-B122-FF1DEA67B0D5" + }, + "fileCreated": "2025-06-21T09:21:52.4478065+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478066+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478063+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100663 + }, + "imageDetail": { + "width": 9861, + "height": 9276 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40092, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 663 }E6390E7B-3789-4DBF-AC28-88AF9650DAC5" + }, + "fileCreated": "2025-06-21T09:21:52.4478069+00:00", + "fileLastModified": "2025-07-14T09:21:52.447807+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447807+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100664 + }, + "imageDetail": { + "width": 3047, + "height": 7525 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73963, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 664 }6CB6D747-52A1-42CE-A88E-B8474A1EB38F" + }, + "fileCreated": "2025-06-21T09:21:52.4478073+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478074+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478072+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100665 + }, + "imageDetail": { + "width": 8944, + "height": 4015 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53946, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 665 }F35C76F5-674F-449A-A639-7D9989A7ED8E" + }, + "fileCreated": "2025-06-21T09:21:52.4478077+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100666 + }, + "imageDetail": { + "width": 3121, + "height": 6253 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 62881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 666 }6A7F9AFD-C353-47C3-AA5B-26EC44BDD386" + }, + "fileCreated": "2025-06-21T09:21:52.447808+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478081+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478081+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100667 + }, + "imageDetail": { + "width": 3262, + "height": 5291 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80518, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 667 }E2E8D791-5391-45EE-9359-F3F3C41C6812" + }, + "fileCreated": "2025-06-21T09:21:52.4478084+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478085+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478083+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100669 + }, + "imageDetail": { + "width": 7160, + "height": 8654 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38496, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 669 }08FF8C9B-D919-4A34-A746-F0A5511FE6AB" + }, + "fileCreated": "2025-06-21T09:21:52.4478132+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478132+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478133+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447813+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100670 + }, + "imageDetail": { + "width": 7070, + "height": 2112 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 670 }B9ACAD54-46F9-47FC-A152-AF9CF476C0C7" + }, + "fileCreated": "2025-06-21T09:21:52.4478136+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478136+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478134+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100671 + }, + "imageDetail": { + "width": 9013, + "height": 5801 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22265, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 671 }148F3384-23A0-4511-A020-68ECCF92174A" + }, + "fileCreated": "2025-06-21T09:21:52.4478139+00:00", + "fileLastModified": "2025-07-14T09:21:52.447814+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447814+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478138+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100672 + }, + "imageDetail": { + "width": 3411, + "height": 6732 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 47241, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 672 }47AD1362-1E98-490F-A040-AE78D847DB6D" + }, + "fileCreated": "2025-06-21T09:21:52.4478143+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478144+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478144+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478142+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100674 + }, + "imageDetail": { + "width": 8693, + "height": 4080 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27969, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 674 }B4582C4A-0C77-4798-AA6C-C69ABBBE622A" + }, + "fileCreated": "2025-06-21T09:21:52.447815+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478151+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478151+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100676 + }, + "imageDetail": { + "width": 4449, + "height": 7579 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 20418, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 676 }9369BD5C-15EC-4009-B1C4-E52053E8006A" + }, + "fileCreated": "2025-06-21T09:21:52.4478158+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478159+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478157+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100677 + }, + "imageDetail": { + "width": 7564, + "height": 9660 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52533, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 677 }4F8EB962-AAF0-4E9D-8FA5-EEDFABB1C419" + }, + "fileCreated": "2025-06-21T09:21:52.4478161+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478162+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100678 + }, + "imageDetail": { + "width": 5009, + "height": 2576 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56608, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 678 }599F4832-8D50-4BD5-A201-B8672C7D52DD" + }, + "fileCreated": "2025-06-21T09:21:52.4478165+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100679 + }, + "imageDetail": { + "width": 3968, + "height": 5255 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54026, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 679 }2B299A5D-EE54-41DC-9877-6BEFD70E0216" + }, + "fileCreated": "2025-06-21T09:21:52.4478169+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478169+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447817+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478167+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100680 + }, + "imageDetail": { + "width": 4592, + "height": 9759 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34879, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 680 }B1C1FF2D-1E19-4ABC-9FF8-4A68580D69BD" + }, + "fileCreated": "2025-06-21T09:21:52.4478172+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478173+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100683 + }, + "imageDetail": { + "width": 3105, + "height": 4205 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72973, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 683 }843D6F24-9EF2-4F35-841D-7087DE182B1B" + }, + "fileCreated": "2025-06-21T09:21:52.4478217+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478215+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100684 + }, + "imageDetail": { + "width": 8997, + "height": 8414 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98373, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 684 }98792E7F-7D23-4A9C-BB86-8A6BFD338FDB" + }, + "fileCreated": "2025-06-21T09:21:52.447822+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478221+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478221+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478219+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100688 + }, + "imageDetail": { + "width": 7217, + "height": 3580 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 688 }243E1624-DA8B-4320-AA8D-EFFD349304A8" + }, + "fileCreated": "2025-06-21T09:21:52.4478236+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478236+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478237+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100689 + }, + "imageDetail": { + "width": 991, + "height": 4631 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 99011, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 689 }133A5B85-17F9-4310-99ED-5FEBDAB753F6" + }, + "fileCreated": "2025-06-21T09:21:52.447824+00:00", + "fileLastModified": "2025-07-14T09:21:52.447824+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100690 + }, + "imageDetail": { + "width": 7716, + "height": 8993 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53452, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 690 }19637E2B-3506-4F53-AE8F-425CA62BB3A7" + }, + "fileCreated": "2025-06-21T09:21:52.4478243+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100693 + }, + "imageDetail": { + "width": 2834, + "height": 8125 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89971, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 693 }1C1F5C41-57C0-4EE3-98E3-D3A865D40B2A" + }, + "fileCreated": "2025-06-21T09:21:52.4478254+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478254+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100695 + }, + "imageDetail": { + "width": 7080, + "height": 2039 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53209, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 695 }9D044947-CECE-48FE-8BB6-EB40D624ECED" + }, + "fileCreated": "2025-06-21T09:21:52.4478261+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478262+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478262+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447826+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100699 + }, + "imageDetail": { + "width": 1850, + "height": 2242 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98494, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 699 }C43602A0-BED3-4779-B812-1F00EBB457F0" + }, + "fileCreated": "2025-06-21T09:21:52.44783+00:00", + "fileLastModified": "2025-07-14T09:21:52.44783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478298+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100700 + }, + "imageDetail": { + "width": 7665, + "height": 3711 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 82748, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 700 }049A5116-25B0-4ACF-B157-E7EA02C78E50" + }, + "fileCreated": "2025-06-21T09:21:52.4478303+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478304+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478302+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100701 + }, + "imageDetail": { + "width": 7248, + "height": 9709 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82732, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 701 }F67BFE0E-752E-4C38-9F21-D8C096E9C2C0" + }, + "fileCreated": "2025-06-21T09:21:52.4478307+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478307+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478308+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478305+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100704 + }, + "imageDetail": { + "width": 845, + "height": 5542 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 31426, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 704 }900DB48F-8310-431F-9C30-69EC8E7861D7" + }, + "fileCreated": "2025-06-21T09:21:52.4478318+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478319+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478319+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478316+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100705 + }, + "imageDetail": { + "width": 5153, + "height": 8480 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 80350, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 705 }8B8FEF86-DBCE-4939-8FB0-DC5A616950B4" + }, + "fileCreated": "2025-06-21T09:21:52.4478322+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478323+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478323+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100706 + }, + "imageDetail": { + "width": 3666, + "height": 7583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 57523, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 706 }D53B3F08-835F-4642-9ADC-57EECF869F08" + }, + "fileCreated": "2025-06-21T09:21:52.4478326+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478327+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478327+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100710 + }, + "imageDetail": { + "width": 6370, + "height": 4474 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 38719, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 710 }2F311B93-7017-49DF-B0DF-89E618DBD7DB" + }, + "fileCreated": "2025-06-21T09:21:52.4478368+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478369+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478369+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478367+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100711 + }, + "imageDetail": { + "width": 4258, + "height": 4959 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 711 }50199C19-C8FE-410B-9273-712F2068B7F8" + }, + "fileCreated": "2025-06-21T09:21:52.4478372+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478373+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478371+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100713 + }, + "imageDetail": { + "width": 1028, + "height": 7333 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94224, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 713 }12B3FA46-A8EC-445E-93B4-31562C8F2EBA" + }, + "fileCreated": "2025-06-21T09:21:52.4478379+00:00", + "fileLastModified": "2025-07-14T09:21:52.447838+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100714 + }, + "imageDetail": { + "width": 9424, + "height": 6488 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 714 }4F374B97-1F4D-49D6-8E85-C359EAC45804" + }, + "fileCreated": "2025-06-21T09:21:52.4478383+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478383+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478381+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100715 + }, + "imageDetail": { + "width": 2986, + "height": 2039 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 58982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 715 }88E5BE55-AECE-4D09-AADF-56685D8A6432" + }, + "fileCreated": "2025-06-21T09:21:52.4478386+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478387+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100716 + }, + "imageDetail": { + "width": 7344, + "height": 5816 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 716 }1D15A7BC-D1D5-4B8C-86D6-6916AAB70668" + }, + "fileCreated": "2025-06-21T09:21:52.447839+00:00", + "fileLastModified": "2025-07-14T09:21:52.447839+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100717 + }, + "imageDetail": { + "width": 9159, + "height": 7384 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55953, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 717 }10B6E21D-CDB5-4225-A9CC-725C664F53A0" + }, + "fileCreated": "2025-06-21T09:21:52.4478393+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478394+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100719 + }, + "imageDetail": { + "width": 3071, + "height": 5200 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63617, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 719 }E59C1E91-B78D-4D99-B119-2B9631DBAF46" + }, + "fileCreated": "2025-06-21T09:21:52.44784+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478401+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478399+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100722 + }, + "imageDetail": { + "width": 5916, + "height": 9582 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 78998, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 722 }E100B716-93ED-4BCE-9C21-E4B56357AA7A" + }, + "fileCreated": "2025-06-21T09:21:52.4478412+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478412+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478413+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100723 + }, + "imageDetail": { + "width": 4920, + "height": 6831 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59449, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 723 }CD617A77-A9EE-47A0-9512-20776343072F" + }, + "fileCreated": "2025-06-21T09:21:52.4478439+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478439+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447844+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100724 + }, + "imageDetail": { + "width": 932, + "height": 5826 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54028, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 724 }AF320C2C-C504-4E05-976E-E945DD3E57FE" + }, + "fileCreated": "2025-06-21T09:21:52.4478443+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478445+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478441+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100729 + }, + "imageDetail": { + "width": 8035, + "height": 8668 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93396, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 729 }C1D48111-9166-40B2-9D16-62AA2F4E9471" + }, + "fileCreated": "2025-06-21T09:21:52.4478462+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478462+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447846+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100730 + }, + "imageDetail": { + "width": 9377, + "height": 6297 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60855, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 730 }9E1CC318-9C09-46A0-9E6D-AAE7171C7BAD" + }, + "fileCreated": "2025-06-21T09:21:52.4478466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478466+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478467+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478464+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100731 + }, + "imageDetail": { + "width": 178, + "height": 4600 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52371, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 731 }32376497-8452-412A-8F3D-D000C6217F51" + }, + "fileCreated": "2025-06-21T09:21:52.447847+00:00", + "fileLastModified": "2025-07-14T09:21:52.447847+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100732 + }, + "imageDetail": { + "width": 9577, + "height": 5876 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20641, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 732 }8A57A93E-533D-4554-926A-336E819C7D0C" + }, + "fileCreated": "2025-06-21T09:21:52.4478473+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478474+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478475+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478472+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100733 + }, + "imageDetail": { + "width": 1006, + "height": 3789 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35247, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 733 }7EF1ED11-F338-4290-89C1-DA03A59A819B" + }, + "fileCreated": "2025-06-21T09:21:52.4478477+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478476+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100734 + }, + "imageDetail": { + "width": 313, + "height": 7095 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 734 }979EFEF9-E166-420A-AD30-F44CDAD76FB2" + }, + "fileCreated": "2025-06-21T09:21:52.4478481+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478481+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478482+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100738 + }, + "imageDetail": { + "width": 7444, + "height": 6406 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93173, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 738 }98A60205-2F4D-4EFA-94B3-7294EA9277D4" + }, + "fileCreated": "2025-06-21T09:21:52.447852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478521+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100739 + }, + "imageDetail": { + "width": 8623, + "height": 5205 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80722, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 739 }84366456-A45C-4AF5-9249-64DB239788D0" + }, + "fileCreated": "2025-06-21T09:21:52.4478524+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478524+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478525+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478522+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100740 + }, + "imageDetail": { + "width": 9945, + "height": 6547 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64744, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 740 }7CF1CE92-2F17-4554-888B-CE568894EB62" + }, + "fileCreated": "2025-06-21T09:21:52.4478527+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478528+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478526+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100741 + }, + "imageDetail": { + "width": 5720, + "height": 8839 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26156, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 741 }34A9C305-50D6-49B3-B839-E41B5135D5AA" + }, + "fileCreated": "2025-06-21T09:21:52.4478531+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478532+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478529+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100742 + }, + "imageDetail": { + "width": 183, + "height": 6595 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98301, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 742 }A6E370E9-792A-40FB-BD61-926702A5FADA" + }, + "fileCreated": "2025-06-21T09:21:52.4478535+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478535+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478536+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478533+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100743 + }, + "imageDetail": { + "width": 3736, + "height": 2455 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33513, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 743 }ADCE167D-A04C-4A08-AE99-FF08CE9A0170" + }, + "fileCreated": "2025-06-21T09:21:52.4478538+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478539+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478537+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100744 + }, + "imageDetail": { + "width": 2222, + "height": 5275 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51640, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 744 }42E15E37-7188-44F1-A35A-CE71BF53AACE" + }, + "fileCreated": "2025-06-21T09:21:52.4478542+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478543+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447854+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100745 + }, + "imageDetail": { + "width": 6166, + "height": 8547 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 47429, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 745 }79CF1A32-EC43-452B-82A2-8CB50BE4D5FD" + }, + "fileCreated": "2025-06-21T09:21:52.4478546+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100748 + }, + "imageDetail": { + "width": 3258, + "height": 2662 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 748 }D478FE81-5768-4524-8A4B-2F09AC3E78CE" + }, + "fileCreated": "2025-06-21T09:21:52.447858+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478581+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478577+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100750 + }, + "imageDetail": { + "width": 7974, + "height": 6213 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 750 }F2AB2CA8-DB43-454B-9B76-AFF01344E2F4" + }, + "fileCreated": "2025-06-21T09:21:52.4478622+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478622+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478619+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100753 + }, + "imageDetail": { + "width": 1008, + "height": 3050 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56949, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 753 }C7A9A781-99B5-42FF-AD5D-70B09B746660" + }, + "fileCreated": "2025-06-21T09:21:52.4478637+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478638+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478635+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100756 + }, + "imageDetail": { + "width": 2263, + "height": 5931 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69869, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 756 }4130D837-6C0A-4A89-ABCE-8DD3F427B4A2" + }, + "fileCreated": "2025-06-21T09:21:52.4478652+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478653+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447865+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100760 + }, + "imageDetail": { + "width": 1537, + "height": 2915 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 79351, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 760 }0FA0F7E6-B3F0-4490-B333-FB60F8A6700F" + }, + "fileCreated": "2025-06-21T09:21:52.4478674+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478675+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478676+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100761 + }, + "imageDetail": { + "width": 7564, + "height": 4004 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34276, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 761 }B8374961-F8B1-410B-BFAE-8F131D6CE842" + }, + "fileCreated": "2025-06-21T09:21:52.447868+00:00", + "fileLastModified": "2025-07-14T09:21:52.447868+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478681+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100763 + }, + "imageDetail": { + "width": 8076, + "height": 6076 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29701, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 763 }15E91566-52D6-455D-A498-72473850D8A3" + }, + "fileCreated": "2025-06-21T09:21:52.4478691+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478692+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478693+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478689+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100768 + }, + "imageDetail": { + "width": 2105, + "height": 8901 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50381, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 768 }0022E0DF-CD0D-4F11-A5F1-0F73244F646F" + }, + "fileCreated": "2025-06-21T09:21:52.4478751+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478752+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478752+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100770 + }, + "imageDetail": { + "width": 5882, + "height": 4393 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 56160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 770 }A1ACBBBE-1776-4109-BEAE-74673432449F" + }, + "fileCreated": "2025-06-21T09:21:52.4478759+00:00", + "fileLastModified": "2025-07-14T09:21:52.447876+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478758+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100772 + }, + "imageDetail": { + "width": 8198, + "height": 9579 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60902, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 772 }09DED62B-A00D-4A33-9968-4A3670329C30" + }, + "fileCreated": "2025-06-21T09:21:52.4478767+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478767+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478765+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100773 + }, + "imageDetail": { + "width": 8326, + "height": 5357 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 93836, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 773 }568A36E6-D1E5-415B-80C5-667E6126F6C2" + }, + "fileCreated": "2025-06-21T09:21:52.447877+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478771+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478771+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100779 + }, + "imageDetail": { + "width": 9836, + "height": 9617 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41689, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 779 }15072D08-B73C-4AE8-8D2E-FF43B62B0E92" + }, + "fileCreated": "2025-06-21T09:21:52.4478831+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478832+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478832+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100783 + }, + "imageDetail": { + "width": 9286, + "height": 3855 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64850, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 783 }7ACB19B6-0627-4657-A907-44793332196C" + }, + "fileCreated": "2025-06-21T09:21:52.4478846+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478847+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478847+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100784 + }, + "imageDetail": { + "width": 1897, + "height": 9757 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48339, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 784 }21CEA042-661E-45F9-873C-970FE98BB5BB" + }, + "fileCreated": "2025-06-21T09:21:52.447885+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478851+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100785 + }, + "imageDetail": { + "width": 6582, + "height": 8925 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 785 }B3E9F979-364E-46AD-8A83-4CAD623462F3" + }, + "fileCreated": "2025-06-21T09:21:52.4478854+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478854+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478852+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100787 + }, + "imageDetail": { + "width": 8067, + "height": 8810 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 46068, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 787 }BA3A69FA-B1E9-485C-8541-79444F644951" + }, + "fileCreated": "2025-06-21T09:21:52.4478861+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478862+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447886+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100790 + }, + "imageDetail": { + "width": 7958, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 78280, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 790 }D7974E8A-328C-4981-9079-25F7437EA46F" + }, + "fileCreated": "2025-06-21T09:21:52.4478873+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478874+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478874+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478872+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100791 + }, + "imageDetail": { + "width": 933, + "height": 2532 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 791 }8374C050-3A71-4CB8-AE40-740B0CF1E639" + }, + "fileCreated": "2025-06-21T09:21:52.4478912+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478913+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100794 + }, + "imageDetail": { + "width": 2284, + "height": 6798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 22766, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 794 }1DF74A6C-6A17-4D48-831B-F4E9635CAAB7" + }, + "fileCreated": "2025-06-21T09:21:52.4478923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478924+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478922+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100795 + }, + "imageDetail": { + "width": 5728, + "height": 2694 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 795 }47A3E586-FCAB-4430-A244-A5B65BF58C19" + }, + "fileCreated": "2025-06-21T09:21:52.4478927+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478927+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478925+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100797 + }, + "imageDetail": { + "width": 345, + "height": 7122 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77873, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 797 }9376B52C-012C-4F35-A554-5681F31E08AF" + }, + "fileCreated": "2025-06-21T09:21:52.4478934+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478935+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478935+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478932+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100803 + }, + "imageDetail": { + "width": 2313, + "height": 8464 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 91389, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 803 }770AB3C9-DF6F-4B7E-B29C-FC94B4CAAC5F" + }, + "fileCreated": "2025-06-21T09:21:52.4478956+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478957+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478957+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100805 + }, + "imageDetail": { + "width": 5341, + "height": 6367 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 805 }162F19D4-4328-463A-B989-10EC7E6F2F62" + }, + "fileCreated": "2025-06-21T09:21:52.4478994+00:00", + "fileLastModified": "2025-07-14T09:21:52.4478994+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4478995+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4478992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100807 + }, + "imageDetail": { + "width": 8482, + "height": 9641 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96829, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 807 }366F5E1D-3E55-4566-8BDC-60AE8C8E235E" + }, + "fileCreated": "2025-06-21T09:21:52.4479001+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479002+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479002+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100808 + }, + "imageDetail": { + "width": 9526, + "height": 3027 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 86291, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 808 }3553C008-2210-4562-8B4D-CB257B5F1D99" + }, + "fileCreated": "2025-06-21T09:21:52.4479005+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479006+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100809 + }, + "imageDetail": { + "width": 4969, + "height": 9434 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83232, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 809 }134E17D1-93A8-45B4-91AF-CDD46B7F98A9" + }, + "fileCreated": "2025-06-21T09:21:52.4479009+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479009+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479007+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100811 + }, + "imageDetail": { + "width": 4563, + "height": 9727 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59212, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 811 }2F6AC7BD-35F0-49D3-8276-3FBC086BB241" + }, + "fileCreated": "2025-06-21T09:21:52.4479016+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479016+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479017+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100812 + }, + "imageDetail": { + "width": 3011, + "height": 4919 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 90495, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 812 }D764C773-7229-4036-B20F-EEF18AB3EF78" + }, + "fileCreated": "2025-06-21T09:21:52.4479019+00:00", + "fileLastModified": "2025-07-14T09:21:52.447902+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479018+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100814 + }, + "imageDetail": { + "width": 1393, + "height": 6773 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 814 }B3493C6A-2106-4274-BF82-C4EE28F8BAD0" + }, + "fileCreated": "2025-06-21T09:21:52.4479026+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479027+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479025+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100816 + }, + "imageDetail": { + "width": 9628, + "height": 5519 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 816 }F20E745F-4D98-4B8D-B89C-904C7E7F1178" + }, + "fileCreated": "2025-06-21T09:21:52.4479034+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479034+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479032+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100817 + }, + "imageDetail": { + "width": 2099, + "height": 9085 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74992, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 817 }A52139EF-597F-4FBE-AD08-67B7E443F08E" + }, + "fileCreated": "2025-06-21T09:21:52.4479038+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479038+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479038+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479036+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100818 + }, + "imageDetail": { + "width": 7459, + "height": 7002 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 818 }0A5FC00C-F707-4240-8118-7BD91771DECF" + }, + "fileCreated": "2025-06-21T09:21:52.4479142+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479139+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100820 + }, + "imageDetail": { + "width": 8820, + "height": 9729 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35271, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 820 }988FA8E4-63B7-4205-AEF9-3AA042D482BC" + }, + "fileCreated": "2025-06-21T09:21:52.447915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479151+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479149+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100821 + }, + "imageDetail": { + "width": 1212, + "height": 6541 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89469, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 821 }474A42FD-0BF7-4FB5-BD58-08323EE899D1" + }, + "fileCreated": "2025-06-21T09:21:52.4479153+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479154+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479155+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100822 + }, + "imageDetail": { + "width": 691, + "height": 2927 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50233, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 822 }37B40833-238C-4527-B802-F1EA04645ADA" + }, + "fileCreated": "2025-06-21T09:21:52.4479158+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479158+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479159+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479156+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100823 + }, + "imageDetail": { + "width": 7470, + "height": 6459 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78341, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 823 }60AD823B-D495-45EC-A37B-89226AE86178" + }, + "fileCreated": "2025-06-21T09:21:52.4479162+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479162+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479163+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447916+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100824 + }, + "imageDetail": { + "width": 5324, + "height": 6882 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 824 }5EDAFC2F-0284-4F92-9EFC-9FB21EE19125" + }, + "fileCreated": "2025-06-21T09:21:52.4479166+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479166+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479166+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100825 + }, + "imageDetail": { + "width": 6212, + "height": 7179 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48198, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 825 }C12EF85E-94EE-4AB0-B77B-42E564AA513D" + }, + "fileCreated": "2025-06-21T09:21:52.4479169+00:00", + "fileLastModified": "2025-07-14T09:21:52.447917+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447917+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479168+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100826 + }, + "imageDetail": { + "width": 8202, + "height": 3575 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49652, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 826 }2532BDC9-2B53-4946-BE2C-C1B8FF49C335" + }, + "fileCreated": "2025-06-21T09:21:52.4479173+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479174+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479172+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100829 + }, + "imageDetail": { + "width": 4153, + "height": 8122 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82160, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 829 }15207680-8327-47F3-967F-CCDC7B82277E" + }, + "fileCreated": "2025-06-21T09:21:52.4479184+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479184+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479185+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479182+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100832 + }, + "imageDetail": { + "width": 4329, + "height": 7914 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55755, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 832 }E4A7008B-F4F7-4DFD-B302-7962EFD2ED9E" + }, + "fileCreated": "2025-06-21T09:21:52.4479223+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479224+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479222+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100833 + }, + "imageDetail": { + "width": 6366, + "height": 5565 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27044, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 833 }16D70E12-17B5-4AA0-B80C-C4F954F86A17" + }, + "fileCreated": "2025-06-21T09:21:52.4479227+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479227+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100834 + }, + "imageDetail": { + "width": 9101, + "height": 9816 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 57208, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 834 }CDB9AA08-AD3A-43DC-BAD3-9A19B63113E3" + }, + "fileCreated": "2025-06-21T09:21:52.447923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479231+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479232+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479229+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100837 + }, + "imageDetail": { + "width": 9320, + "height": 8317 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 837 }CE720773-3771-41F5-929C-D9F4954E5A0B" + }, + "fileCreated": "2025-06-21T09:21:52.4479242+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479242+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479243+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447924+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100838 + }, + "imageDetail": { + "width": 5646, + "height": 2206 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35613, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 838 }90626691-FDD0-4EDC-8377-05C3D15EAD3B" + }, + "fileCreated": "2025-06-21T09:21:52.4479246+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479246+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479247+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100839 + }, + "imageDetail": { + "width": 4332, + "height": 8493 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73427, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 839 }3AD03F92-19C6-4396-8DDA-33C4EFB72A77" + }, + "fileCreated": "2025-06-21T09:21:52.447925+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479251+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100840 + }, + "imageDetail": { + "width": 6242, + "height": 7091 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 41909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 840 }E53D1CB7-2A07-4362-86A8-3F14540F0A48" + }, + "fileCreated": "2025-06-21T09:21:52.4479254+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479254+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479252+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100841 + }, + "imageDetail": { + "width": 5187, + "height": 6393 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81103, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 841 }14BAFE6D-E7AE-46FC-A86A-B32A6B095C66" + }, + "fileCreated": "2025-06-21T09:21:52.4479257+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479258+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479258+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100843 + }, + "imageDetail": { + "width": 6657, + "height": 2762 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94909, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 843 }A50EF7CB-3A16-442D-A060-EADC9E6E8BDD" + }, + "fileCreated": "2025-06-21T09:21:52.4479265+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479265+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479263+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100844 + }, + "imageDetail": { + "width": 357, + "height": 8756 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 88480, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 844 }14C024D0-3021-491D-9CF0-46A0D9A953B9" + }, + "fileCreated": "2025-06-21T09:21:52.4479269+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479269+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479267+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100846 + }, + "imageDetail": { + "width": 8448, + "height": 2913 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38827, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 846 }3BC2C7E4-AD2A-4E3D-B2F4-2580F2E46BA3" + }, + "fileCreated": "2025-06-21T09:21:52.4479308+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479308+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479309+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479306+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100851 + }, + "imageDetail": { + "width": 8633, + "height": 4257 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43799, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 851 }037CAEF6-6CB8-4CCD-AEA5-F25875FDB18E" + }, + "fileCreated": "2025-06-21T09:21:52.4479327+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479327+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100859 + }, + "imageDetail": { + "width": 2286, + "height": 8647 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87145, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 859 }4AAEAE0B-69FA-4B98-9F58-B6C8DAF10888" + }, + "fileCreated": "2025-06-21T09:21:52.4479385+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479385+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479383+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100862 + }, + "imageDetail": { + "width": 3805, + "height": 3800 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 862 }E03E2E19-5CD4-4B42-8754-EF0BA36A6F4C" + }, + "fileCreated": "2025-06-21T09:21:52.4479396+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479396+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479397+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100863 + }, + "imageDetail": { + "width": 8880, + "height": 6508 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57405, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 863 }A98D6518-4CE3-4601-8925-C30199467EFB" + }, + "fileCreated": "2025-06-21T09:21:52.44794+00:00", + "fileLastModified": "2025-07-14T09:21:52.44794+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479398+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100864 + }, + "imageDetail": { + "width": 8405, + "height": 2639 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86717, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 864 }B10DDC4E-3752-4103-A940-FF6985258E31" + }, + "fileCreated": "2025-06-21T09:21:52.4479403+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479404+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479404+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479402+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100865 + }, + "imageDetail": { + "width": 6958, + "height": 9963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59098, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 865 }FCC9E54C-F44D-4486-9243-6D24D0F5C49C" + }, + "fileCreated": "2025-06-21T09:21:52.4479407+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479408+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100866 + }, + "imageDetail": { + "width": 9207, + "height": 5096 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70224, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 866 }FA418DA8-7B3D-492E-8370-48A0582B0B0D" + }, + "fileCreated": "2025-06-21T09:21:52.4479411+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479411+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479412+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100867 + }, + "imageDetail": { + "width": 7019, + "height": 4871 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91087, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 867 }77EAA3C1-6DA1-44E6-AA75-2547D9BD06D8" + }, + "fileCreated": "2025-06-21T09:21:52.4479415+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479415+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479413+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100870 + }, + "imageDetail": { + "width": 4689, + "height": 7225 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39897, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 870 }006DBD5D-AFD3-44C6-90C2-53288101C14B" + }, + "fileCreated": "2025-06-21T09:21:52.4479425+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479426+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479426+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479424+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100876 + }, + "imageDetail": { + "width": 7953, + "height": 8254 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 78776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 876 }F4AF4525-FF8B-465D-BE95-EE968B40CB9F" + }, + "fileCreated": "2025-06-21T09:21:52.4479466+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479467+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479465+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100879 + }, + "imageDetail": { + "width": 6207, + "height": 9695 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 42529, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 879 }A22BA155-8429-43D6-A229-1F821E19A133" + }, + "fileCreated": "2025-06-21T09:21:52.4479477+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479477+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479478+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479475+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100886 + }, + "imageDetail": { + "width": 6442, + "height": 3756 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 886 }7F2A805B-530C-482D-9022-9BB3F384F137" + }, + "fileCreated": "2025-06-21T09:21:52.4479547+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479547+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479545+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100891 + }, + "imageDetail": { + "width": 4866, + "height": 6052 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 87593, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 891 }AE726384-7640-46C2-AA69-9CE2BA318E13" + }, + "fileCreated": "2025-06-21T09:21:52.4479566+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100893 + }, + "imageDetail": { + "width": 1943, + "height": 5741 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63495, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 893 }74D3A4FB-202C-4289-A68B-7AD4791A2D95" + }, + "fileCreated": "2025-06-21T09:21:52.4479573+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100898 + }, + "imageDetail": { + "width": 7305, + "height": 6853 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 898 }706DCB03-93B7-4D59-B1C7-BC63F6C81FE4" + }, + "fileCreated": "2025-06-21T09:21:52.4479592+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479592+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479593+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100899 + }, + "imageDetail": { + "width": 9503, + "height": 6423 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58483, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 899 }9CDB9528-C5E7-4077-8A5F-B987D1689E41" + }, + "fileCreated": "2025-06-21T09:21:52.4479596+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479596+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479594+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100904 + }, + "imageDetail": { + "width": 2598, + "height": 2006 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 904 }7885B076-D93C-49D3-914B-0D2E00AF4782" + }, + "fileCreated": "2025-06-21T09:21:52.447966+00:00", + "fileLastModified": "2025-07-14T09:21:52.447966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100907 + }, + "imageDetail": { + "width": 3615, + "height": 9832 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45122, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 907 }994E0632-9F73-46B4-BA69-22C0689DB9BC" + }, + "fileCreated": "2025-06-21T09:21:52.4479671+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479669+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100909 + }, + "imageDetail": { + "width": 2986, + "height": 7772 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33962, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 909 }FD4F3B65-C963-4226-A432-DA0F6A61E171" + }, + "fileCreated": "2025-06-21T09:21:52.4479678+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479679+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479679+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479677+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100914 + }, + "imageDetail": { + "width": 2262, + "height": 7062 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58663, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 914 }556BF562-CEC1-419C-B875-4D35410A2FD4" + }, + "fileCreated": "2025-06-21T09:21:52.4479739+00:00", + "fileLastModified": "2025-07-14T09:21:52.447974+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447974+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479738+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100915 + }, + "imageDetail": { + "width": 6536, + "height": 4857 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 915 }036FF2AD-E623-4145-BF41-72F668F060D1" + }, + "fileCreated": "2025-06-21T09:21:52.4479743+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479744+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479742+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100916 + }, + "imageDetail": { + "width": 4887, + "height": 2129 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37236, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 916 }1DD595D7-8BCF-41D5-B75C-B772001A8399" + }, + "fileCreated": "2025-06-21T09:21:52.4479747+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479747+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479748+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100921 + }, + "imageDetail": { + "width": 420, + "height": 5475 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23237, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 921 }E935B383-FC6B-4A3D-8936-4D62D70CD6B4" + }, + "fileCreated": "2025-06-21T09:21:52.4479766+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479767+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479767+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479764+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100923 + }, + "imageDetail": { + "width": 4421, + "height": 5674 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37228, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 923 }86455BB7-33F0-446A-B34C-3174FF8E0203" + }, + "fileCreated": "2025-06-21T09:21:52.4479774+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479775+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479775+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479772+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100926 + }, + "imageDetail": { + "width": 4967, + "height": 6229 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 926 }B2904480-9465-4B72-BDC6-025ED7AA4027" + }, + "fileCreated": "2025-06-21T09:21:52.4479785+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479785+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479786+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100927 + }, + "imageDetail": { + "width": 7631, + "height": 5718 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 51601, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 927 }B2844CCC-7FD9-4D46-926D-3BE2A52E8E1C" + }, + "fileCreated": "2025-06-21T09:21:52.4479818+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479819+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479819+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100931 + }, + "imageDetail": { + "width": 1771, + "height": 2671 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 51826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 931 }EB8845F6-38F4-4B1C-B18D-C6A6A4F69CF1" + }, + "fileCreated": "2025-06-21T09:21:52.4479833+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479834+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479834+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479832+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100932 + }, + "imageDetail": { + "width": 3085, + "height": 9528 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92809, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 932 }A5989B29-504B-4444-A5FE-D81EB7EF928C" + }, + "fileCreated": "2025-06-21T09:21:52.4479837+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479838+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479838+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100936 + }, + "imageDetail": { + "width": 1143, + "height": 2304 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 936 }63941B1C-FD56-40C6-B3E4-6D6A8DB595F3" + }, + "fileCreated": "2025-06-21T09:21:52.4479852+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479853+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479853+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100938 + }, + "imageDetail": { + "width": 4132, + "height": 2320 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 54292, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 938 }26AD70F4-1394-4731-85F0-172763DF3822" + }, + "fileCreated": "2025-06-21T09:21:52.447986+00:00", + "fileLastModified": "2025-07-14T09:21:52.447986+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479861+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479858+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100939 + }, + "imageDetail": { + "width": 4368, + "height": 4595 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 939 }9A33587F-29CF-40FF-955E-A234F2A115C7" + }, + "fileCreated": "2025-06-21T09:21:52.4479864+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479864+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479865+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100940 + }, + "imageDetail": { + "width": 9461, + "height": 5185 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 90482, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 940 }0993DEF4-2052-4D91-A44A-6B8CD1E3F887" + }, + "fileCreated": "2025-06-21T09:21:52.4479868+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479868+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479866+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100941 + }, + "imageDetail": { + "width": 9430, + "height": 8833 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 64514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 941 }ADDB7A56-2352-42C2-93F0-D6B0487F43A5" + }, + "fileCreated": "2025-06-21T09:21:52.4479901+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479901+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479902+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479899+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100943 + }, + "imageDetail": { + "width": 4256, + "height": 2380 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42957, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 943 }BB5E4B20-1D8F-4C8F-838C-9350A464B18E" + }, + "fileCreated": "2025-06-21T09:21:52.4479908+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479909+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479907+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100944 + }, + "imageDetail": { + "width": 7177, + "height": 4358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 944 }0653E587-7993-47E0-8322-B5F000E58ABA" + }, + "fileCreated": "2025-06-21T09:21:52.4479912+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479912+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.447991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100945 + }, + "imageDetail": { + "width": 5811, + "height": 4680 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77085, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 945 }DEF81025-6436-4287-8A3F-065B486A359C" + }, + "fileCreated": "2025-06-21T09:21:52.4479915+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479916+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479916+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479914+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100946 + }, + "imageDetail": { + "width": 3299, + "height": 4029 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 946 }BDA2C712-A8D7-44CA-86F5-0BC9550F5A07" + }, + "fileCreated": "2025-06-21T09:21:52.4479919+00:00", + "fileLastModified": "2025-07-14T09:21:52.447992+00:00", + "fileLastViewed": "2025-07-14T09:21:52.447992+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479918+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100947 + }, + "imageDetail": { + "width": 6313, + "height": 5278 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89531, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 947 }FCF71BD8-F05D-4A87-9A6A-5822A2DFB03A" + }, + "fileCreated": "2025-06-21T09:21:52.4479923+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479924+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479924+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479922+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100950 + }, + "imageDetail": { + "width": 6455, + "height": 3451 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 950 }483CECE8-F19D-4802-AC59-8588A962AB8E" + }, + "fileCreated": "2025-06-21T09:21:52.4479934+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479935+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100951 + }, + "imageDetail": { + "width": 3436, + "height": 3176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 70650, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 951 }4271EEF6-22AE-43D1-9F9D-465739719257" + }, + "fileCreated": "2025-06-21T09:21:52.4479938+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479938+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479939+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479936+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100953 + }, + "imageDetail": { + "width": 3022, + "height": 8907 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66300, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 953 }1173C26B-E2DE-4865-BCA3-361E2F7BA700" + }, + "fileCreated": "2025-06-21T09:21:52.4479945+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479946+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4479946+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100957 + }, + "imageDetail": { + "width": 5838, + "height": 7771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24110, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 957 }F6B63454-370A-4ED2-BF16-C18E12125C97" + }, + "fileCreated": "2025-06-21T09:21:52.4479989+00:00", + "fileLastModified": "2025-07-14T09:21:52.447999+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479988+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100958 + }, + "imageDetail": { + "width": 1564, + "height": 7941 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 958 }9C1C59A4-1C39-480C-B88E-649B48F55475" + }, + "fileCreated": "2025-06-21T09:21:52.4479993+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479994+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100959 + }, + "imageDetail": { + "width": 6448, + "height": 3442 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 959 }2046EE63-0781-4670-818C-9E382E5E8ECB" + }, + "fileCreated": "2025-06-21T09:21:52.4479997+00:00", + "fileLastModified": "2025-07-14T09:21:52.4479997+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100960 + }, + "imageDetail": { + "width": 7346, + "height": 8199 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42038, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 960 }2475EC63-FCF8-471C-B1DF-3A32D5BDC8CB" + }, + "fileCreated": "2025-06-21T09:21:52.448+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480001+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480001+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4479999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100963 + }, + "imageDetail": { + "width": 8579, + "height": 8380 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 20234, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 963 }F4D7EE97-652A-4425-8A03-5E89B93CBDE8" + }, + "fileCreated": "2025-06-21T09:21:52.4480012+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480012+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100966 + }, + "imageDetail": { + "width": 6832, + "height": 3065 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26586, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 966 }E86DD0EB-4147-452F-A8CF-70EAC2042509" + }, + "fileCreated": "2025-06-21T09:21:52.4480022+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480023+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480024+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100968 + }, + "imageDetail": { + "width": 2326, + "height": 2533 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 62355, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 968 }3EB48B47-DD8C-442F-81B2-36611BCF4FCD" + }, + "fileCreated": "2025-06-21T09:21:52.4480056+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480057+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100970 + }, + "imageDetail": { + "width": 8323, + "height": 4662 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 22218, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 970 }71C79F72-269B-43F1-AA5B-3AD4896EFC4A" + }, + "fileCreated": "2025-06-21T09:21:52.4480064+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480065+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480063+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100971 + }, + "imageDetail": { + "width": 5531, + "height": 8986 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60085, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 971 }7B7CDC52-FD3F-4E0B-BE5F-1A616A0E4C59" + }, + "fileCreated": "2025-06-21T09:21:52.4480068+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480068+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480066+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100973 + }, + "imageDetail": { + "width": 1431, + "height": 3468 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 24522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 973 }C24C2AE1-647E-4867-9798-9B2C29E08545" + }, + "fileCreated": "2025-06-21T09:21:52.4480075+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480076+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480076+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100974 + }, + "imageDetail": { + "width": 2124, + "height": 4072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23905, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 974 }1DE2C28F-2193-45AB-8ED3-7EB8D09C1346" + }, + "fileCreated": "2025-06-21T09:21:52.4480079+00:00", + "fileLastModified": "2025-07-14T09:21:52.448008+00:00", + "fileLastViewed": "2025-07-14T09:21:52.448008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100975 + }, + "imageDetail": { + "width": 519, + "height": 8657 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 55342, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 975 }D5A592F9-59E1-45D9-8145-EF02BDC0A8C0" + }, + "fileCreated": "2025-06-21T09:21:52.4480083+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480084+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480084+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100977 + }, + "imageDetail": { + "width": 6239, + "height": 8019 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 62192, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 977 }24C30485-6BA2-42AE-9841-28E613059364" + }, + "fileCreated": "2025-06-21T09:21:52.4480091+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480091+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480089+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100979 + }, + "imageDetail": { + "width": 8077, + "height": 3032 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 37929, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 979 }E6C2FDA3-F61F-4BA1-844B-290790960DC8" + }, + "fileCreated": "2025-06-21T09:21:52.4480098+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480098+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480099+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480096+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100980 + }, + "imageDetail": { + "width": 2401, + "height": 7132 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46873, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 980 }03D9DE30-1D7B-4275-9990-067B193BDBF0" + }, + "fileCreated": "2025-06-21T09:21:52.4480102+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480102+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480103+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.44801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100981 + }, + "imageDetail": { + "width": 5010, + "height": 5124 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 48977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 981 }73646C64-80EA-4511-BE98-32DB96FBFBC5" + }, + "fileCreated": "2025-06-21T09:21:52.4480106+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480106+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100982 + }, + "imageDetail": { + "width": 2251, + "height": 2089 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 982 }38B77003-034C-4282-99B8-775EFE9BCF4E" + }, + "fileCreated": "2025-06-21T09:21:52.4480126+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480126+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480127+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480124+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100984 + }, + "imageDetail": { + "width": 7980, + "height": 9894 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26136, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 984 }1BCC0A29-8246-420A-AEFD-13912B2F9DC8" + }, + "fileCreated": "2025-06-21T09:21:52.4480133+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480134+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480134+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480132+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100988 + }, + "imageDetail": { + "width": 8065, + "height": 5321 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27391, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 988 }02D4C5E2-88F5-4E32-BC96-3BEF9B381A32" + }, + "fileCreated": "2025-06-21T09:21:52.4480148+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480148+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480146+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100989 + }, + "imageDetail": { + "width": 9487, + "height": 6930 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74014, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 989 }260EB363-F187-4E1E-9E71-146DE78F9EBA" + }, + "fileCreated": "2025-06-21T09:21:52.4480151+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480152+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480152+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.448015+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100992 + }, + "imageDetail": { + "width": 5965, + "height": 5809 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 25245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 992 }8F95A9C0-BD2D-4875-85D7-254C1ECBBA02" + }, + "fileCreated": "2025-06-21T09:21:52.4480163+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480164+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480164+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480162+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100993 + }, + "imageDetail": { + "width": 119, + "height": 4139 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 993 }E3606361-98C9-4D94-8D64-7D3F9E0C870C" + }, + "fileCreated": "2025-06-21T09:21:52.4480167+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480168+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480166+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100996 + }, + "imageDetail": { + "width": 2527, + "height": 3021 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98293, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 996 }8B98B92F-57A8-4434-BAC9-0B9420EADF07" + }, + "fileCreated": "2025-06-21T09:21:52.4480279+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480279+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 100997 + }, + "imageDetail": { + "width": 3669, + "height": 3834 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 24960, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 997 }078E5A37-7978-4EBE-A897-C8EC957C542F" + }, + "fileCreated": "2025-06-21T09:21:52.4480282+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480283+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101000 + }, + "imageDetail": { + "width": 9325, + "height": 8182 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34395, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1000 }7CC15B76-6D68-4EEC-9A8F-E4F97583D05F" + }, + "fileCreated": "2025-06-21T09:21:52.4480293+00:00", + "fileLastModified": "2025-07-14T09:21:52.4480294+00:00", + "fileLastViewed": "2025-07-14T09:21:52.4480294+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:21:52.4480292+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101001 + }, + "imageDetail": { + "width": 4556, + "height": 2735 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70536, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1001 }64DE9205-AB4D-4BE6-B3E8-EC42D1182B5B" + }, + "fileCreated": "2025-06-21T09:30:58.5467016+00:00", + "fileLastModified": "2025-07-14T09:30:58.5468244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:58.5458075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101003 + }, + "imageDetail": { + "width": 8189, + "height": 2366 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21377, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1003 }A6DD5B24-D5FB-4963-BB84-588AB8FC8D2B" + }, + "fileCreated": "2025-06-21T09:30:59.9939582+00:00", + "fileLastModified": "2025-07-14T09:30:59.9939586+00:00", + "fileLastViewed": "2025-07-14T09:30:59.9939587+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9939564+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101004 + }, + "imageDetail": { + "width": 7388, + "height": 8353 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 63796, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1004 }FC3464B9-D0BE-4EE2-BF2C-EC443308DE6A" + }, + "fileCreated": "2025-06-21T09:30:59.9958338+00:00", + "fileLastModified": "2025-07-14T09:30:59.9958342+00:00", + "fileLastViewed": "2025-07-14T09:30:59.9958344+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9958317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101005 + }, + "imageDetail": { + "width": 7565, + "height": 3758 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 32415, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1005 }E0CE6253-19D6-4D0B-BF9A-23259637F74B" + }, + "fileCreated": "2025-06-21T09:30:59.9973138+00:00", + "fileLastModified": "2025-07-14T09:30:59.9973141+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9973122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101007 + }, + "imageDetail": { + "width": 3865, + "height": 3912 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 94121, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1007 }B0AA5D77-A4AB-41E2-82EC-4D4731B9395B" + }, + "fileCreated": "2025-06-21T09:30:59.9992021+00:00", + "fileLastModified": "2025-07-14T09:30:59.9992026+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:30:59.9991995+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101012 + }, + "imageDetail": { + "width": 4511, + "height": 3543 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76696, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1012 }0E001F4D-58A9-4AB1-A719-757BE9CF71B5" + }, + "fileCreated": "2025-06-21T09:31:00.0049828+00:00", + "fileLastModified": "2025-07-14T09:31:00.0049831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0049817+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101014 + }, + "imageDetail": { + "width": 4899, + "height": 6578 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80124, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1014 }727DAE93-51C1-4BED-9CDA-0B8D2F1C4864" + }, + "fileCreated": "2025-06-21T09:31:00.0066703+00:00", + "fileLastModified": "2025-07-14T09:31:00.0066706+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0066707+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0066692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101015 + }, + "imageDetail": { + "width": 1777, + "height": 6118 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 89714, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1015 }1A4A5C83-67F3-42D2-AA74-A7DE4366AA4F" + }, + "fileCreated": "2025-06-21T09:31:00.0075245+00:00", + "fileLastModified": "2025-07-14T09:31:00.0075248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0075235+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101016 + }, + "imageDetail": { + "width": 6359, + "height": 7437 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59160, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1016 }C9D011CD-242C-4B13-8D3E-1E2E052FCE6F" + }, + "fileCreated": "2025-06-21T09:31:00.0085472+00:00", + "fileLastModified": "2025-07-14T09:31:00.0085474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0085457+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101017 + }, + "imageDetail": { + "width": 1397, + "height": 9151 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22392, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1017 }1730FB4D-BB66-4AFF-B56E-A539499B4D43" + }, + "fileCreated": "2025-06-21T09:31:00.0094203+00:00", + "fileLastModified": "2025-07-14T09:31:00.0094206+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0094191+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101023 + }, + "imageDetail": { + "width": 8578, + "height": 4665 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68633, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1023 }89D7D2F3-320D-4685-84C7-C32293971F3B" + }, + "fileCreated": "2025-06-21T09:31:00.0154821+00:00", + "fileLastModified": "2025-07-14T09:31:00.0154828+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0154766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101026 + }, + "imageDetail": { + "width": 1875, + "height": 6500 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22174, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1026 }9A8642ED-35B2-4F8F-A7C9-CF3CDA09444C" + }, + "fileCreated": "2025-06-21T09:31:00.0213932+00:00", + "fileLastModified": "2025-07-14T09:31:00.0213938+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0213899+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101027 + }, + "imageDetail": { + "width": 9411, + "height": 6631 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28526, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1027 }F6049EA2-93C9-4016-925B-1C9E807EAF9A" + }, + "fileCreated": "2025-06-21T09:31:00.023592+00:00", + "fileLastModified": "2025-07-14T09:31:00.0235925+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0235928+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0235887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101028 + }, + "imageDetail": { + "width": 4340, + "height": 8381 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1028 }8AB6FB38-92A5-41CD-9036-DB0D144F2007" + }, + "fileCreated": "2025-06-21T09:31:00.0253962+00:00", + "fileLastModified": "2025-07-14T09:31:00.0254108+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0253939+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101029 + }, + "imageDetail": { + "width": 7473, + "height": 4120 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 58163, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1029 }C5F3A778-3722-4BF2-9642-5B7BB55C333D" + }, + "fileCreated": "2025-06-21T09:31:00.0272132+00:00", + "fileLastModified": "2025-07-14T09:31:00.0272137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.027214+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.02721+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101031 + }, + "imageDetail": { + "width": 427, + "height": 7991 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 44954, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1031 }C9563564-F28D-41C6-B196-13A1EEEE736E" + }, + "fileCreated": "2025-06-21T09:31:00.0308119+00:00", + "fileLastModified": "2025-07-14T09:31:00.0308125+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0308078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101033 + }, + "imageDetail": { + "width": 4324, + "height": 4183 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 80475, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1033 }265079E0-DF68-4170-B5ED-239BBD8BB79B" + }, + "fileCreated": "2025-06-21T09:31:00.0339112+00:00", + "fileLastModified": "2025-07-14T09:31:00.0339116+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0339118+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0339079+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101034 + }, + "imageDetail": { + "width": 4346, + "height": 7088 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53661, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1034 }E14555B0-E743-4426-B25D-361F144C0208" + }, + "fileCreated": "2025-06-21T09:31:00.0353714+00:00", + "fileLastModified": "2025-07-14T09:31:00.0353719+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0353693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101040 + }, + "imageDetail": { + "width": 1569, + "height": 6792 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50957, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1040 }C929EFFE-6FBA-4B99-BF93-F51C04E6D4F8" + }, + "fileCreated": "2025-06-21T09:31:00.0441284+00:00", + "fileLastModified": "2025-07-14T09:31:00.0441288+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0441267+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101041 + }, + "imageDetail": { + "width": 3164, + "height": 6434 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53462, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1041 }29C6583F-649A-4A8D-8C46-3B292001BD28" + }, + "fileCreated": "2025-06-21T09:31:00.045314+00:00", + "fileLastModified": "2025-07-14T09:31:00.0453144+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0453117+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101042 + }, + "imageDetail": { + "width": 4522, + "height": 7743 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54298, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1042 }A0313B7B-98F4-4990-899B-2F4D59F0FFA3" + }, + "fileCreated": "2025-06-21T09:31:00.0471037+00:00", + "fileLastModified": "2025-07-14T09:31:00.0471042+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0471014+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101043 + }, + "imageDetail": { + "width": 206, + "height": 9769 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 49483, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1043 }9FD35F39-5AA0-4E5C-9D84-0996D89BBC7A" + }, + "fileCreated": "2025-06-21T09:31:00.0484079+00:00", + "fileLastModified": "2025-07-14T09:31:00.0484087+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0484088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0484062+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101045 + }, + "imageDetail": { + "width": 9345, + "height": 8226 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45107, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1045 }3FB592F4-8314-4686-84E1-857B44F6C65D" + }, + "fileCreated": "2025-06-21T09:31:00.0510851+00:00", + "fileLastModified": "2025-07-14T09:31:00.0510855+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0510834+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101047 + }, + "imageDetail": { + "width": 517, + "height": 3218 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80073, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1047 }31384049-ADE8-44B8-BC5A-964E18C44B8B" + }, + "fileCreated": "2025-06-21T09:31:00.0534399+00:00", + "fileLastModified": "2025-07-14T09:31:00.0534403+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0534386+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101050 + }, + "imageDetail": { + "width": 7124, + "height": 8385 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70191, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1050 }473AAA80-5D47-4DF1-B658-61A7F7EA219C" + }, + "fileCreated": "2025-06-21T09:31:00.0577627+00:00", + "fileLastModified": "2025-07-14T09:31:00.0577631+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0577632+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0577606+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101052 + }, + "imageDetail": { + "width": 5887, + "height": 6300 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96534, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1052 }3239A05E-1219-4A2D-8FE2-92DB226B8EC1" + }, + "fileCreated": "2025-06-21T09:31:00.0614315+00:00", + "fileLastModified": "2025-07-14T09:31:00.0614319+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0614289+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101058 + }, + "imageDetail": { + "width": 3156, + "height": 3882 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 95554, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1058 }B7E0E388-0AAF-498C-8028-8B6C759EAD2E" + }, + "fileCreated": "2025-06-21T09:31:00.0768322+00:00", + "fileLastModified": "2025-07-14T09:31:00.0768328+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0768332+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0768284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101059 + }, + "imageDetail": { + "width": 9994, + "height": 7051 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60982, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1059 }0C1DEC37-B97A-4E4D-9541-FB5735B60857" + }, + "fileCreated": "2025-06-21T09:31:00.0790976+00:00", + "fileLastModified": "2025-07-14T09:31:00.0790981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0790938+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101061 + }, + "imageDetail": { + "width": 4839, + "height": 7613 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1061 }38C58FF0-D0BA-4430-9BEC-23036B02B114" + }, + "fileCreated": "2025-06-21T09:31:00.0823515+00:00", + "fileLastModified": "2025-07-14T09:31:00.0823518+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0823502+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101062 + }, + "imageDetail": { + "width": 9275, + "height": 7332 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 93112, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1062 }61BC25FE-41B6-422D-B827-5E944E0B4104" + }, + "fileCreated": "2025-06-21T09:31:00.0839432+00:00", + "fileLastModified": "2025-07-14T09:31:00.0839435+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0839417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101066 + }, + "imageDetail": { + "width": 5392, + "height": 2597 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87364, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1066 }1B719F84-2151-474B-9DCA-A07B6299BFC0" + }, + "fileCreated": "2025-06-21T09:31:00.0900225+00:00", + "fileLastModified": "2025-07-14T09:31:00.0900228+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.090021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101069 + }, + "imageDetail": { + "width": 4856, + "height": 6306 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 81886, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1069 }34A147B7-3E38-4D3C-BC68-9052CA8EE2AE" + }, + "fileCreated": "2025-06-21T09:31:00.0948902+00:00", + "fileLastModified": "2025-07-14T09:31:00.0948905+00:00", + "fileLastViewed": "2025-07-14T09:31:00.0948906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0948889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101070 + }, + "imageDetail": { + "width": 5410, + "height": 9899 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28306, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1070 }899BC793-BEA9-4827-957D-2EB812939CCA" + }, + "fileCreated": "2025-06-21T09:31:00.0963047+00:00", + "fileLastModified": "2025-07-14T09:31:00.096305+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0963034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101072 + }, + "imageDetail": { + "width": 8044, + "height": 9884 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64141, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1072 }C95D3353-AA58-4B8E-A8A0-F50E6C31226E" + }, + "fileCreated": "2025-06-21T09:31:00.0994052+00:00", + "fileLastModified": "2025-07-14T09:31:00.0994056+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.0994038+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101073 + }, + "imageDetail": { + "width": 7975, + "height": 3031 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36906, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1073 }47B858C6-511B-4CCD-9042-E0743BEF0E8C" + }, + "fileCreated": "2025-06-21T09:31:00.100825+00:00", + "fileLastModified": "2025-07-14T09:31:00.1008253+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1008255+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1008239+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101075 + }, + "imageDetail": { + "width": 7616, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 33261, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1075 }C1BE8861-3BF2-483A-A82E-6F2AE01187E9" + }, + "fileCreated": "2025-06-21T09:31:00.1043598+00:00", + "fileLastModified": "2025-07-14T09:31:00.1043602+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1043607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.104358+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101076 + }, + "imageDetail": { + "width": 8458, + "height": 7123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91125, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1076 }7CC02DF2-177E-42C8-963B-8DF81B4FD706" + }, + "fileCreated": "2025-06-21T09:31:00.105956+00:00", + "fileLastModified": "2025-07-14T09:31:00.1059564+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1059567+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1059538+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101078 + }, + "imageDetail": { + "width": 4595, + "height": 7154 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69808, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1078 }404A3D2F-24F9-41BD-BDCB-6286D5AF135D" + }, + "fileCreated": "2025-06-21T09:31:00.1097238+00:00", + "fileLastModified": "2025-07-14T09:31:00.1097242+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1097244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1097221+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101079 + }, + "imageDetail": { + "width": 7907, + "height": 8918 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23366, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1079 }D873E474-04CC-4F85-ACB8-8909C3F60763" + }, + "fileCreated": "2025-06-21T09:31:00.1111303+00:00", + "fileLastModified": "2025-07-14T09:31:00.1111306+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.111129+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101080 + }, + "imageDetail": { + "width": 5397, + "height": 2873 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 31695, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1080 }84D830EC-DEEA-4C71-AAEE-95AC770F4A18" + }, + "fileCreated": "2025-06-21T09:31:00.1128324+00:00", + "fileLastModified": "2025-07-14T09:31:00.1128327+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1128304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101081 + }, + "imageDetail": { + "width": 5610, + "height": 4045 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58138, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1081 }4BADFCDA-E76C-41F2-9ABA-A61A972DD957" + }, + "fileCreated": "2025-06-21T09:31:00.1142745+00:00", + "fileLastModified": "2025-07-14T09:31:00.1142747+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1142749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1142729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101082 + }, + "imageDetail": { + "width": 4551, + "height": 5542 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 32779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1082 }71F4A0FD-014D-441C-9A0F-9FCFAE27E2CF" + }, + "fileCreated": "2025-06-21T09:31:00.1156734+00:00", + "fileLastModified": "2025-07-14T09:31:00.1156737+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1156739+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1156716+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101083 + }, + "imageDetail": { + "width": 5734, + "height": 6690 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46215, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1083 }6B59E35A-157B-44D7-94E4-2B62545A0AE9" + }, + "fileCreated": "2025-06-21T09:31:00.1176111+00:00", + "fileLastModified": "2025-07-14T09:31:00.1176116+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1176087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101084 + }, + "imageDetail": { + "width": 3330, + "height": 3065 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1084 }310C1693-7847-4096-9A98-16ECD527DDEE" + }, + "fileCreated": "2025-06-21T09:31:00.1194198+00:00", + "fileLastModified": "2025-07-14T09:31:00.1194202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1194176+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101085 + }, + "imageDetail": { + "width": 6681, + "height": 6787 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 70285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1085 }03C2C9F3-B29E-479E-84DE-01E4FD569917" + }, + "fileCreated": "2025-06-21T09:31:00.1208485+00:00", + "fileLastModified": "2025-07-14T09:31:00.1208488+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1208471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101086 + }, + "imageDetail": { + "width": 984, + "height": 7041 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1086 }DF146231-BF34-48A3-8126-3DB4988B8C2C" + }, + "fileCreated": "2025-06-21T09:31:00.1224639+00:00", + "fileLastModified": "2025-07-14T09:31:00.1224642+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1224625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101087 + }, + "imageDetail": { + "width": 9435, + "height": 4003 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97088, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1087 }0BD96E29-EDA7-460A-B7B7-C74E447879DF" + }, + "fileCreated": "2025-06-21T09:31:00.1243925+00:00", + "fileLastModified": "2025-07-14T09:31:00.1243933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1243904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101089 + }, + "imageDetail": { + "width": 6265, + "height": 4438 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79432, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1089 }9CDC22DF-A5FA-4347-9706-FEE9F193F8CE" + }, + "fileCreated": "2025-06-21T09:31:00.1280221+00:00", + "fileLastModified": "2025-07-14T09:31:00.1280224+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1280226+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1280203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101090 + }, + "imageDetail": { + "width": 3129, + "height": 3001 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 26900, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1090 }D3186ADA-30CE-4078-AD5F-D47A006B5CEB" + }, + "fileCreated": "2025-06-21T09:31:00.1298587+00:00", + "fileLastModified": "2025-07-14T09:31:00.129859+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1298567+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101091 + }, + "imageDetail": { + "width": 6102, + "height": 8283 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 57428, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1091 }EC8ABEBF-01F5-4D7E-A817-485047F51C6A" + }, + "fileCreated": "2025-06-21T09:31:00.1313059+00:00", + "fileLastModified": "2025-07-14T09:31:00.1313062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1313042+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101092 + }, + "imageDetail": { + "width": 2547, + "height": 4798 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 80266, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1092 }FAFD9834-E823-4E99-9DCB-8DEE44C93D13" + }, + "fileCreated": "2025-06-21T09:31:00.1330796+00:00", + "fileLastModified": "2025-07-14T09:31:00.1330799+00:00", + "fileLastViewed": "2025-07-14T09:31:00.13308+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.133078+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101094 + }, + "imageDetail": { + "width": 9736, + "height": 2016 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91787, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1094 }739081E6-BA37-49AE-8C79-5AB5F221DF01" + }, + "fileCreated": "2025-06-21T09:31:00.1366642+00:00", + "fileLastModified": "2025-07-14T09:31:00.1366645+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1366625+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101095 + }, + "imageDetail": { + "width": 2697, + "height": 5828 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 37544, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1095 }81979120-07AF-4E64-BB90-4C8B45EE1F56" + }, + "fileCreated": "2025-06-21T09:31:00.1381134+00:00", + "fileLastModified": "2025-07-14T09:31:00.1381137+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1381138+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1381121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101096 + }, + "imageDetail": { + "width": 3688, + "height": 9935 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 37222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1096 }99D9A890-6171-4701-A2A6-FB819B61B422" + }, + "fileCreated": "2025-06-21T09:31:00.1398001+00:00", + "fileLastModified": "2025-07-14T09:31:00.1398005+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1397981+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101097 + }, + "imageDetail": { + "width": 3772, + "height": 7655 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87582, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1097 }466FE77F-DB31-4A92-B84F-6A8F8FD34CF4" + }, + "fileCreated": "2025-06-21T09:31:00.1416069+00:00", + "fileLastModified": "2025-07-14T09:31:00.1416071+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1416055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101098 + }, + "imageDetail": { + "width": 690, + "height": 3778 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60106, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1098 }FC8471C3-B7B8-4106-B49F-7F1B01C0CF20" + }, + "fileCreated": "2025-06-21T09:31:00.1431524+00:00", + "fileLastModified": "2025-07-14T09:31:00.1431527+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1431528+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1431513+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101099 + }, + "imageDetail": { + "width": 3148, + "height": 4561 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 37549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1099 }59EF910F-9569-457E-B4D6-21C3AEE34FE8" + }, + "fileCreated": "2025-06-21T09:31:00.1448353+00:00", + "fileLastModified": "2025-07-14T09:31:00.1448356+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1448357+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1448339+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101100 + }, + "imageDetail": { + "width": 9099, + "height": 4622 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 56279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1100 }8C57A5CB-ED9C-4B20-9646-6882F8F1673A" + }, + "fileCreated": "2025-06-21T09:31:00.1478042+00:00", + "fileLastModified": "2025-07-14T09:31:00.1478045+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1478028+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101102 + }, + "imageDetail": { + "width": 3978, + "height": 8195 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1102 }AB81DB42-921E-403E-89F0-3D247D0B530E" + }, + "fileCreated": "2025-06-21T09:31:00.1508769+00:00", + "fileLastModified": "2025-07-14T09:31:00.1508772+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1508757+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101103 + }, + "imageDetail": { + "width": 9340, + "height": 7342 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1103 }37C97D6F-E3C7-437A-86E6-3ED576BB63A4" + }, + "fileCreated": "2025-06-21T09:31:00.1523218+00:00", + "fileLastModified": "2025-07-14T09:31:00.1523221+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1523222+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1523208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101104 + }, + "imageDetail": { + "width": 7046, + "height": 5824 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31679, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1104 }A5535D95-5C58-4E33-A0DE-8A0CDE5EA56A" + }, + "fileCreated": "2025-06-21T09:31:00.1541135+00:00", + "fileLastModified": "2025-07-14T09:31:00.1541138+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1541139+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1541121+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101105 + }, + "imageDetail": { + "width": 9801, + "height": 8371 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53708, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1105 }AB2EE861-3D7E-4C30-800E-6AA435025FD6" + }, + "fileCreated": "2025-06-21T09:31:00.155968+00:00", + "fileLastModified": "2025-07-14T09:31:00.1559683+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1559684+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1559661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101106 + }, + "imageDetail": { + "width": 2943, + "height": 9018 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 53840, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1106 }78E98285-9CCA-49F1-819A-5BAB823CC157" + }, + "fileCreated": "2025-06-21T09:31:00.1574456+00:00", + "fileLastModified": "2025-07-14T09:31:00.1574459+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1574444+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101107 + }, + "imageDetail": { + "width": 7885, + "height": 5489 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38721, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1107 }831DFEC8-C9F5-43C0-9D0A-31E96FF674F0" + }, + "fileCreated": "2025-06-21T09:31:00.1591828+00:00", + "fileLastModified": "2025-07-14T09:31:00.1591831+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1591816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101110 + }, + "imageDetail": { + "width": 6167, + "height": 9413 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 39718, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1110 }236B7060-6FF9-49CD-AE6F-8468F0C7333F" + }, + "fileCreated": "2025-06-21T09:31:00.1635797+00:00", + "fileLastModified": "2025-07-14T09:31:00.1635799+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1635786+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101112 + }, + "imageDetail": { + "width": 5461, + "height": 6308 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1112 }07F97035-AFB2-4AF4-B9A6-26BACCD60F41" + }, + "fileCreated": "2025-06-21T09:31:00.1667772+00:00", + "fileLastModified": "2025-07-14T09:31:00.1667775+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1667776+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1667761+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101114 + }, + "imageDetail": { + "width": 3708, + "height": 5587 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1114 }47925C7C-1576-460A-B7E7-8089C0D3368C" + }, + "fileCreated": "2025-06-21T09:31:00.1702435+00:00", + "fileLastModified": "2025-07-14T09:31:00.1702439+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1702412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101117 + }, + "imageDetail": { + "width": 2572, + "height": 9124 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29503, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1117 }B5F61DA2-BC45-4F28-82AA-8652FBD7E8E5" + }, + "fileCreated": "2025-06-21T09:31:00.1753858+00:00", + "fileLastModified": "2025-07-14T09:31:00.1753862+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1753863+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1753845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101118 + }, + "imageDetail": { + "width": 2587, + "height": 6383 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60948, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1118 }A86D9E14-C02D-4F1F-B662-67893153A3FC" + }, + "fileCreated": "2025-06-21T09:31:00.1769328+00:00", + "fileLastModified": "2025-07-14T09:31:00.1769331+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1769317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101120 + }, + "imageDetail": { + "width": 9026, + "height": 7089 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 77458, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1120 }68E6693C-1392-4898-8738-070A72A0BE5B" + }, + "fileCreated": "2025-06-21T09:31:00.1802904+00:00", + "fileLastModified": "2025-07-14T09:31:00.1802907+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1802893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101123 + }, + "imageDetail": { + "width": 7274, + "height": 9151 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 55189, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1123 }E7214BEE-922E-48DC-AB82-3448E3202B7E" + }, + "fileCreated": "2025-06-21T09:31:00.1857624+00:00", + "fileLastModified": "2025-07-14T09:31:00.1857627+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1857629+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1857609+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101125 + }, + "imageDetail": { + "width": 3127, + "height": 6592 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42768, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1125 }7C957143-0EFB-4313-8006-D922E7A5AF03" + }, + "fileCreated": "2025-06-21T09:31:00.1895407+00:00", + "fileLastModified": "2025-07-14T09:31:00.189541+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1895411+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1895394+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101128 + }, + "imageDetail": { + "width": 3374, + "height": 6137 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 86704, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1128 }B88AF340-6C92-43C6-B2A4-119F76F1FD08" + }, + "fileCreated": "2025-06-21T09:31:00.194902+00:00", + "fileLastModified": "2025-07-14T09:31:00.1949023+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1949008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101130 + }, + "imageDetail": { + "width": 9478, + "height": 9817 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1130 }DE1555CA-1848-44FA-A807-AE436B67B2B3" + }, + "fileCreated": "2025-06-21T09:31:00.1985852+00:00", + "fileLastModified": "2025-07-14T09:31:00.1985855+00:00", + "fileLastViewed": "2025-07-14T09:31:00.1985856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.1985841+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101131 + }, + "imageDetail": { + "width": 3227, + "height": 7716 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47775, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1131 }FFDCE9CD-9C7E-4CAE-96B6-D95C89F53622" + }, + "fileCreated": "2025-06-21T09:31:00.2007902+00:00", + "fileLastModified": "2025-07-14T09:31:00.2007905+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2007906+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2007887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101133 + }, + "imageDetail": { + "width": 7512, + "height": 8615 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 74385, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1133 }71A96E18-27B9-44DA-B07F-4743FFB0151B" + }, + "fileCreated": "2025-06-21T09:31:00.20913+00:00", + "fileLastModified": "2025-07-14T09:31:00.2091302+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2091289+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101134 + }, + "imageDetail": { + "width": 1503, + "height": 9527 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 42575, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1134 }3362609F-A45F-4894-B587-5DDD546586A2" + }, + "fileCreated": "2025-06-21T09:31:00.211147+00:00", + "fileLastModified": "2025-07-14T09:31:00.2111473+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2111452+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101135 + }, + "imageDetail": { + "width": 580, + "height": 2870 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88791, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1135 }546DEBBA-9AD2-4475-B142-6314A742DEB1" + }, + "fileCreated": "2025-06-21T09:31:00.212869+00:00", + "fileLastModified": "2025-07-14T09:31:00.2128693+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2128695+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2128678+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101137 + }, + "imageDetail": { + "width": 7723, + "height": 9470 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 99314, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1137 }F855EBF6-CB02-4020-B969-67B571D38702" + }, + "fileCreated": "2025-06-21T09:31:00.2287314+00:00", + "fileLastModified": "2025-07-14T09:31:00.2287319+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2287333+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.228728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101140 + }, + "imageDetail": { + "width": 8498, + "height": 7040 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 64295, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1140 }F5FCF84F-CF0C-440A-A6F2-4BAB5C689E16" + }, + "fileCreated": "2025-06-21T09:31:00.237086+00:00", + "fileLastModified": "2025-07-14T09:31:00.2370867+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2370869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2370838+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101141 + }, + "imageDetail": { + "width": 3391, + "height": 5777 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72157, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1141 }D0FE9F82-8AC0-4309-ABCE-9AF850B773D3" + }, + "fileCreated": "2025-06-21T09:31:00.2390863+00:00", + "fileLastModified": "2025-07-14T09:31:00.2390867+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2390868+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.239085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101142 + }, + "imageDetail": { + "width": 2453, + "height": 7378 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 60795, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1142 }F8C172CB-6CC3-4BA5-AC16-CC28E18C8BD0" + }, + "fileCreated": "2025-06-21T09:31:00.2412721+00:00", + "fileLastModified": "2025-07-14T09:31:00.2412724+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2412726+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2412706+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101143 + }, + "imageDetail": { + "width": 4515, + "height": 3957 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 38703, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1143 }3B457BCB-6B90-4ADC-838A-4AB17901CC00" + }, + "fileCreated": "2025-06-21T09:31:00.2433419+00:00", + "fileLastModified": "2025-07-14T09:31:00.2433423+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2433425+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2433393+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101146 + }, + "imageDetail": { + "width": 2528, + "height": 9738 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 21289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1146 }C775D166-BF27-4D70-84A8-DEC9042871C9" + }, + "fileCreated": "2025-06-21T09:31:00.249669+00:00", + "fileLastModified": "2025-07-14T09:31:00.2496693+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2496666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101147 + }, + "imageDetail": { + "width": 2285, + "height": 9219 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23997, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1147 }2B7BD441-61AB-44D7-A2E7-70C4D44C26DB" + }, + "fileCreated": "2025-06-21T09:31:00.2518434+00:00", + "fileLastModified": "2025-07-14T09:31:00.2518437+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2518417+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101148 + }, + "imageDetail": { + "width": 8902, + "height": 4716 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35727, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1148 }E582F684-061B-4D28-BEC7-4477E7FE107D" + }, + "fileCreated": "2025-06-21T09:31:00.254016+00:00", + "fileLastModified": "2025-07-14T09:31:00.2540172+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2540173+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2540144+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101150 + }, + "imageDetail": { + "width": 3222, + "height": 9631 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50888, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1150 }57794BE4-265F-49E6-A26B-02EC6D5739CB" + }, + "fileCreated": "2025-06-21T09:31:00.2580797+00:00", + "fileLastModified": "2025-07-14T09:31:00.2580801+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2580802+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2580783+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101151 + }, + "imageDetail": { + "width": 7480, + "height": 5760 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77917, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1151 }8F17104F-26DD-4BC0-B5E7-3142B4F0C1E5" + }, + "fileCreated": "2025-06-21T09:31:00.2601132+00:00", + "fileLastModified": "2025-07-14T09:31:00.2601136+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2601137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2601108+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101153 + }, + "imageDetail": { + "width": 1213, + "height": 3404 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34099, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1153 }47CB64FA-6424-4106-A010-7981B3FF803D" + }, + "fileCreated": "2025-06-21T09:31:00.2647034+00:00", + "fileLastModified": "2025-07-14T09:31:00.2647038+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2647041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2647012+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101154 + }, + "imageDetail": { + "width": 4266, + "height": 9281 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 70608, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1154 }397E3EA0-FC4E-496D-8EF0-6CF0724EE712" + }, + "fileCreated": "2025-06-21T09:31:00.2666982+00:00", + "fileLastModified": "2025-07-14T09:31:00.2666985+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2666969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101155 + }, + "imageDetail": { + "width": 4301, + "height": 2949 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 30475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1155 }839D52AD-E854-4E48-B01B-295DBCE89041" + }, + "fileCreated": "2025-06-21T09:31:00.268814+00:00", + "fileLastModified": "2025-07-14T09:31:00.2688143+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2688125+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101157 + }, + "imageDetail": { + "width": 9518, + "height": 5200 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 60211, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1157 }3DCDE6A9-8931-4433-85EF-72D0452C8B65" + }, + "fileCreated": "2025-06-21T09:31:00.272769+00:00", + "fileLastModified": "2025-07-14T09:31:00.2727693+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2727672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101159 + }, + "imageDetail": { + "width": 8088, + "height": 3623 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22667, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1159 }0239548E-FFF9-4CFA-A036-69C9FCE04166" + }, + "fileCreated": "2025-06-21T09:31:00.2774965+00:00", + "fileLastModified": "2025-07-14T09:31:00.2774968+00:00", + "fileLastViewed": "2025-07-14T09:31:00.277497+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2774952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101162 + }, + "imageDetail": { + "width": 5474, + "height": 7273 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1162 }95A498A2-FB6B-4CD1-80C1-EC5421B6693A" + }, + "fileCreated": "2025-06-21T09:31:00.283664+00:00", + "fileLastModified": "2025-07-14T09:31:00.2836644+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2836628+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101166 + }, + "imageDetail": { + "width": 6897, + "height": 7819 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90457, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1166 }FA80F189-5158-4A82-861B-0B20B1D33079" + }, + "fileCreated": "2025-06-21T09:31:00.2925971+00:00", + "fileLastModified": "2025-07-14T09:31:00.2925981+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2925945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101168 + }, + "imageDetail": { + "width": 3020, + "height": 8219 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68443, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1168 }2E42A876-52C3-43F7-8A4D-04C99A7703AD" + }, + "fileCreated": "2025-06-21T09:31:00.2978185+00:00", + "fileLastModified": "2025-07-14T09:31:00.2978189+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2978191+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2978167+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101169 + }, + "imageDetail": { + "width": 9804, + "height": 5309 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 67592, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1169 }02BBCF3E-32C3-4C22-9380-C37663A34979" + }, + "fileCreated": "2025-06-21T09:31:00.2998239+00:00", + "fileLastModified": "2025-07-14T09:31:00.2998243+00:00", + "fileLastViewed": "2025-07-14T09:31:00.2998244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.2998227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101170 + }, + "imageDetail": { + "width": 5513, + "height": 7333 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 76264, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1170 }B54F0EB1-A998-4C0E-BEFF-D4D80B4AB689" + }, + "fileCreated": "2025-06-21T09:31:00.3020941+00:00", + "fileLastModified": "2025-07-14T09:31:00.3020945+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3020927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101171 + }, + "imageDetail": { + "width": 7934, + "height": 2994 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89248, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1171 }D72767CD-6D8C-4FDF-BDB8-4546D9E12FF8" + }, + "fileCreated": "2025-06-21T09:31:00.3042249+00:00", + "fileLastModified": "2025-07-14T09:31:00.3042256+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3040485+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101172 + }, + "imageDetail": { + "width": 4717, + "height": 6520 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1172 }31440ECF-A0C1-4F3B-AB94-1D299CA3BD5E" + }, + "fileCreated": "2025-06-21T09:31:00.3062531+00:00", + "fileLastModified": "2025-07-14T09:31:00.3062534+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3062519+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101174 + }, + "imageDetail": { + "width": 6332, + "height": 8057 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1174 }30289A54-BA69-4ED5-851F-166ED41C2C7A" + }, + "fileCreated": "2025-06-21T09:31:00.3107674+00:00", + "fileLastModified": "2025-07-14T09:31:00.3107677+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3107678+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3107644+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101184 + }, + "imageDetail": { + "width": 6464, + "height": 6798 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1184 }AFDCAC9B-15A3-48E8-9832-DDBD28DFAA79" + }, + "fileCreated": "2025-06-21T09:31:00.3338751+00:00", + "fileLastModified": "2025-07-14T09:31:00.3338754+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3338756+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3338733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101186 + }, + "imageDetail": { + "width": 3279, + "height": 3358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1186 }205F20EE-2FC3-482C-B97B-C1D94F887AFE" + }, + "fileCreated": "2025-06-21T09:31:00.3390188+00:00", + "fileLastModified": "2025-07-14T09:31:00.3390192+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3390194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.339017+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101188 + }, + "imageDetail": { + "width": 7336, + "height": 2616 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1188 }AEB0A9FD-B5FB-486E-B646-569481CDF664" + }, + "fileCreated": "2025-06-21T09:31:00.3441774+00:00", + "fileLastModified": "2025-07-14T09:31:00.3441778+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3441779+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3441753+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101189 + }, + "imageDetail": { + "width": 8599, + "height": 6872 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 75968, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1189 }B7FB2951-045B-4AFF-B680-B98C5E5591FD" + }, + "fileCreated": "2025-06-21T09:31:00.3467+00:00", + "fileLastModified": "2025-07-14T09:31:00.3467003+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3466982+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101192 + }, + "imageDetail": { + "width": 3070, + "height": 8050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 64227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1192 }B077BA9F-9C6A-4903-9C3F-CA343CED623F" + }, + "fileCreated": "2025-06-21T09:31:00.3552572+00:00", + "fileLastModified": "2025-07-14T09:31:00.3552576+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3552553+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101194 + }, + "imageDetail": { + "width": 7925, + "height": 5388 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 81506, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1194 }4146E7FB-6BEA-49BB-B8F5-6D843DD01DD1" + }, + "fileCreated": "2025-06-21T09:31:00.3616475+00:00", + "fileLastModified": "2025-07-14T09:31:00.3616478+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3616296+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101196 + }, + "imageDetail": { + "width": 7397, + "height": 3589 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61304, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1196 }94358BEF-4E82-4C2B-938F-7F371B02619D" + }, + "fileCreated": "2025-06-21T09:31:00.3664298+00:00", + "fileLastModified": "2025-07-14T09:31:00.3664302+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3664303+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3664277+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101200 + }, + "imageDetail": { + "width": 7426, + "height": 5555 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51334, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1200 }98D1B267-F97A-4919-9BA6-4166EB931377" + }, + "fileCreated": "2025-06-21T09:31:00.3762999+00:00", + "fileLastModified": "2025-07-14T09:31:00.3763003+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3763004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3762975+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101204 + }, + "imageDetail": { + "width": 9331, + "height": 6730 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 26782, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1204 }AACCAFDF-BFC0-4860-AEA1-3F0775650363" + }, + "fileCreated": "2025-06-21T09:31:00.387352+00:00", + "fileLastModified": "2025-07-14T09:31:00.3873527+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3873499+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101205 + }, + "imageDetail": { + "width": 6102, + "height": 8417 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1205 }852EE89D-6308-44C0-8701-C1C0854FF4D8" + }, + "fileCreated": "2025-06-21T09:31:00.3898034+00:00", + "fileLastModified": "2025-07-14T09:31:00.3898037+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3898018+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101206 + }, + "imageDetail": { + "width": 1220, + "height": 8129 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90399, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1206 }A6C97B1C-442C-4336-867E-20A9A316ED3F" + }, + "fileCreated": "2025-06-21T09:31:00.3922744+00:00", + "fileLastModified": "2025-07-14T09:31:00.3922746+00:00", + "fileLastViewed": "2025-07-14T09:31:00.3922748+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.3922729+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101210 + }, + "imageDetail": { + "width": 9784, + "height": 5686 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1210 }658276B9-9E80-4A86-B562-AA6CD12B96E6" + }, + "fileCreated": "2025-06-21T09:31:00.401938+00:00", + "fileLastModified": "2025-07-14T09:31:00.4019383+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4019386+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4019365+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101213 + }, + "imageDetail": { + "width": 7823, + "height": 6230 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96541, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1213 }D9C5978A-55C4-4390-A1E8-3A88BA7868C1" + }, + "fileCreated": "2025-06-21T09:31:00.4092417+00:00", + "fileLastModified": "2025-07-14T09:31:00.4092421+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4092422+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4092402+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101214 + }, + "imageDetail": { + "width": 7141, + "height": 9503 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27065, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1214 }FA7E08AD-A26F-47DC-97DD-415816E7A26A" + }, + "fileCreated": "2025-06-21T09:31:00.4117373+00:00", + "fileLastModified": "2025-07-14T09:31:00.4117376+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4117377+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4117355+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101215 + }, + "imageDetail": { + "width": 6925, + "height": 3136 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 72118, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1215 }F29BC070-0930-46CF-905C-E33D6A994E26" + }, + "fileCreated": "2025-06-21T09:31:00.414161+00:00", + "fileLastModified": "2025-07-14T09:31:00.4141614+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4141615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4141593+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101217 + }, + "imageDetail": { + "width": 3128, + "height": 7080 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 88140, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1217 }2D3D3E10-D643-4AD9-A6B9-5140760190A9" + }, + "fileCreated": "2025-06-21T09:31:00.4189252+00:00", + "fileLastModified": "2025-07-14T09:31:00.4189255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4189237+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101218 + }, + "imageDetail": { + "width": 1942, + "height": 4765 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 33290, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1218 }B008BD6F-799F-4A01-A79F-6F2159DB5812" + }, + "fileCreated": "2025-06-21T09:31:00.4214407+00:00", + "fileLastModified": "2025-07-14T09:31:00.4214409+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4214388+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101219 + }, + "imageDetail": { + "width": 1431, + "height": 5904 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 69560, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1219 }5F354412-FD48-4594-B723-03C9F7500160" + }, + "fileCreated": "2025-06-21T09:31:00.4238521+00:00", + "fileLastModified": "2025-07-14T09:31:00.4238524+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4238526+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4238509+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101220 + }, + "imageDetail": { + "width": 9663, + "height": 5677 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 45309, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1220 }18A7AA47-5A48-49A8-A952-C322D2781372" + }, + "fileCreated": "2025-06-21T09:31:00.4259553+00:00", + "fileLastModified": "2025-07-14T09:31:00.4259556+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4259557+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4259542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101221 + }, + "imageDetail": { + "width": 7130, + "height": 6861 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59500, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1221 }4523AE15-8A58-46ED-8509-BD3B6A770ABB" + }, + "fileCreated": "2025-06-21T09:31:00.4283515+00:00", + "fileLastModified": "2025-07-14T09:31:00.4283517+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4283503+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101223 + }, + "imageDetail": { + "width": 9362, + "height": 9293 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84920, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1223 }123E20D0-57F7-48F6-9501-B5E3ABE689DD" + }, + "fileCreated": "2025-06-21T09:31:00.4338826+00:00", + "fileLastModified": "2025-07-14T09:31:00.433883+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4338808+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101224 + }, + "imageDetail": { + "width": 4626, + "height": 9172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 71821, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1224 }E6D84B4A-7CF5-43D2-889C-BD299DD6323B" + }, + "fileCreated": "2025-06-21T09:31:00.4365825+00:00", + "fileLastModified": "2025-07-14T09:31:00.4365828+00:00", + "fileLastViewed": "2025-07-14T09:31:00.436583+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.436581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101227 + }, + "imageDetail": { + "width": 2240, + "height": 4700 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 73622, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1227 }4F016D8D-A466-4796-9C72-7EBA932FC844" + }, + "fileCreated": "2025-06-21T09:31:00.4440254+00:00", + "fileLastModified": "2025-07-14T09:31:00.4440257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4440241+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101228 + }, + "imageDetail": { + "width": 5706, + "height": 6250 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1228 }8002B3DA-D5C5-4BBB-B6D4-CC933BA7A92E" + }, + "fileCreated": "2025-06-21T09:31:00.4461965+00:00", + "fileLastModified": "2025-07-14T09:31:00.4461968+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4461969+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4461955+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101229 + }, + "imageDetail": { + "width": 4113, + "height": 4026 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77463, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1229 }FE2CCF3A-DDF2-4AC7-A38C-D735461EFFD8" + }, + "fileCreated": "2025-06-21T09:31:00.4492007+00:00", + "fileLastModified": "2025-07-14T09:31:00.449201+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4491989+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101230 + }, + "imageDetail": { + "width": 9312, + "height": 5591 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94205, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1230 }161BE408-814B-4AE3-975E-482E9579DCB3" + }, + "fileCreated": "2025-06-21T09:31:00.4523671+00:00", + "fileLastModified": "2025-07-14T09:31:00.4523674+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4523646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101233 + }, + "imageDetail": { + "width": 5761, + "height": 6881 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 40242, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1233 }B6590FEB-8096-4F4D-8126-17C2C9E96E1B" + }, + "fileCreated": "2025-06-21T09:31:00.460026+00:00", + "fileLastModified": "2025-07-14T09:31:00.4600263+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4600246+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101238 + }, + "imageDetail": { + "width": 7129, + "height": 2796 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58260, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1238 }483ED91B-B9E9-427C-A8F6-221C58E257C5" + }, + "fileCreated": "2025-06-21T09:31:00.4731341+00:00", + "fileLastModified": "2025-07-14T09:31:00.4731344+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4731326+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101239 + }, + "imageDetail": { + "width": 8319, + "height": 9474 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40021, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1239 }82D82972-5D7F-4A5B-AB88-B437C885ED30" + }, + "fileCreated": "2025-06-21T09:31:00.475619+00:00", + "fileLastModified": "2025-07-14T09:31:00.4756193+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4756194+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4756173+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101243 + }, + "imageDetail": { + "width": 2993, + "height": 6225 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 65370, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1243 }A2814762-8402-45F9-B6EA-BFCFB23EBE0B" + }, + "fileCreated": "2025-06-21T09:31:00.4863009+00:00", + "fileLastModified": "2025-07-14T09:31:00.4863012+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4862998+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101244 + }, + "imageDetail": { + "width": 9465, + "height": 8374 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73535, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1244 }3439E499-4F01-476B-886A-DCAB959C4F59" + }, + "fileCreated": "2025-06-21T09:31:00.4887704+00:00", + "fileLastModified": "2025-07-14T09:31:00.4887706+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4887692+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101246 + }, + "imageDetail": { + "width": 7279, + "height": 7706 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 75678, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1246 }F486C72F-6D5A-4E4E-9D42-D6BCA7E98585" + }, + "fileCreated": "2025-06-21T09:31:00.4939858+00:00", + "fileLastModified": "2025-07-14T09:31:00.4939861+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4939862+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4939844+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101247 + }, + "imageDetail": { + "width": 5064, + "height": 9770 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 27702, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1247 }095A90AF-4457-4426-8437-7590EED05B33" + }, + "fileCreated": "2025-06-21T09:31:00.4969608+00:00", + "fileLastModified": "2025-07-14T09:31:00.4969612+00:00", + "fileLastViewed": "2025-07-14T09:31:00.4969614+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.4969592+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101249 + }, + "imageDetail": { + "width": 7109, + "height": 6831 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 77070, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1249 }CEBE0AF3-EDD1-463F-841D-A4A670F957C5" + }, + "fileCreated": "2025-06-21T09:31:00.5026299+00:00", + "fileLastModified": "2025-07-14T09:31:00.5026303+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5026305+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5026278+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101256 + }, + "imageDetail": { + "width": 690, + "height": 4465 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91666, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1256 }6E2DB359-EA49-4A08-9572-2F874E99A9D8" + }, + "fileCreated": "2025-06-21T09:31:00.5227508+00:00", + "fileLastModified": "2025-07-14T09:31:00.5227512+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5227516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5227489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101257 + }, + "imageDetail": { + "width": 4808, + "height": 6935 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1257 }75DC2F72-9E68-4D57-8F15-B5B17BC482AC" + }, + "fileCreated": "2025-06-21T09:31:00.5261084+00:00", + "fileLastModified": "2025-07-14T09:31:00.5261087+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5261054+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101258 + }, + "imageDetail": { + "width": 5186, + "height": 2007 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81172, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1258 }8AAFF47C-9DEE-4398-9797-C6E1D9CE9580" + }, + "fileCreated": "2025-06-21T09:31:00.5295831+00:00", + "fileLastModified": "2025-07-14T09:31:00.5295835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5295804+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101260 + }, + "imageDetail": { + "width": 8672, + "height": 8860 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 21536, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1260 }376C4B81-E931-4DD5-BC01-47FB32C0ED3F" + }, + "fileCreated": "2025-06-21T09:31:00.5357894+00:00", + "fileLastModified": "2025-07-14T09:31:00.5357902+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5357875+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101261 + }, + "imageDetail": { + "width": 4155, + "height": 9689 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40134, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1261 }CE0E5987-34C0-4AE4-B68C-563A5619B4F1" + }, + "fileCreated": "2025-06-21T09:31:00.538682+00:00", + "fileLastModified": "2025-07-14T09:31:00.5386823+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5386801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101263 + }, + "imageDetail": { + "width": 4114, + "height": 9233 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52651, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1263 }B5BACFAB-2330-4537-B1D6-FB2073FB1593" + }, + "fileCreated": "2025-06-21T09:31:00.5452862+00:00", + "fileLastModified": "2025-07-14T09:31:00.5452866+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5452836+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101264 + }, + "imageDetail": { + "width": 8423, + "height": 4794 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73977, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1264 }3FAC5560-1EA1-4092-984D-194306360735" + }, + "fileCreated": "2025-06-21T09:31:00.5487745+00:00", + "fileLastModified": "2025-07-14T09:31:00.5487749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5487719+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101265 + }, + "imageDetail": { + "width": 2798, + "height": 3918 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87706, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1265 }3CEB9B2E-C682-475B-87DD-9600A02866FE" + }, + "fileCreated": "2025-06-21T09:31:00.5519965+00:00", + "fileLastModified": "2025-07-14T09:31:00.5519969+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5519944+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101267 + }, + "imageDetail": { + "width": 4260, + "height": 8796 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92511, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1267 }12D4DBB2-E3AC-44C3-B7F0-702D71AEECAA" + }, + "fileCreated": "2025-06-21T09:31:00.5582336+00:00", + "fileLastModified": "2025-07-14T09:31:00.558234+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5582343+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.558203+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101269 + }, + "imageDetail": { + "width": 995, + "height": 8999 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98033, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1269 }A5C63A92-5ED0-4EC9-9D48-E2E3D989CE62" + }, + "fileCreated": "2025-06-21T09:31:00.5645581+00:00", + "fileLastModified": "2025-07-14T09:31:00.5645585+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5645588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.564556+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101270 + }, + "imageDetail": { + "width": 2057, + "height": 3023 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 62475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1270 }7E5F7173-7327-46D5-A8AE-55F3B8EF1878" + }, + "fileCreated": "2025-06-21T09:31:00.5672507+00:00", + "fileLastModified": "2025-07-14T09:31:00.5672509+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5672511+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.567249+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101271 + }, + "imageDetail": { + "width": 8881, + "height": 5086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76554, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1271 }23E09595-8DDE-4C17-A458-36CF764FB5DB" + }, + "fileCreated": "2025-06-21T09:31:00.5702412+00:00", + "fileLastModified": "2025-07-14T09:31:00.5702416+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.570239+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101273 + }, + "imageDetail": { + "width": 9865, + "height": 2592 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96323, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1273 }D24829B5-0A37-4048-8781-8A84B2C4EC1B" + }, + "fileCreated": "2025-06-21T09:31:00.576561+00:00", + "fileLastModified": "2025-07-14T09:31:00.5765615+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5765617+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5765587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101275 + }, + "imageDetail": { + "width": 3107, + "height": 5280 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1275 }8723ADFA-8C48-4E3F-ABD6-7B3C17CA3BCD" + }, + "fileCreated": "2025-06-21T09:31:00.5843961+00:00", + "fileLastModified": "2025-07-14T09:31:00.5843966+00:00", + "fileLastViewed": "2025-07-14T09:31:00.5843969+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.5843941+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101285 + }, + "imageDetail": { + "width": 9980, + "height": 8531 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 54173, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1285 }982DC904-4911-4958-8597-111ACF61162D" + }, + "fileCreated": "2025-06-21T09:31:00.6226747+00:00", + "fileLastModified": "2025-07-14T09:31:00.6226751+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6226727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101288 + }, + "imageDetail": { + "width": 8079, + "height": 2348 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 22839, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1288 }DAE1B558-0366-47E3-A1C7-B5E5D7BA0830" + }, + "fileCreated": "2025-06-21T09:31:00.633376+00:00", + "fileLastModified": "2025-07-14T09:31:00.6333763+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6333742+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101289 + }, + "imageDetail": { + "width": 9091, + "height": 2322 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 25283, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1289 }AE218FC7-EB24-4A85-8D4A-7944BF4A44D6" + }, + "fileCreated": "2025-06-21T09:31:00.6400075+00:00", + "fileLastModified": "2025-07-14T09:31:00.6400079+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6400055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101290 + }, + "imageDetail": { + "width": 6412, + "height": 2581 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60752, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1290 }215B101B-6ADE-4F42-99DA-94B2785301F4" + }, + "fileCreated": "2025-06-21T09:31:00.6478951+00:00", + "fileLastModified": "2025-07-14T09:31:00.6478956+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6478958+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6478909+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101292 + }, + "imageDetail": { + "width": 2549, + "height": 4670 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21250, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1292 }CF4FFF1B-C6A2-44C4-B773-884792D8CC8D" + }, + "fileCreated": "2025-06-21T09:31:00.6614244+00:00", + "fileLastModified": "2025-07-14T09:31:00.6614248+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6614201+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101294 + }, + "imageDetail": { + "width": 1233, + "height": 8680 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 51636, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1294 }7F87BFF2-96D5-46C4-9AFC-6BDEA8008125" + }, + "fileCreated": "2025-06-21T09:31:00.6750232+00:00", + "fileLastModified": "2025-07-14T09:31:00.6750237+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6750238+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6750208+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101295 + }, + "imageDetail": { + "width": 2026, + "height": 9374 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46421, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1295 }85395AB4-3D5C-42C6-BE39-46625BEAA82D" + }, + "fileCreated": "2025-06-21T09:31:00.6811408+00:00", + "fileLastModified": "2025-07-14T09:31:00.6811412+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6811378+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101296 + }, + "imageDetail": { + "width": 5759, + "height": 3635 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1296 }F1600945-F262-41DA-8FCE-B920743F739F" + }, + "fileCreated": "2025-06-21T09:31:00.687395+00:00", + "fileLastModified": "2025-07-14T09:31:00.6873954+00:00", + "fileLastViewed": "2025-07-14T09:31:00.6873956+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.6873927+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101299 + }, + "imageDetail": { + "width": 6104, + "height": 6308 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72689, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1299 }B59693C4-57B0-4BF3-B38F-0197AE695066" + }, + "fileCreated": "2025-06-21T09:31:00.7079681+00:00", + "fileLastModified": "2025-07-14T09:31:00.7079686+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7079688+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7079656+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101301 + }, + "imageDetail": { + "width": 9165, + "height": 2696 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 56152, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1301 }F3D0ECAC-37FE-45CD-9EEC-85AF29D556EA" + }, + "fileCreated": "2025-06-21T09:31:00.7211641+00:00", + "fileLastModified": "2025-07-14T09:31:00.7211645+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7211647+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7211618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101302 + }, + "imageDetail": { + "width": 769, + "height": 3719 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66915, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1302 }B936C27C-02C6-40C7-B55A-12D21F912593" + }, + "fileCreated": "2025-06-21T09:31:00.7278346+00:00", + "fileLastModified": "2025-07-14T09:31:00.727835+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7278317+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101303 + }, + "imageDetail": { + "width": 4709, + "height": 2425 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87685, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1303 }0B9AECBE-7D04-457F-AC45-B76B65CCF4E9" + }, + "fileCreated": "2025-06-21T09:31:00.734071+00:00", + "fileLastModified": "2025-07-14T09:31:00.7340715+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7340719+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7340674+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101304 + }, + "imageDetail": { + "width": 6412, + "height": 2313 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 61602, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1304 }277B0E75-B55A-442B-81AC-61AB94DB1A7E" + }, + "fileCreated": "2025-06-21T09:31:00.7404692+00:00", + "fileLastModified": "2025-07-14T09:31:00.7404697+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7404667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101306 + }, + "imageDetail": { + "width": 9254, + "height": 3718 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83847, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1306 }54A61D96-BC97-4C4F-B01A-C95EA97425CD" + }, + "fileCreated": "2025-06-21T09:31:00.7540693+00:00", + "fileLastModified": "2025-07-14T09:31:00.7540703+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7540706+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7540667+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101307 + }, + "imageDetail": { + "width": 6967, + "height": 4715 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96456, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1307 }62610FB5-9493-45E6-ABA5-45F3E83A381F" + }, + "fileCreated": "2025-06-21T09:31:00.7609063+00:00", + "fileLastModified": "2025-07-14T09:31:00.7609071+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7609078+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7608979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101308 + }, + "imageDetail": { + "width": 7451, + "height": 5133 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98330, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1308 }20BB1A16-420D-4AB6-8305-AA994E58E252" + }, + "fileCreated": "2025-06-21T09:31:00.7667748+00:00", + "fileLastModified": "2025-07-14T09:31:00.7667753+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7667755+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7667728+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101312 + }, + "imageDetail": { + "width": 6851, + "height": 7676 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98926, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1312 }E220BDE6-FE98-475F-9A14-01E33820C2A0" + }, + "fileCreated": "2025-06-21T09:31:00.7914644+00:00", + "fileLastModified": "2025-07-14T09:31:00.7914651+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7914618+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101313 + }, + "imageDetail": { + "width": 8251, + "height": 8799 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 58255, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1313 }0AF7C2DD-545A-40F0-8EB4-49FEFB3C7C4D" + }, + "fileCreated": "2025-06-21T09:31:00.7974867+00:00", + "fileLastModified": "2025-07-14T09:31:00.797487+00:00", + "fileLastViewed": "2025-07-14T09:31:00.7974872+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.7974851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101314 + }, + "imageDetail": { + "width": 7793, + "height": 9747 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1314 }58343216-A30B-47A2-961E-2CC708385230" + }, + "fileCreated": "2025-06-21T09:31:00.8036916+00:00", + "fileLastModified": "2025-07-14T09:31:00.8036928+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8036931+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.803688+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101315 + }, + "imageDetail": { + "width": 7250, + "height": 4243 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 29999, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1315 }995A1519-5B36-4917-BCCF-98F50F6D3C9F" + }, + "fileCreated": "2025-06-21T09:31:00.8106182+00:00", + "fileLastModified": "2025-07-14T09:31:00.8106189+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8106153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101316 + }, + "imageDetail": { + "width": 2480, + "height": 4315 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96249, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1316 }1313EA32-8743-4F43-AC78-B70795DF1EC8" + }, + "fileCreated": "2025-06-21T09:31:00.8167433+00:00", + "fileLastModified": "2025-07-14T09:31:00.8167438+00:00", + "fileLastViewed": "2025-07-14T09:31:00.816744+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8167412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101320 + }, + "imageDetail": { + "width": 1858, + "height": 4057 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 42600, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1320 }EC4EBCC7-8DA9-4A8B-966C-D2B273EE7BFC" + }, + "fileCreated": "2025-06-21T09:31:00.8423398+00:00", + "fileLastModified": "2025-07-14T09:31:00.8423403+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8423405+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8423374+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101322 + }, + "imageDetail": { + "width": 5249, + "height": 4794 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28325, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1322 }6DF0055F-26DA-49FB-B64E-B028A14A37EA" + }, + "fileCreated": "2025-06-21T09:31:00.8555772+00:00", + "fileLastModified": "2025-07-14T09:31:00.8555779+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8555745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101324 + }, + "imageDetail": { + "width": 2233, + "height": 9810 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91453, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1324 }C3B1C894-7157-4E03-8616-5A5D95526020" + }, + "fileCreated": "2025-06-21T09:31:00.8685746+00:00", + "fileLastModified": "2025-07-14T09:31:00.8685759+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8685763+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8685703+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101326 + }, + "imageDetail": { + "width": 8306, + "height": 8748 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79542, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1326 }41F4B4A7-F1CF-405E-B015-59561F06D3BA" + }, + "fileCreated": "2025-06-21T09:31:00.8817687+00:00", + "fileLastModified": "2025-07-14T09:31:00.8817694+00:00", + "fileLastViewed": "2025-07-14T09:31:00.8817697+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8817654+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101327 + }, + "imageDetail": { + "width": 6258, + "height": 3391 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 45601, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1327 }96FDE535-8DD9-4D26-9515-1279988E7DB2" + }, + "fileCreated": "2025-06-21T09:31:00.8879214+00:00", + "fileLastModified": "2025-07-14T09:31:00.8879217+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.8879196+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101329 + }, + "imageDetail": { + "width": 5911, + "height": 2564 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75547, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1329 }34AC77DB-0166-4AF3-8440-C34D186313E5" + }, + "fileCreated": "2025-06-21T09:31:00.9003141+00:00", + "fileLastModified": "2025-07-14T09:31:00.9003144+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9003145+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9003122+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101331 + }, + "imageDetail": { + "width": 5390, + "height": 9191 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42791, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1331 }8129FAB3-DA5D-4F8D-BA87-4CDED38ED9B6" + }, + "fileCreated": "2025-06-21T09:31:00.9131531+00:00", + "fileLastModified": "2025-07-14T09:31:00.9131536+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9131491+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101334 + }, + "imageDetail": { + "width": 214, + "height": 6336 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53805, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1334 }67AAF9C3-8C72-4D17-A63B-D92044966F88" + }, + "fileCreated": "2025-06-21T09:31:00.9329865+00:00", + "fileLastModified": "2025-07-14T09:31:00.932987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9329835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101335 + }, + "imageDetail": { + "width": 2234, + "height": 6784 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1335 }F6688827-3DCC-40AC-8646-AB04493E0F45" + }, + "fileCreated": "2025-06-21T09:31:00.9388692+00:00", + "fileLastModified": "2025-07-14T09:31:00.9388696+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9388673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101336 + }, + "imageDetail": { + "width": 3816, + "height": 2171 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 98724, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1336 }CC2C204A-DEEC-4912-B8EB-CD3461209489" + }, + "fileCreated": "2025-06-21T09:31:00.9451253+00:00", + "fileLastModified": "2025-07-14T09:31:00.9451257+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9451227+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101337 + }, + "imageDetail": { + "width": 2687, + "height": 2348 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84499, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1337 }3F385162-5C50-42EF-BF6A-9AEAB79FEC8B" + }, + "fileCreated": "2025-06-21T09:31:00.9511663+00:00", + "fileLastModified": "2025-07-14T09:31:00.9511672+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9511647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101342 + }, + "imageDetail": { + "width": 306, + "height": 7553 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 94171, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1342 }F4F89896-CD34-4A88-91FD-542D07866CB8" + }, + "fileCreated": "2025-06-21T09:31:00.9843777+00:00", + "fileLastModified": "2025-07-14T09:31:00.9843782+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9843784+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9843749+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101343 + }, + "imageDetail": { + "width": 1665, + "height": 4603 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 73073, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1343 }ABE3868E-5CFC-458E-9904-6F465CF59699" + }, + "fileCreated": "2025-06-21T09:31:00.9909537+00:00", + "fileLastModified": "2025-07-14T09:31:00.9909542+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9909512+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101344 + }, + "imageDetail": { + "width": 2750, + "height": 2934 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96007, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1344 }76E9FC39-75C4-4BBD-A376-FF3CE730C7B3" + }, + "fileCreated": "2025-06-21T09:31:00.9976808+00:00", + "fileLastModified": "2025-07-14T09:31:00.9976812+00:00", + "fileLastViewed": "2025-07-14T09:31:00.9976815+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:00.9976781+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101345 + }, + "imageDetail": { + "width": 310, + "height": 5970 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1345 }EE681281-5891-4E37-8D0A-939987420093" + }, + "fileCreated": "2025-06-21T09:31:01.0039176+00:00", + "fileLastModified": "2025-07-14T09:31:01.0039178+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0039158+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101348 + }, + "imageDetail": { + "width": 8925, + "height": 9427 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71069, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1348 }1F23C7CC-C487-4501-9304-C4C891620BF6" + }, + "fileCreated": "2025-06-21T09:31:01.0240124+00:00", + "fileLastModified": "2025-07-14T09:31:01.0240127+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0240103+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101350 + }, + "imageDetail": { + "width": 4007, + "height": 4549 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 44385, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1350 }8E02A9AE-DFB1-4595-BFDE-E60DAD04853C" + }, + "fileCreated": "2025-06-21T09:31:01.0367036+00:00", + "fileLastModified": "2025-07-14T09:31:01.036704+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0367041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0366856+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101352 + }, + "imageDetail": { + "width": 8664, + "height": 9418 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 67288, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1352 }1F11251F-750C-44E7-8F51-363B2556AB58" + }, + "fileCreated": "2025-06-21T09:31:01.0493824+00:00", + "fileLastModified": "2025-07-14T09:31:01.0493827+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0493807+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101353 + }, + "imageDetail": { + "width": 230, + "height": 9971 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94684, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1353 }3838B345-99F0-4718-9CF1-DF6EDEB04546" + }, + "fileCreated": "2025-06-21T09:31:01.0564162+00:00", + "fileLastModified": "2025-07-14T09:31:01.0564165+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0564167+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0564141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101355 + }, + "imageDetail": { + "width": 9309, + "height": 3003 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 43077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1355 }D14B9035-7EB8-4D53-8A05-B900075EFC1A" + }, + "fileCreated": "2025-06-21T09:31:01.0699866+00:00", + "fileLastModified": "2025-07-14T09:31:01.069987+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0699835+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101358 + }, + "imageDetail": { + "width": 7427, + "height": 7790 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 79199, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1358 }A260F1B4-3052-43FC-8A17-9537594596E4" + }, + "fileCreated": "2025-06-21T09:31:01.0895562+00:00", + "fileLastModified": "2025-07-14T09:31:01.0895565+00:00", + "fileLastViewed": "2025-07-14T09:31:01.0895566+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.0895544+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101360 + }, + "imageDetail": { + "width": 7211, + "height": 8055 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95585, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1360 }01D8CD33-ED71-44C9-97DE-6F92C6BC75C6" + }, + "fileCreated": "2025-06-21T09:31:01.1055431+00:00", + "fileLastModified": "2025-07-14T09:31:01.1055438+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1055445+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1055392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101366 + }, + "imageDetail": { + "width": 374, + "height": 8477 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 53526, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1366 }82DB7615-E483-4501-A5EC-4843242E9E15" + }, + "fileCreated": "2025-06-21T09:31:01.1591606+00:00", + "fileLastModified": "2025-07-14T09:31:01.1591612+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1591615+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1591579+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101371 + }, + "imageDetail": { + "width": 7399, + "height": 9457 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94368, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1371 }F70656B4-19F2-492E-A1FC-FF579982DCC6" + }, + "fileCreated": "2025-06-21T09:31:01.1963135+00:00", + "fileLastModified": "2025-07-14T09:31:01.1963141+00:00", + "fileLastViewed": "2025-07-14T09:31:01.1963144+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.1963105+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101372 + }, + "imageDetail": { + "width": 9766, + "height": 2226 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34598, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1372 }ABC594B2-BB86-4BA9-A1A2-94C7E44D02F8" + }, + "fileCreated": "2025-06-21T09:31:01.2037873+00:00", + "fileLastModified": "2025-07-14T09:31:01.203788+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2037884+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2037842+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101375 + }, + "imageDetail": { + "width": 7230, + "height": 8426 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 92592, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1375 }0AED73CF-97DD-4C66-A20D-B3F8813A5252" + }, + "fileCreated": "2025-06-21T09:31:01.2258464+00:00", + "fileLastModified": "2025-07-14T09:31:01.2258471+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.2258437+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101376 + }, + "imageDetail": { + "width": 170, + "height": 6668 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85022, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1376 }70EDD0FD-DBAB-4596-B2F1-CD45C7463AEF" + }, + "fileCreated": "2025-06-21T09:31:01.2330868+00:00", + "fileLastModified": "2025-07-14T09:31:01.2330874+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.233084+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101381 + }, + "imageDetail": { + "width": 2951, + "height": 9315 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96472, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1381 }CD520EEF-1652-456D-970F-F7809F46FCF1" + }, + "fileCreated": "2025-06-21T09:31:01.277635+00:00", + "fileLastModified": "2025-07-14T09:31:01.2776357+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.277631+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101383 + }, + "imageDetail": { + "width": 2220, + "height": 4330 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 79064, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1383 }62D450FA-94B8-433A-8AE3-7A5A45D47BE7" + }, + "fileCreated": "2025-06-21T09:31:01.2938005+00:00", + "fileLastModified": "2025-07-14T09:31:01.2938015+00:00", + "fileLastViewed": "2025-07-14T09:31:01.2938018+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.293798+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101385 + }, + "imageDetail": { + "width": 7894, + "height": 9460 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 35894, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1385 }DCFD0037-822A-4179-9DA4-BD2A4A064C6D" + }, + "fileCreated": "2025-06-21T09:31:01.310004+00:00", + "fileLastModified": "2025-07-14T09:31:01.3100045+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3100049+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3100016+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101389 + }, + "imageDetail": { + "width": 7835, + "height": 4329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46817, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1389 }0A3CC622-8BE8-491D-A793-533F37BDB782" + }, + "fileCreated": "2025-06-21T09:31:01.3406802+00:00", + "fileLastModified": "2025-07-14T09:31:01.3406809+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3406811+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3406784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101391 + }, + "imageDetail": { + "width": 6835, + "height": 7008 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22159, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1391 }31E1CCCC-6132-456A-813A-59D4D99F2130" + }, + "fileCreated": "2025-06-21T09:31:01.3566863+00:00", + "fileLastModified": "2025-07-14T09:31:01.3566868+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3566869+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3566837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101394 + }, + "imageDetail": { + "width": 5796, + "height": 2116 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 23549, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1394 }D7FD4EA4-E9FE-439A-A82D-16EBB4260E39" + }, + "fileCreated": "2025-06-21T09:31:01.3784492+00:00", + "fileLastModified": "2025-07-14T09:31:01.3784497+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3784498+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3784473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101395 + }, + "imageDetail": { + "width": 2563, + "height": 8522 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63287, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1395 }4F4C875A-07D5-44F0-B9EB-C39266C6105E" + }, + "fileCreated": "2025-06-21T09:31:01.3860917+00:00", + "fileLastModified": "2025-07-14T09:31:01.3860921+00:00", + "fileLastViewed": "2025-07-14T09:31:01.3860923+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.3860893+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101397 + }, + "imageDetail": { + "width": 5279, + "height": 2519 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 67055, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1397 }8AF744E4-3157-42C6-975A-1187CD7A00F6" + }, + "fileCreated": "2025-06-21T09:31:01.4004417+00:00", + "fileLastModified": "2025-07-14T09:31:01.4004422+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4004401+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101398 + }, + "imageDetail": { + "width": 9660, + "height": 4603 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 26828, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1398 }20E00DE2-2048-4243-B245-7AEC87DF0831" + }, + "fileCreated": "2025-06-21T09:31:01.4074621+00:00", + "fileLastModified": "2025-07-14T09:31:01.4074624+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4074625+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4074608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101399 + }, + "imageDetail": { + "width": 425, + "height": 2830 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 79712, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1399 }05604F32-4B2D-47B2-8964-A989FE7E9D39" + }, + "fileCreated": "2025-06-21T09:31:01.4146444+00:00", + "fileLastModified": "2025-07-14T09:31:01.4146448+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.414643+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101400 + }, + "imageDetail": { + "width": 5250, + "height": 7105 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27955, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1400 }A870E005-FAF6-47F9-8864-4CAAE1DE1D42" + }, + "fileCreated": "2025-06-21T09:31:01.4216345+00:00", + "fileLastModified": "2025-07-14T09:31:01.4216348+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4216332+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101402 + }, + "imageDetail": { + "width": 7812, + "height": 2350 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1402 }57B27CD3-8BF6-4472-B69B-EF8B3CD714D7" + }, + "fileCreated": "2025-06-21T09:31:01.436503+00:00", + "fileLastModified": "2025-07-14T09:31:01.4365034+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4365035+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4365005+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101404 + }, + "imageDetail": { + "width": 4790, + "height": 6497 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72590, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1404 }B265ED8B-CC55-4A73-945E-E9CFBE609C98" + }, + "fileCreated": "2025-06-21T09:31:01.4521363+00:00", + "fileLastModified": "2025-07-14T09:31:01.4521367+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4521342+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101405 + }, + "imageDetail": { + "width": 5738, + "height": 3378 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 77335, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1405 }D368465D-9B2B-43ED-89AE-9828145D25A2" + }, + "fileCreated": "2025-06-21T09:31:01.4604837+00:00", + "fileLastModified": "2025-07-14T09:31:01.4604842+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4604809+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101407 + }, + "imageDetail": { + "width": 7317, + "height": 6513 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 66135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1407 }3C565105-F7F7-4C15-BBAF-47FC3A3F14FB" + }, + "fileCreated": "2025-06-21T09:31:01.4758509+00:00", + "fileLastModified": "2025-07-14T09:31:01.4758514+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4758516+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4758483+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101408 + }, + "imageDetail": { + "width": 5435, + "height": 9712 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 58312, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1408 }262BBA57-4323-4EC3-B6BC-78BDD08842D3" + }, + "fileCreated": "2025-06-21T09:31:01.4841045+00:00", + "fileLastModified": "2025-07-14T09:31:01.4841052+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.4841022+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101409 + }, + "imageDetail": { + "width": 1471, + "height": 9961 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23328, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1409 }3B3FEB8D-D976-445B-ACBF-2D10E19F4890" + }, + "fileCreated": "2025-06-21T09:31:01.491971+00:00", + "fileLastModified": "2025-07-14T09:31:01.4919713+00:00", + "fileLastViewed": "2025-07-14T09:31:01.4919715+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.491969+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101411 + }, + "imageDetail": { + "width": 7582, + "height": 7182 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32284, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1411 }B21AB763-A218-4349-B77C-D3FB61D2B75A" + }, + "fileCreated": "2025-06-21T09:31:01.5075583+00:00", + "fileLastModified": "2025-07-14T09:31:01.5075587+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5075561+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101413 + }, + "imageDetail": { + "width": 1909, + "height": 7982 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 75943, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1413 }F12586B6-3F9D-446C-890E-0127DCA5FC3B" + }, + "fileCreated": "2025-06-21T09:31:01.5221819+00:00", + "fileLastModified": "2025-07-14T09:31:01.5221822+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5221823+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5221801+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101416 + }, + "imageDetail": { + "width": 4783, + "height": 4044 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44692, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1416 }5EF0F679-2183-45C8-8807-599D38804858" + }, + "fileCreated": "2025-06-21T09:31:01.536109+00:00", + "fileLastModified": "2025-07-14T09:31:01.5361092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5361075+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101419 + }, + "imageDetail": { + "width": 744, + "height": 5944 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 52509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1419 }2483B2C9-6B66-4CB4-8D0D-6AF35D006ED5" + }, + "fileCreated": "2025-06-21T09:31:01.5438095+00:00", + "fileLastModified": "2025-07-14T09:31:01.5438097+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5438081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101420 + }, + "imageDetail": { + "width": 6909, + "height": 8963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 75502, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1420 }EF3E445A-96C8-493D-A71D-D7A18BDA973C" + }, + "fileCreated": "2025-06-21T09:31:01.5460528+00:00", + "fileLastModified": "2025-07-14T09:31:01.5460531+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5460515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101422 + }, + "imageDetail": { + "width": 9230, + "height": 9632 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 66113, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1422 }24110954-86E4-44B7-A998-A70F13FE01D9" + }, + "fileCreated": "2025-06-21T09:31:01.551342+00:00", + "fileLastModified": "2025-07-14T09:31:01.5513423+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5513396+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101424 + }, + "imageDetail": { + "width": 931, + "height": 8529 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96863, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1424 }4C8AB4C0-6B9E-4412-925E-59B54357B6E9" + }, + "fileCreated": "2025-06-21T09:31:01.5560157+00:00", + "fileLastModified": "2025-07-14T09:31:01.5560159+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5560145+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101425 + }, + "imageDetail": { + "width": 9324, + "height": 9169 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88370, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1425 }1B716B46-6976-4A4C-A65B-CBB3A53E05C8" + }, + "fileCreated": "2025-06-21T09:31:01.5582017+00:00", + "fileLastModified": "2025-07-14T09:31:01.5582019+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5582002+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101427 + }, + "imageDetail": { + "width": 1370, + "height": 4375 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28632, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1427 }DC763C68-571A-4282-B001-E5A6E7635C46" + }, + "fileCreated": "2025-06-21T09:31:01.5629036+00:00", + "fileLastModified": "2025-07-14T09:31:01.5629039+00:00", + "fileLastViewed": "2025-07-14T09:31:01.562904+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5629021+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101432 + }, + "imageDetail": { + "width": 2583, + "height": 3583 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 89723, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1432 }774D66E4-BF11-48BE-85FC-60A78401E749" + }, + "fileCreated": "2025-06-21T09:31:01.5722618+00:00", + "fileLastModified": "2025-07-14T09:31:01.5722621+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5722622+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5722607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101433 + }, + "imageDetail": { + "width": 3240, + "height": 4305 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90443, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1433 }B2365EFA-90CB-45DE-BBB3-5EAF478E43B2" + }, + "fileCreated": "2025-06-21T09:31:01.5738131+00:00", + "fileLastModified": "2025-07-14T09:31:01.5738133+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.573812+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101435 + }, + "imageDetail": { + "width": 1640, + "height": 2806 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 98409, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1435 }04534DB7-7537-48D9-B881-BD8A4EA47DFD" + }, + "fileCreated": "2025-06-21T09:31:01.57695+00:00", + "fileLastModified": "2025-07-14T09:31:01.5769502+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5769486+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101436 + }, + "imageDetail": { + "width": 1501, + "height": 9758 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1436 }AB743E9F-7DF4-4FCD-B3EE-76E18A75CF3D" + }, + "fileCreated": "2025-06-21T09:31:01.5784368+00:00", + "fileLastModified": "2025-07-14T09:31:01.5784371+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5784372+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5784357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101437 + }, + "imageDetail": { + "width": 4687, + "height": 7581 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23230, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1437 }BD560362-4C0C-4DB2-99F7-9940D170A0B3" + }, + "fileCreated": "2025-06-21T09:31:01.580545+00:00", + "fileLastModified": "2025-07-14T09:31:01.5805452+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5805434+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101441 + }, + "imageDetail": { + "width": 653, + "height": 8857 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 66661, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1441 }6A8151D8-F103-4021-9A81-D24F4B76209B" + }, + "fileCreated": "2025-06-21T09:31:01.5879164+00:00", + "fileLastModified": "2025-07-14T09:31:01.5879166+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5879153+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101442 + }, + "imageDetail": { + "width": 3663, + "height": 8128 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25192, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1442 }527FCB17-7CF8-43B2-8A57-A55F3436CFB1" + }, + "fileCreated": "2025-06-21T09:31:01.5894467+00:00", + "fileLastModified": "2025-07-14T09:31:01.589447+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5894471+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5894456+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101443 + }, + "imageDetail": { + "width": 5199, + "height": 5743 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 32151, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1443 }15993580-20C9-48BB-9EEF-B1E4E86425E7" + }, + "fileCreated": "2025-06-21T09:31:01.5909151+00:00", + "fileLastModified": "2025-07-14T09:31:01.5909153+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5909154+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5909141+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101444 + }, + "imageDetail": { + "width": 3755, + "height": 5792 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77305, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1444 }5CC87C16-5976-45D2-8127-BB4BDB473D6D" + }, + "fileCreated": "2025-06-21T09:31:01.592378+00:00", + "fileLastModified": "2025-07-14T09:31:01.5923782+00:00", + "fileLastViewed": "2025-07-14T09:31:01.5923783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5923769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101445 + }, + "imageDetail": { + "width": 3329, + "height": 9914 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 24944, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1445 }ECCC436C-33CB-44A7-BB59-966FC76FC8AF" + }, + "fileCreated": "2025-06-21T09:31:01.5937682+00:00", + "fileLastModified": "2025-07-14T09:31:01.5937684+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5937672+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101446 + }, + "imageDetail": { + "width": 1603, + "height": 4485 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53561, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1446 }85C137B7-7298-49F5-A2E2-7BA6BACC1714" + }, + "fileCreated": "2025-06-21T09:31:01.5952403+00:00", + "fileLastModified": "2025-07-14T09:31:01.5952405+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.5952392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101450 + }, + "imageDetail": { + "width": 9843, + "height": 4825 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 51642, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1450 }1198416A-C514-43DF-A412-FC173F7499D5" + }, + "fileCreated": "2025-06-21T09:31:01.6041334+00:00", + "fileLastModified": "2025-07-14T09:31:01.6041336+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6041339+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6041315+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101451 + }, + "imageDetail": { + "width": 155, + "height": 3347 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33508, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1451 }C4B9D110-6AD1-42FE-A00E-D6C5505D052D" + }, + "fileCreated": "2025-06-21T09:31:01.6059386+00:00", + "fileLastModified": "2025-07-14T09:31:01.6059388+00:00", + "fileLastViewed": "2025-07-14T09:31:01.605939+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6059375+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101452 + }, + "imageDetail": { + "width": 7681, + "height": 8409 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1452 }D6D5C85B-B430-42A6-AB1E-0AC00903B958" + }, + "fileCreated": "2025-06-21T09:31:01.6077617+00:00", + "fileLastModified": "2025-07-14T09:31:01.6077621+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6077623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6077601+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101453 + }, + "imageDetail": { + "width": 4699, + "height": 7567 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49457, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1453 }D0857524-2F68-4F96-994B-F9510B49D818" + }, + "fileCreated": "2025-06-21T09:31:01.6095624+00:00", + "fileLastModified": "2025-07-14T09:31:01.6095626+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6095608+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101458 + }, + "imageDetail": { + "width": 6093, + "height": 8197 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31348, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1458 }7C4F70A9-C563-4B91-8093-C34B509721D7" + }, + "fileCreated": "2025-06-21T09:31:01.6194188+00:00", + "fileLastModified": "2025-07-14T09:31:01.619419+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6194193+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6194171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101459 + }, + "imageDetail": { + "width": 6916, + "height": 4086 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59184, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1459 }EA1D0C56-A94A-4526-A21E-7B1A580168F6" + }, + "fileCreated": "2025-06-21T09:31:01.6210414+00:00", + "fileLastModified": "2025-07-14T09:31:01.6210416+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.62104+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101461 + }, + "imageDetail": { + "width": 4131, + "height": 7921 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 65806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1461 }B8D6CB91-5B18-4084-8667-2AECF647D84E" + }, + "fileCreated": "2025-06-21T09:31:01.6242313+00:00", + "fileLastModified": "2025-07-14T09:31:01.6242316+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6242317+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6242301+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101465 + }, + "imageDetail": { + "width": 4895, + "height": 5711 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63921, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1465 }8447514E-1083-4D95-B4A2-150E829CB5B6" + }, + "fileCreated": "2025-06-21T09:31:01.6317487+00:00", + "fileLastModified": "2025-07-14T09:31:01.631749+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6317468+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101466 + }, + "imageDetail": { + "width": 7632, + "height": 6028 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 24089, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1466 }EF8C55C8-4D85-44CF-B42F-86F934B2FFA6" + }, + "fileCreated": "2025-06-21T09:31:01.6334092+00:00", + "fileLastModified": "2025-07-14T09:31:01.6334094+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6334096+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6334076+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101468 + }, + "imageDetail": { + "width": 715, + "height": 9405 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 77201, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1468 }C867EE65-CCBC-4F60-BBFD-4BAAA2BFB1D2" + }, + "fileCreated": "2025-06-21T09:31:01.6369199+00:00", + "fileLastModified": "2025-07-14T09:31:01.6369202+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6369204+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6369187+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101469 + }, + "imageDetail": { + "width": 3281, + "height": 9979 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49672, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1469 }BE44D54A-CE20-4990-B124-F99EEE2FBC60" + }, + "fileCreated": "2025-06-21T09:31:01.6384288+00:00", + "fileLastModified": "2025-07-14T09:31:01.638429+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6384292+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6384276+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101471 + }, + "imageDetail": { + "width": 617, + "height": 6320 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78860, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1471 }BE07348A-3CE7-407A-8315-F0B943E6B402" + }, + "fileCreated": "2025-06-21T09:31:01.6417462+00:00", + "fileLastModified": "2025-07-14T09:31:01.6417464+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6417466+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.641745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101472 + }, + "imageDetail": { + "width": 9258, + "height": 2535 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 29518, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1472 }F9A48D83-F1CB-4A24-A1DB-7790919B5A6E" + }, + "fileCreated": "2025-06-21T09:31:01.6433056+00:00", + "fileLastModified": "2025-07-14T09:31:01.6433058+00:00", + "fileLastViewed": "2025-07-14T09:31:01.643306+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6433045+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101474 + }, + "imageDetail": { + "width": 5263, + "height": 4385 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71255, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1474 }CC95EE2F-3515-4A73-8BC3-D4159DB0EEC5" + }, + "fileCreated": "2025-06-21T09:31:01.6473351+00:00", + "fileLastModified": "2025-07-14T09:31:01.6473353+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6473356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6473336+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101475 + }, + "imageDetail": { + "width": 3790, + "height": 7905 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 91922, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1475 }42D3BECE-4309-49E7-82F6-B2775E791865" + }, + "fileCreated": "2025-06-21T09:31:01.6492089+00:00", + "fileLastModified": "2025-07-14T09:31:01.6492091+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6492094+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6492074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101479 + }, + "imageDetail": { + "width": 7912, + "height": 2503 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 55991, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1479 }F210BBCC-4EA9-43F4-839D-9025BC3B8118" + }, + "fileCreated": "2025-06-21T09:31:01.6563685+00:00", + "fileLastModified": "2025-07-14T09:31:01.6563687+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6563668+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101480 + }, + "imageDetail": { + "width": 2960, + "height": 6166 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 73987, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1480 }56864511-89E6-4C7E-93D9-E3C28DAFBD11" + }, + "fileCreated": "2025-06-21T09:31:01.6579806+00:00", + "fileLastModified": "2025-07-14T09:31:01.6579808+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.657979+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101481 + }, + "imageDetail": { + "width": 3540, + "height": 9079 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54514, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1481 }27FCBEF7-F7C7-44E7-8955-8209B9E83C81" + }, + "fileCreated": "2025-06-21T09:31:01.659763+00:00", + "fileLastModified": "2025-07-14T09:31:01.6597635+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6597607+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101486 + }, + "imageDetail": { + "width": 9728, + "height": 7935 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40563, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1486 }615D118A-020D-4B23-BA8A-6CB120BD3A5E" + }, + "fileCreated": "2025-06-21T09:31:01.6689738+00:00", + "fileLastModified": "2025-07-14T09:31:01.668974+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6689725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101487 + }, + "imageDetail": { + "width": 8248, + "height": 4649 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43233, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1487 }45D55647-7B44-4748-9963-BE6A5EB0521E" + }, + "fileCreated": "2025-06-21T09:31:01.670644+00:00", + "fileLastModified": "2025-07-14T09:31:01.6706442+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6706426+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101490 + }, + "imageDetail": { + "width": 4291, + "height": 7082 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 36187, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1490 }5D596814-DFDD-4482-A32B-B545FE51F9B7" + }, + "fileCreated": "2025-06-21T09:31:01.676358+00:00", + "fileLastModified": "2025-07-14T09:31:01.6763583+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6763588+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6763557+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101491 + }, + "imageDetail": { + "width": 5376, + "height": 5305 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 31169, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1491 }F89EF349-E4C3-4E99-891A-1FC72DAF1FA4" + }, + "fileCreated": "2025-06-21T09:31:01.6782847+00:00", + "fileLastModified": "2025-07-14T09:31:01.6782851+00:00", + "fileLastViewed": "2025-07-14T09:31:01.6782854+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.6782829+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101503 + }, + "imageDetail": { + "width": 5572, + "height": 8040 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1503 }BC89BBD6-D428-4EB1-BEC2-ABCBFBDA653A" + }, + "fileCreated": "2025-06-21T09:31:01.7012502+00:00", + "fileLastModified": "2025-07-14T09:31:01.7012504+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7012487+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101504 + }, + "imageDetail": { + "width": 9010, + "height": 5254 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 75135, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1504 }C24834F3-6F72-4E96-95B4-A1F285F13C77" + }, + "fileCreated": "2025-06-21T09:31:01.7030607+00:00", + "fileLastModified": "2025-07-14T09:31:01.7030609+00:00", + "fileLastViewed": "2025-07-14T09:31:01.703061+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7030591+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101505 + }, + "imageDetail": { + "width": 7093, + "height": 8628 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 34989, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1505 }E1EC87F1-842F-44C3-A658-E7BD4B6675C1" + }, + "fileCreated": "2025-06-21T09:31:01.7053357+00:00", + "fileLastModified": "2025-07-14T09:31:01.7053359+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7053342+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101506 + }, + "imageDetail": { + "width": 4349, + "height": 5903 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1506 }741959A5-A791-4096-9BE0-3CC15AFAF663" + }, + "fileCreated": "2025-06-21T09:31:01.7072566+00:00", + "fileLastModified": "2025-07-14T09:31:01.7072568+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7072551+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101507 + }, + "imageDetail": { + "width": 637, + "height": 8628 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 72684, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1507 }57CDD65D-EA0C-4C26-A0B3-4DEA680E36B6" + }, + "fileCreated": "2025-06-21T09:31:01.7090416+00:00", + "fileLastModified": "2025-07-14T09:31:01.7090419+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.70904+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101509 + }, + "imageDetail": { + "width": 9703, + "height": 9723 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 94245, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1509 }073949BC-6D6D-43FE-98A2-9CBA2A9C65C1" + }, + "fileCreated": "2025-06-21T09:31:01.7125827+00:00", + "fileLastModified": "2025-07-14T09:31:01.7125831+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7125833+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7125812+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101514 + }, + "imageDetail": { + "width": 8087, + "height": 9946 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80760, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1514 }7169BA2E-2FA7-4077-91D2-E76BB956AE93" + }, + "fileCreated": "2025-06-21T09:31:01.7220051+00:00", + "fileLastModified": "2025-07-14T09:31:01.7220052+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7220054+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7220032+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101517 + }, + "imageDetail": { + "width": 4937, + "height": 2569 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 82654, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1517 }93012ACE-FBD7-4DB5-B787-45B705824A00" + }, + "fileCreated": "2025-06-21T09:31:01.7263966+00:00", + "fileLastModified": "2025-07-14T09:31:01.7263968+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7263957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101518 + }, + "imageDetail": { + "width": 8489, + "height": 5172 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 56668, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1518 }0D4757AE-4830-4A9C-B886-AB6236EDCECA" + }, + "fileCreated": "2025-06-21T09:31:01.7277967+00:00", + "fileLastModified": "2025-07-14T09:31:01.7277969+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7277957+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101525 + }, + "imageDetail": { + "width": 1358, + "height": 8657 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27106, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1525 }83E46907-BA07-483D-93AA-DA1AEC2A0094" + }, + "fileCreated": "2025-06-21T09:31:01.7389665+00:00", + "fileLastModified": "2025-07-14T09:31:01.7389667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7389651+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101526 + }, + "imageDetail": { + "width": 838, + "height": 4646 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 28475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1526 }A75500DF-FD1E-4A32-A948-1A57A00D0581" + }, + "fileCreated": "2025-06-21T09:31:01.740331+00:00", + "fileLastModified": "2025-07-14T09:31:01.7403312+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7403313+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7403299+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101527 + }, + "imageDetail": { + "width": 9127, + "height": 8083 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34325, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1527 }2030D9EC-A27A-4F78-AF6F-8DAE32410BB5" + }, + "fileCreated": "2025-06-21T09:31:01.7416576+00:00", + "fileLastModified": "2025-07-14T09:31:01.7416578+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7416579+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7416566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101528 + }, + "imageDetail": { + "width": 9736, + "height": 2703 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 84945, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1528 }A57E8285-10BD-42BF-BFF1-9FBA489F20F5" + }, + "fileCreated": "2025-06-21T09:31:01.742985+00:00", + "fileLastModified": "2025-07-14T09:31:01.7429853+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7429733+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101531 + }, + "imageDetail": { + "width": 4059, + "height": 7370 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 78676, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1531 }BDBE8461-F0BE-4219-B0C6-242C8FA05330" + }, + "fileCreated": "2025-06-21T09:31:01.7473955+00:00", + "fileLastModified": "2025-07-14T09:31:01.7473957+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7473958+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7473946+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101532 + }, + "imageDetail": { + "width": 9471, + "height": 7598 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 44247, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1532 }9D30176D-A069-469A-8876-5B2310F31048" + }, + "fileCreated": "2025-06-21T09:31:01.7487742+00:00", + "fileLastModified": "2025-07-14T09:31:01.7487744+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7487732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101533 + }, + "imageDetail": { + "width": 626, + "height": 6655 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 63618, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1533 }12673DC6-3B2D-422F-AFFB-98290CBF9CA7" + }, + "fileCreated": "2025-06-21T09:31:01.7501334+00:00", + "fileLastModified": "2025-07-14T09:31:01.7501335+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7501324+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101537 + }, + "imageDetail": { + "width": 1723, + "height": 7640 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96819, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1537 }5109256F-2164-4BD2-AAE8-6B28B5E0601D" + }, + "fileCreated": "2025-06-21T09:31:01.7559861+00:00", + "fileLastModified": "2025-07-14T09:31:01.7559863+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7559851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101539 + }, + "imageDetail": { + "width": 9760, + "height": 2012 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64213, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1539 }C97D58E4-9742-4740-8F9A-F2C7F1593CC3" + }, + "fileCreated": "2025-06-21T09:31:01.7587756+00:00", + "fileLastModified": "2025-07-14T09:31:01.7587758+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7587745+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101540 + }, + "imageDetail": { + "width": 150, + "height": 2720 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44300, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1540 }C0340F48-FEFC-42D8-8C60-FD15481A3B4E" + }, + "fileCreated": "2025-06-21T09:31:01.760687+00:00", + "fileLastModified": "2025-07-14T09:31:01.7606872+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7606859+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101541 + }, + "imageDetail": { + "width": 1199, + "height": 4042 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 63445, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1541 }E3066ABE-17FE-4DCB-8049-3AACB1CADF6E" + }, + "fileCreated": "2025-06-21T09:31:01.7620145+00:00", + "fileLastModified": "2025-07-14T09:31:01.7620147+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7620135+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101544 + }, + "imageDetail": { + "width": 8623, + "height": 5436 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1544 }1173EE0C-34CC-4F47-B91F-FFF7CDD6ADFF" + }, + "fileCreated": "2025-06-21T09:31:01.7660831+00:00", + "fileLastModified": "2025-07-14T09:31:01.7660833+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7660834+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7660822+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101545 + }, + "imageDetail": { + "width": 3753, + "height": 4963 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 94475, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1545 }E6C2BE39-4C0D-4D1D-85B2-E21285024BEF" + }, + "fileCreated": "2025-06-21T09:31:01.7673489+00:00", + "fileLastModified": "2025-07-14T09:31:01.767349+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7673492+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.767348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101547 + }, + "imageDetail": { + "width": 4649, + "height": 2808 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 61147, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1547 }322CCD2A-D5C5-431D-A7F9-1BC34D58A37F" + }, + "fileCreated": "2025-06-21T09:31:01.7705517+00:00", + "fileLastModified": "2025-07-14T09:31:01.7705519+00:00", + "fileLastViewed": "2025-07-14T09:31:01.770552+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7705507+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101548 + }, + "imageDetail": { + "width": 601, + "height": 4977 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 43289, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1548 }BEF71696-A162-4B8B-9A59-CE98D179E238" + }, + "fileCreated": "2025-06-21T09:31:01.7723809+00:00", + "fileLastModified": "2025-07-14T09:31:01.7723811+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7723812+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.77238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101549 + }, + "imageDetail": { + "width": 4709, + "height": 5479 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89508, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1549 }73273698-4FC2-4AB2-A193-AA98E208D85B" + }, + "fileCreated": "2025-06-21T09:31:01.7739339+00:00", + "fileLastModified": "2025-07-14T09:31:01.7739341+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7739328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101550 + }, + "imageDetail": { + "width": 5501, + "height": 9741 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 85037, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1550 }DF0A4170-DC5D-439B-8C83-44F96E2ECE3B" + }, + "fileCreated": "2025-06-21T09:31:01.7752969+00:00", + "fileLastModified": "2025-07-14T09:31:01.7752971+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7752972+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7752959+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101551 + }, + "imageDetail": { + "width": 7273, + "height": 4909 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 96690, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1551 }3D46E7E3-2455-440F-BC69-80A9F5FFCE01" + }, + "fileCreated": "2025-06-21T09:31:01.7767368+00:00", + "fileLastModified": "2025-07-14T09:31:01.776737+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7767357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101555 + }, + "imageDetail": { + "width": 6192, + "height": 2369 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 46886, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1555 }D5F99757-3E15-417D-BA6E-1973CCB0468F" + }, + "fileCreated": "2025-06-21T09:31:01.7834309+00:00", + "fileLastModified": "2025-07-14T09:31:01.783431+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7834294+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101557 + }, + "imageDetail": { + "width": 8121, + "height": 3472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68053, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1557 }7D64FD4F-B328-4366-90F2-BAA2D8B8B56F" + }, + "fileCreated": "2025-06-21T09:31:01.7866208+00:00", + "fileLastModified": "2025-07-14T09:31:01.786621+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7866198+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101559 + }, + "imageDetail": { + "width": 1110, + "height": 9452 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 22687, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1559 }4FFA73A8-E41B-48E0-A974-892F08CD46A9" + }, + "fileCreated": "2025-06-21T09:31:01.7895463+00:00", + "fileLastModified": "2025-07-14T09:31:01.7895465+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7895453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101561 + }, + "imageDetail": { + "width": 6383, + "height": 2623 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 92424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1561 }3AC40431-B647-4AD2-BD8F-D645F30FCF9E" + }, + "fileCreated": "2025-06-21T09:31:01.7922077+00:00", + "fileLastModified": "2025-07-14T09:31:01.7922079+00:00", + "fileLastViewed": "2025-07-14T09:31:01.792208+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7922067+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101563 + }, + "imageDetail": { + "width": 9567, + "height": 5329 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54569, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1563 }D8380E07-3938-4B13-9B5F-EC4CF6862AC6" + }, + "fileCreated": "2025-06-21T09:31:01.7948138+00:00", + "fileLastModified": "2025-07-14T09:31:01.794814+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7948128+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101564 + }, + "imageDetail": { + "width": 4760, + "height": 7620 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 93217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1564 }C6D73253-5957-44E0-BD0B-5F60E8479461" + }, + "fileCreated": "2025-06-21T09:31:01.7961983+00:00", + "fileLastModified": "2025-07-14T09:31:01.7961985+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7961986+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7961973+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101565 + }, + "imageDetail": { + "width": 7472, + "height": 5520 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 97338, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1565 }CB6F1E64-6994-4B03-A51F-70CA7BB535B0" + }, + "fileCreated": "2025-06-21T09:31:01.7980568+00:00", + "fileLastModified": "2025-07-14T09:31:01.798057+00:00", + "fileLastViewed": "2025-07-14T09:31:01.7980571+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.7980559+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101568 + }, + "imageDetail": { + "width": 4760, + "height": 5245 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 37050, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1568 }8CE21E6A-5DBF-4754-85D3-0BFF030DAF05" + }, + "fileCreated": "2025-06-21T09:31:01.8025933+00:00", + "fileLastModified": "2025-07-14T09:31:01.8025934+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8025923+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101569 + }, + "imageDetail": { + "width": 4382, + "height": 3607 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53465, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1569 }BB7A24CA-E974-4FBF-BF5B-D6D9C15831EE" + }, + "fileCreated": "2025-06-21T09:31:01.8039232+00:00", + "fileLastModified": "2025-07-14T09:31:01.8039234+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8039223+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101570 + }, + "imageDetail": { + "width": 4603, + "height": 8604 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34226, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1570 }6AA979A0-9F60-4EB7-AFBE-538C52567E61" + }, + "fileCreated": "2025-06-21T09:31:01.805322+00:00", + "fileLastModified": "2025-07-14T09:31:01.8053222+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8053223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8053211+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101573 + }, + "imageDetail": { + "width": 7319, + "height": 3244 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92552, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1573 }2118667E-9D1B-4BA7-B041-9E55F7C79F84" + }, + "fileCreated": "2025-06-21T09:31:01.8100565+00:00", + "fileLastModified": "2025-07-14T09:31:01.8100566+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8100552+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101575 + }, + "imageDetail": { + "width": 7231, + "height": 7883 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 69346, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1575 }95E407E3-4048-452E-AA4D-77801D4F1FD1" + }, + "fileCreated": "2025-06-21T09:31:01.8127128+00:00", + "fileLastModified": "2025-07-14T09:31:01.8127129+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8127118+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101577 + }, + "imageDetail": { + "width": 7324, + "height": 2418 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 34430, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1577 }90361B87-FFE1-49B3-B835-21A1D888BF88" + }, + "fileCreated": "2025-06-21T09:31:01.8160572+00:00", + "fileLastModified": "2025-07-14T09:31:01.8160574+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8160558+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101582 + }, + "imageDetail": { + "width": 5076, + "height": 9906 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 65826, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1582 }337FBA54-49A5-4850-A2B2-84C0F2FB254A" + }, + "fileCreated": "2025-06-21T09:31:01.82421+00:00", + "fileLastModified": "2025-07-14T09:31:01.8242102+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8242103+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.824209+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101586 + }, + "imageDetail": { + "width": 986, + "height": 7416 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42974, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1586 }89A293AD-A873-4A5A-B856-BAF770C48901" + }, + "fileCreated": "2025-06-21T09:31:01.8297321+00:00", + "fileLastModified": "2025-07-14T09:31:01.8297323+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8297324+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8297311+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101587 + }, + "imageDetail": { + "width": 7015, + "height": 7365 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 31762, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1587 }3AEFCC6A-68E6-4935-B08C-0FF809E49C09" + }, + "fileCreated": "2025-06-21T09:31:01.8316182+00:00", + "fileLastModified": "2025-07-14T09:31:01.8316184+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8316164+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101588 + }, + "imageDetail": { + "width": 8941, + "height": 2781 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1588 }51974FE4-994B-4531-BFF3-771AF63F92A5" + }, + "fileCreated": "2025-06-21T09:31:01.83312+00:00", + "fileLastModified": "2025-07-14T09:31:01.8331202+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8331188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101590 + }, + "imageDetail": { + "width": 3184, + "height": 5113 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 23707, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1590 }24C7939B-B4E5-475B-928B-1B9931A820F7" + }, + "fileCreated": "2025-06-21T09:31:01.8366651+00:00", + "fileLastModified": "2025-07-14T09:31:01.8366653+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8366641+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101594 + }, + "imageDetail": { + "width": 5356, + "height": 3522 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28956, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1594 }B1A2181D-F388-4637-A5C6-710ED79DDAC8" + }, + "fileCreated": "2025-06-21T09:31:01.843838+00:00", + "fileLastModified": "2025-07-14T09:31:01.8438382+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8438383+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8438364+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101597 + }, + "imageDetail": { + "width": 2801, + "height": 4444 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 90142, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1597 }90CF8282-9D0D-405C-ACF6-3DB39EE9BC02" + }, + "fileCreated": "2025-06-21T09:31:01.8498639+00:00", + "fileLastModified": "2025-07-14T09:31:01.8498641+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8498643+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8498623+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101599 + }, + "imageDetail": { + "width": 9657, + "height": 7339 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 33653, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1599 }1C0DDC98-8DAB-40B5-991F-9BDCD8B18F0F" + }, + "fileCreated": "2025-06-21T09:31:01.853642+00:00", + "fileLastModified": "2025-07-14T09:31:01.8536422+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8536423+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8536409+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101601 + }, + "imageDetail": { + "width": 8858, + "height": 7272 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 40348, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1601 }86948EA3-DC7E-4078-8CE9-3FC720B15B94" + }, + "fileCreated": "2025-06-21T09:31:01.8570075+00:00", + "fileLastModified": "2025-07-14T09:31:01.8570077+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8570066+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101603 + }, + "imageDetail": { + "width": 1297, + "height": 5164 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 91117, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1603 }694B2433-8C1B-4CBE-9D18-44106A9B6E42" + }, + "fileCreated": "2025-06-21T09:31:01.8600885+00:00", + "fileLastModified": "2025-07-14T09:31:01.8600887+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8600888+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8600876+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101605 + }, + "imageDetail": { + "width": 1751, + "height": 9837 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 53466, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1605 }2B9E1E61-745B-4180-9095-5DA032F98182" + }, + "fileCreated": "2025-06-21T09:31:01.864606+00:00", + "fileLastModified": "2025-07-14T09:31:01.8646062+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8646048+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101606 + }, + "imageDetail": { + "width": 8110, + "height": 7631 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 30222, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1606 }74F50E72-1EB0-4D7F-8870-751C37E3768C" + }, + "fileCreated": "2025-06-21T09:31:01.8663924+00:00", + "fileLastModified": "2025-07-14T09:31:01.8663929+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8663912+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101610 + }, + "imageDetail": { + "width": 4301, + "height": 9361 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 23815, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1610 }E6603985-C8C9-4996-A2D2-52E9AF354CC4" + }, + "fileCreated": "2025-06-21T09:31:01.8728096+00:00", + "fileLastModified": "2025-07-14T09:31:01.8728098+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8728087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101612 + }, + "imageDetail": { + "width": 3520, + "height": 7672 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 40498, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1612 }D36E8A18-69AA-4B28-9EAC-8ADBC895C2B6" + }, + "fileCreated": "2025-06-21T09:31:01.8763693+00:00", + "fileLastModified": "2025-07-14T09:31:01.8763695+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8763682+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101614 + }, + "imageDetail": { + "width": 7770, + "height": 7295 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 72109, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1614 }10E09E0C-C3C1-4913-8BED-4D63E3C49C4C" + }, + "fileCreated": "2025-06-21T09:31:01.8798472+00:00", + "fileLastModified": "2025-07-14T09:31:01.8798474+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8798461+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101617 + }, + "imageDetail": { + "width": 898, + "height": 9603 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62080, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1617 }8DFC4F2F-92A9-487A-A765-326C89AC926A" + }, + "fileCreated": "2025-06-21T09:31:01.8846227+00:00", + "fileLastModified": "2025-07-14T09:31:01.8846229+00:00", + "fileLastViewed": "2025-07-14T09:31:01.884623+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8846218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101620 + }, + "imageDetail": { + "width": 7415, + "height": 3835 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86006, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1620 }CF3B1823-C1BF-4C70-A238-CCEB18661D41" + }, + "fileCreated": "2025-06-21T09:31:01.8897365+00:00", + "fileLastModified": "2025-07-14T09:31:01.8897367+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8897355+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101622 + }, + "imageDetail": { + "width": 942, + "height": 7004 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45790, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1622 }7173497D-2A34-4A1D-B899-0723053881D8" + }, + "fileCreated": "2025-06-21T09:31:01.8935352+00:00", + "fileLastModified": "2025-07-14T09:31:01.8935354+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8935356+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8935338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101623 + }, + "imageDetail": { + "width": 4405, + "height": 6985 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 80995, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1623 }B48C4A10-9E9B-4DDE-8D7D-C7F092C8357A" + }, + "fileCreated": "2025-06-21T09:31:01.8951485+00:00", + "fileLastModified": "2025-07-14T09:31:01.8951487+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8951488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8951473+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101624 + }, + "imageDetail": { + "width": 9216, + "height": 2485 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 97052, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1624 }CB710152-9D7A-41C0-A57D-3DA8232F2279" + }, + "fileCreated": "2025-06-21T09:31:01.8967043+00:00", + "fileLastModified": "2025-07-14T09:31:01.8967045+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8967034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101625 + }, + "imageDetail": { + "width": 9611, + "height": 8019 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 87077, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1625 }7E643E20-F734-4C28-B917-9FABC81FFA9B" + }, + "fileCreated": "2025-06-21T09:31:01.8982737+00:00", + "fileLastModified": "2025-07-14T09:31:01.898274+00:00", + "fileLastViewed": "2025-07-14T09:31:01.8982741+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.8982727+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101627 + }, + "imageDetail": { + "width": 5623, + "height": 6203 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 47239, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1627 }F995C4F0-369C-4D92-8788-E1ABB14C6EF3" + }, + "fileCreated": "2025-06-21T09:31:01.9026945+00:00", + "fileLastModified": "2025-07-14T09:31:01.9026947+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9026934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101631 + }, + "imageDetail": { + "width": 1976, + "height": 2442 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 43639, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1631 }0F701120-FB09-4938-832C-9BD31C599579" + }, + "fileCreated": "2025-06-21T09:31:01.9094185+00:00", + "fileLastModified": "2025-07-14T09:31:01.9094187+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9094175+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101632 + }, + "imageDetail": { + "width": 9730, + "height": 3698 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 22231, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1632 }61C9EDEE-7C0A-4FCF-AF22-5ED047B8C324" + }, + "fileCreated": "2025-06-21T09:31:01.9109743+00:00", + "fileLastModified": "2025-07-14T09:31:01.9109746+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9109747+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9109732+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101633 + }, + "imageDetail": { + "width": 960, + "height": 5147 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89055, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1633 }AB4AB9CF-C607-4ABE-B370-E17E71D1CC29" + }, + "fileCreated": "2025-06-21T09:31:01.912522+00:00", + "fileLastModified": "2025-07-14T09:31:01.9125222+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9125223+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.912521+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101634 + }, + "imageDetail": { + "width": 3752, + "height": 6370 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 68675, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1634 }B2CBAC34-515A-4D5C-B92F-87EA4ADD8DBF" + }, + "fileCreated": "2025-06-21T09:31:01.9150902+00:00", + "fileLastModified": "2025-07-14T09:31:01.9150904+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9150889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101635 + }, + "imageDetail": { + "width": 5588, + "height": 7887 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 25472, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1635 }1705192D-477D-480A-85B0-5D96EFDB5463" + }, + "fileCreated": "2025-06-21T09:31:01.9167832+00:00", + "fileLastModified": "2025-07-14T09:31:01.9167834+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9167835+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9167821+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101641 + }, + "imageDetail": { + "width": 1337, + "height": 8472 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 34227, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1641 }11E789BB-5DC5-4272-B64F-6C265CEE3E6F" + }, + "fileCreated": "2025-06-21T09:31:01.9272941+00:00", + "fileLastModified": "2025-07-14T09:31:01.9272943+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9272944+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9272934+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101642 + }, + "imageDetail": { + "width": 3350, + "height": 2331 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 82812, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1642 }2984B3FF-9651-4477-8CB1-0AE418ED2D67" + }, + "fileCreated": "2025-06-21T09:31:01.9295305+00:00", + "fileLastModified": "2025-07-14T09:31:01.9295307+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9295295+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101649 + }, + "imageDetail": { + "width": 3121, + "height": 3729 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23382, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1649 }A230993B-082B-47FC-993E-DFCBFDB52034" + }, + "fileCreated": "2025-06-21T09:31:01.9426144+00:00", + "fileLastModified": "2025-07-14T09:31:01.9426146+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9426136+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101650 + }, + "imageDetail": { + "width": 9592, + "height": 6027 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71176, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1650 }1C0FEBBB-A9D9-445E-AF4C-3E16257BBFD2" + }, + "fileCreated": "2025-06-21T09:31:01.9442443+00:00", + "fileLastModified": "2025-07-14T09:31:01.9442446+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9442447+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9442436+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101651 + }, + "imageDetail": { + "width": 6198, + "height": 4956 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83317, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1651 }49533E51-534C-4563-BD0E-80F8570E204B" + }, + "fileCreated": "2025-06-21T09:31:01.9458857+00:00", + "fileLastModified": "2025-07-14T09:31:01.9458859+00:00", + "fileLastViewed": "2025-07-14T09:31:01.945886+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9458849+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101652 + }, + "imageDetail": { + "width": 6283, + "height": 9581 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 25926, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1652 }0FC67577-DAD9-40C5-8A5B-136683CE5014" + }, + "fileCreated": "2025-06-21T09:31:01.9474589+00:00", + "fileLastModified": "2025-07-14T09:31:01.9474591+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9474581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101653 + }, + "imageDetail": { + "width": 7006, + "height": 8180 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 88649, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1653 }F2413FE5-EE6B-4B01-9FED-8D8924E9DFD1" + }, + "fileCreated": "2025-06-21T09:31:01.9491774+00:00", + "fileLastModified": "2025-07-14T09:31:01.9491776+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9491777+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9491766+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101655 + }, + "imageDetail": { + "width": 6740, + "height": 8702 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59930, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1655 }91FF96C0-2D6E-4BD3-A2B7-049422B7CDA3" + }, + "fileCreated": "2025-06-21T09:31:01.952367+00:00", + "fileLastModified": "2025-07-14T09:31:01.9523673+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9523673+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9523663+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101658 + }, + "imageDetail": { + "width": 424, + "height": 5783 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 71716, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1658 }A318A8D0-9EB4-4CFD-9EAE-489071BBA4FE" + }, + "fileCreated": "2025-06-21T09:31:01.9583999+00:00", + "fileLastModified": "2025-07-14T09:31:01.9584001+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9584002+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9583991+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101660 + }, + "imageDetail": { + "width": 5134, + "height": 7577 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 41401, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1660 }278326A5-42FA-4201-A95C-1201BC5BA480" + }, + "fileCreated": "2025-06-21T09:31:01.9615414+00:00", + "fileLastModified": "2025-07-14T09:31:01.9615416+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9615417+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9615406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101662 + }, + "imageDetail": { + "width": 3531, + "height": 5011 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44362, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1662 }43DCAEC4-D91B-4A01-A7DE-CEE33519FC03" + }, + "fileCreated": "2025-06-21T09:31:01.9645412+00:00", + "fileLastModified": "2025-07-14T09:31:01.9645414+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9645415+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9645406+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101663 + }, + "imageDetail": { + "width": 551, + "height": 2289 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 83163, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1663 }DBD1244F-85C7-46CD-86AA-313B76972AC4" + }, + "fileCreated": "2025-06-21T09:31:01.9667654+00:00", + "fileLastModified": "2025-07-14T09:31:01.9667656+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9667657+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9667647+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101666 + }, + "imageDetail": { + "width": 8556, + "height": 2822 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 38461, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1666 }891B9412-8D59-425B-B072-2AF063AB5C98" + }, + "fileCreated": "2025-06-21T09:31:01.9735011+00:00", + "fileLastModified": "2025-07-14T09:31:01.9735014+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9735016+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9735001+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101669 + }, + "imageDetail": { + "width": 4031, + "height": 3614 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 86096, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1669 }6D1067E1-E8D6-4C42-9E95-537B1759C938" + }, + "fileCreated": "2025-06-21T09:31:01.9786467+00:00", + "fileLastModified": "2025-07-14T09:31:01.9786469+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.978646+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101672 + }, + "imageDetail": { + "width": 1589, + "height": 6454 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41188, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1672 }8E332BCF-B8D9-47A2-B097-99879573FC9B" + }, + "fileCreated": "2025-06-21T09:31:01.9846369+00:00", + "fileLastModified": "2025-07-14T09:31:01.9846371+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9846362+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101673 + }, + "imageDetail": { + "width": 418, + "height": 2858 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 46212, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1673 }1CF6A60F-D48F-4684-8520-3D127AE97795" + }, + "fileCreated": "2025-06-21T09:31:01.9868334+00:00", + "fileLastModified": "2025-07-14T09:31:01.9868337+00:00", + "fileLastViewed": "2025-07-14T09:31:01.9868338+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9868325+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101675 + }, + "imageDetail": { + "width": 4948, + "height": 9117 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 57096, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1675 }FF1D1971-B8A1-41D2-98D3-480BE4A5146B" + }, + "fileCreated": "2025-06-21T09:31:01.9904033+00:00", + "fileLastModified": "2025-07-14T09:31:01.9904036+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9904027+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101677 + }, + "imageDetail": { + "width": 403, + "height": 5671 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 90622, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1677 }207600A3-BF9B-40EB-8815-234812B3ECC4" + }, + "fileCreated": "2025-06-21T09:31:01.9946241+00:00", + "fileLastModified": "2025-07-14T09:31:01.9946244+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:01.9946233+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101680 + }, + "imageDetail": { + "width": 9029, + "height": 3935 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 48285, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1680 }CCF2A5D1-C4E7-4A36-BF65-CA9CF564AE8F" + }, + "fileCreated": "2025-06-21T09:31:02.0002245+00:00", + "fileLastModified": "2025-07-14T09:31:02.0002248+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0002249+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0002238+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101681 + }, + "imageDetail": { + "width": 9555, + "height": 5816 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96839, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1681 }EFD1C05F-6365-47DB-897B-07BBDB3333FB" + }, + "fileCreated": "2025-06-21T09:31:02.0022673+00:00", + "fileLastModified": "2025-07-14T09:31:02.0022675+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0022666+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101683 + }, + "imageDetail": { + "width": 4712, + "height": 7517 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35466, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1683 }E18FF622-73BB-4EE0-84EC-1FAE584FD7FB" + }, + "fileCreated": "2025-06-21T09:31:02.0057232+00:00", + "fileLastModified": "2025-07-14T09:31:02.0057234+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0057235+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0057225+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101684 + }, + "imageDetail": { + "width": 6153, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 35981, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1684 }C2638B55-1544-4AE9-BCAA-D44CCD1BAC11" + }, + "fileCreated": "2025-06-21T09:31:02.0079759+00:00", + "fileLastModified": "2025-07-14T09:31:02.0079761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0079751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101685 + }, + "imageDetail": { + "width": 9906, + "height": 5115 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 68424, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1685 }A7738AC0-76DF-4D06-AE0F-CBAD6A57A39B" + }, + "fileCreated": "2025-06-21T09:31:02.0096852+00:00", + "fileLastModified": "2025-07-14T09:31:02.0096855+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0096856+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0096845+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101690 + }, + "imageDetail": { + "width": 402, + "height": 9309 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 86862, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1690 }37489DE7-C321-431A-814A-E16FB309EE8F" + }, + "fileCreated": "2025-06-21T09:31:02.0187497+00:00", + "fileLastModified": "2025-07-14T09:31:02.0187499+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0187489+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101694 + }, + "imageDetail": { + "width": 3905, + "height": 8099 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 29967, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1694 }AE72AB48-F47E-411C-BF3C-09BA48DA85CD" + }, + "fileCreated": "2025-06-21T09:31:02.0259793+00:00", + "fileLastModified": "2025-07-14T09:31:02.0259795+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0259796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0259787+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101695 + }, + "imageDetail": { + "width": 811, + "height": 6883 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1695 }09547E01-C542-48AC-9537-1C2A940893FF" + }, + "fileCreated": "2025-06-21T09:31:02.02777+00:00", + "fileLastModified": "2025-07-14T09:31:02.0277702+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0277693+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101696 + }, + "imageDetail": { + "width": 1180, + "height": 6682 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 83851, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1696 }EEF66121-1BF7-462C-8ABE-9D7D25377383" + }, + "fileCreated": "2025-06-21T09:31:02.0294964+00:00", + "fileLastModified": "2025-07-14T09:31:02.0294966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0294861+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101700 + }, + "imageDetail": { + "width": 2757, + "height": 8763 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 71728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1700 }3FCADFF7-DCE3-404A-9C2C-C99A9084893C" + }, + "fileCreated": "2025-06-21T09:31:02.0376964+00:00", + "fileLastModified": "2025-07-14T09:31:02.0376966+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0376952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101702 + }, + "imageDetail": { + "width": 3668, + "height": 7226 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 27614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1702 }536ACDF9-7021-43BA-9663-53A6FE7C3CB0" + }, + "fileCreated": "2025-06-21T09:31:02.0412451+00:00", + "fileLastModified": "2025-07-14T09:31:02.0412453+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0412454+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.041244+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101703 + }, + "imageDetail": { + "width": 6553, + "height": 5192 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 53956, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1703 }1260AA81-C4D7-4CB4-8E73-6851116F456B" + }, + "fileCreated": "2025-06-21T09:31:02.042894+00:00", + "fileLastModified": "2025-07-14T09:31:02.0428942+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0428943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0428933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101709 + }, + "imageDetail": { + "width": 3929, + "height": 3724 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59480, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1709 }E85017C4-005C-4FFA-908E-3E7AD2270B6C" + }, + "fileCreated": "2025-06-21T09:31:02.0541338+00:00", + "fileLastModified": "2025-07-14T09:31:02.054134+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0541327+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101712 + }, + "imageDetail": { + "width": 4275, + "height": 9200 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55509, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1712 }C499905B-79DC-4BB4-A37F-CB0C8E5EEE2B" + }, + "fileCreated": "2025-06-21T09:31:02.0603531+00:00", + "fileLastModified": "2025-07-14T09:31:02.0603533+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0603534+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0603523+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101713 + }, + "imageDetail": { + "width": 8214, + "height": 5802 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 61477, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1713 }48392511-286A-4950-9343-7B0D1D60F1C1" + }, + "fileCreated": "2025-06-21T09:31:02.0620058+00:00", + "fileLastModified": "2025-07-14T09:31:02.062006+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0620051+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101714 + }, + "imageDetail": { + "width": 5319, + "height": 8814 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54620, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1714 }518BD0C2-94B7-4221-A348-158D70CE2B5A" + }, + "fileCreated": "2025-06-21T09:31:02.0640685+00:00", + "fileLastModified": "2025-07-14T09:31:02.0640687+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0640661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101716 + }, + "imageDetail": { + "width": 6670, + "height": 9986 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 41463, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1716 }21B41DEA-B868-43DE-A98F-2480831F4282" + }, + "fileCreated": "2025-06-21T09:31:02.0676807+00:00", + "fileLastModified": "2025-07-14T09:31:02.0676809+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0676799+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101718 + }, + "imageDetail": { + "width": 597, + "height": 6123 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1718 }28CB8747-BCEB-47DD-B3A7-89AE7BE75322" + }, + "fileCreated": "2025-06-21T09:31:02.071801+00:00", + "fileLastModified": "2025-07-14T09:31:02.0718013+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0718004+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101720 + }, + "imageDetail": { + "width": 3084, + "height": 7999 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 66684, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1720 }1FEC5161-0EFA-4320-8AC4-6F2412A453A5" + }, + "fileCreated": "2025-06-21T09:31:02.0752192+00:00", + "fileLastModified": "2025-07-14T09:31:02.0752195+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0752196+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0752185+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101721 + }, + "imageDetail": { + "width": 8527, + "height": 5969 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 23790, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1721 }C0FD0D20-68C1-4C68-993B-219DDBEE4EC5" + }, + "fileCreated": "2025-06-21T09:31:02.076888+00:00", + "fileLastModified": "2025-07-14T09:31:02.0768882+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0768883+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0768874+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101724 + }, + "imageDetail": { + "width": 7041, + "height": 9445 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45268, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1724 }68E08DBC-A5EC-46B4-B6B9-AA303C162763" + }, + "fileCreated": "2025-06-21T09:31:02.0822856+00:00", + "fileLastModified": "2025-07-14T09:31:02.0822858+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0822847+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101725 + }, + "imageDetail": { + "width": 3915, + "height": 3767 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67516, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1725 }26700C9D-148E-412E-BFEE-D60D78E08664" + }, + "fileCreated": "2025-06-21T09:31:02.0839364+00:00", + "fileLastModified": "2025-07-14T09:31:02.0839366+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0839357+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101726 + }, + "imageDetail": { + "width": 792, + "height": 4358 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 96356, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1726 }13B4C8F0-00F1-4630-9DAE-A190C856E95A" + }, + "fileCreated": "2025-06-21T09:31:02.0855623+00:00", + "fileLastModified": "2025-07-14T09:31:02.0855625+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0855616+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101727 + }, + "imageDetail": { + "width": 1581, + "height": 3729 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 41542, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1727 }815E86BF-3896-4296-BCB5-36AC47685C41" + }, + "fileCreated": "2025-06-21T09:31:02.0871266+00:00", + "fileLastModified": "2025-07-14T09:31:02.0871268+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0871268+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0871259+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101731 + }, + "imageDetail": { + "width": 5086, + "height": 6197 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 49800, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1731 }1470D080-5A14-45FF-ADF2-8E7828DFC929" + }, + "fileCreated": "2025-06-21T09:31:02.093959+00:00", + "fileLastModified": "2025-07-14T09:31:02.0939592+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0939583+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101732 + }, + "imageDetail": { + "width": 1624, + "height": 5050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 45751, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1732 }38CE82CD-D56F-46CE-B58A-FD04F63F6111" + }, + "fileCreated": "2025-06-21T09:31:02.0962394+00:00", + "fileLastModified": "2025-07-14T09:31:02.0962397+00:00", + "fileLastViewed": "2025-07-14T09:31:02.0962399+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.0962385+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101733 + }, + "imageDetail": { + "width": 7020, + "height": 2391 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 54128, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1733 }B8C51B35-5567-49EF-A073-8F55DA50BE3F" + }, + "fileCreated": "2025-06-21T09:31:02.0980559+00:00", + "fileLastModified": "2025-07-14T09:31:02.0980562+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.098055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101735 + }, + "imageDetail": { + "width": 8677, + "height": 5132 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 34129, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1735 }879AF7B5-134C-4F74-B0D8-C7B0E82797EC" + }, + "fileCreated": "2025-06-21T09:31:02.1012752+00:00", + "fileLastModified": "2025-07-14T09:31:02.1012755+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1012746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101736 + }, + "imageDetail": { + "width": 2466, + "height": 5340 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62170, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1736 }64CCBE16-1D5D-424F-B630-1E897AA3F8FC" + }, + "fileCreated": "2025-06-21T09:31:02.1034809+00:00", + "fileLastModified": "2025-07-14T09:31:02.1034811+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1034803+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101737 + }, + "imageDetail": { + "width": 4105, + "height": 8974 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59320, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1737 }C943F625-C57B-447C-8243-D26FF965EE77" + }, + "fileCreated": "2025-06-21T09:31:02.1050588+00:00", + "fileLastModified": "2025-07-14T09:31:02.105059+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1050581+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101738 + }, + "imageDetail": { + "width": 5792, + "height": 3494 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 81316, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1738 }5748DE4F-94EF-4600-850D-EABB66953956" + }, + "fileCreated": "2025-06-21T09:31:02.1067312+00:00", + "fileLastModified": "2025-07-14T09:31:02.1067314+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1067315+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1067304+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101742 + }, + "imageDetail": { + "width": 6229, + "height": 5605 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 91934, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1742 }C2FA1EE7-998F-4734-B86E-580FA3B2EBDD" + }, + "fileCreated": "2025-06-21T09:31:02.114024+00:00", + "fileLastModified": "2025-07-14T09:31:02.1140243+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1140244+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1140234+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101743 + }, + "imageDetail": { + "width": 615, + "height": 7072 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 87820, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1743 }9215505A-7689-4232-A5AC-89CFF36E08A8" + }, + "fileCreated": "2025-06-21T09:31:02.1162766+00:00", + "fileLastModified": "2025-07-14T09:31:02.1162783+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1162759+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101745 + }, + "imageDetail": { + "width": 9098, + "height": 7101 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 68229, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1745 }D4302B2F-E3DF-4922-9886-17C8BAE2DA4A" + }, + "fileCreated": "2025-06-21T09:31:02.1198348+00:00", + "fileLastModified": "2025-07-14T09:31:02.1198351+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1198341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101747 + }, + "imageDetail": { + "width": 8281, + "height": 8617 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 59153, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1747 }06A8A426-6FBB-442B-965B-C107E991996C" + }, + "fileCreated": "2025-06-21T09:31:02.1230621+00:00", + "fileLastModified": "2025-07-14T09:31:02.1230623+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1230624+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1230614+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101749 + }, + "imageDetail": { + "width": 4349, + "height": 8135 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47167, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1749 }3765C90F-C875-4CE6-9355-ABC8FCED0B65" + }, + "fileCreated": "2025-06-21T09:31:02.1276543+00:00", + "fileLastModified": "2025-07-14T09:31:02.1276546+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1276534+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101750 + }, + "imageDetail": { + "width": 1918, + "height": 5293 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 60887, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1750 }99EBE7BB-E477-4FB0-BF71-AC3ED2EF951D" + }, + "fileCreated": "2025-06-21T09:31:02.1297099+00:00", + "fileLastModified": "2025-07-14T09:31:02.1297101+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1297102+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.129709+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101751 + }, + "imageDetail": { + "width": 9790, + "height": 9305 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 32359, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1751 }92C0FC0E-D068-4E43-A9A3-D87BDD349FFB" + }, + "fileCreated": "2025-06-21T09:31:02.1314627+00:00", + "fileLastModified": "2025-07-14T09:31:02.1314629+00:00", + "fileLastViewed": "2025-07-14T09:31:02.131463+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1314617+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101752 + }, + "imageDetail": { + "width": 9347, + "height": 2444 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92235, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1752 }171966DD-620C-4802-BB1D-F53953EE935D" + }, + "fileCreated": "2025-06-21T09:31:02.1331779+00:00", + "fileLastModified": "2025-07-14T09:31:02.1331782+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1331783+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1331769+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101754 + }, + "imageDetail": { + "width": 9341, + "height": 7846 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 42083, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1754 }7B95F41E-B70A-4787-AE01-4453EC017762" + }, + "fileCreated": "2025-06-21T09:31:02.1364973+00:00", + "fileLastModified": "2025-07-14T09:31:02.1364975+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1364976+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1364966+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101761 + }, + "imageDetail": { + "width": 5778, + "height": 6981 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24487, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1761 }406385F2-1418-4616-B8AC-541143C41206" + }, + "fileCreated": "2025-06-21T09:31:02.15569+00:00", + "fileLastModified": "2025-07-14T09:31:02.1556904+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1556883+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101763 + }, + "imageDetail": { + "width": 7924, + "height": 3098 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21083, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1763 }3DA9B9BD-EA8F-4101-81C1-D5A413B14EC9" + }, + "fileCreated": "2025-06-21T09:31:02.1623117+00:00", + "fileLastModified": "2025-07-14T09:31:02.162312+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1623107+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101764 + }, + "imageDetail": { + "width": 1192, + "height": 8747 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 35893, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1764 }1337DFCA-3C15-42D1-9B3A-8F4490A7CCE1" + }, + "fileCreated": "2025-06-21T09:31:02.1646189+00:00", + "fileLastModified": "2025-07-14T09:31:02.1646192+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1646178+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101765 + }, + "imageDetail": { + "width": 6899, + "height": 5852 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27728, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1765 }FDC92566-5CA3-4F3D-B3FF-7E405EB3B7E9" + }, + "fileCreated": "2025-06-21T09:31:02.1674932+00:00", + "fileLastModified": "2025-07-14T09:31:02.1674936+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1674938+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1674911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101766 + }, + "imageDetail": { + "width": 8952, + "height": 7183 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 59307, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1766 }379486EB-3DB3-4432-9066-F5BF9C522C34" + }, + "fileCreated": "2025-06-21T09:31:02.1701362+00:00", + "fileLastModified": "2025-07-14T09:31:02.1701368+00:00", + "fileLastViewed": "2025-07-14T09:31:02.170137+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1701348+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101767 + }, + "imageDetail": { + "width": 1677, + "height": 8520 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 98048, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1767 }2012AF19-9DB5-4699-9938-150A5E3571A8" + }, + "fileCreated": "2025-06-21T09:31:02.1734996+00:00", + "fileLastModified": "2025-07-14T09:31:02.1734999+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1734987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101768 + }, + "imageDetail": { + "width": 785, + "height": 3370 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 92363, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1768 }88F14329-195D-4FEC-98FB-A3C63646A3EB" + }, + "fileCreated": "2025-06-21T09:31:02.1753423+00:00", + "fileLastModified": "2025-07-14T09:31:02.1753426+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1753427+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1753414+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101771 + }, + "imageDetail": { + "width": 4684, + "height": 7744 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 64823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1771 }6379BFF9-A416-4DC0-B2B0-AA0A26EF8B3B" + }, + "fileCreated": "2025-06-21T09:31:02.181209+00:00", + "fileLastModified": "2025-07-14T09:31:02.1812092+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1812081+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101772 + }, + "imageDetail": { + "width": 158, + "height": 4660 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 21359, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1772 }3AB8F473-142D-461F-96BC-D48626C3E5D2" + }, + "fileCreated": "2025-06-21T09:31:02.1830754+00:00", + "fileLastModified": "2025-07-14T09:31:02.1830756+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1830757+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1830746+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101773 + }, + "imageDetail": { + "width": 7905, + "height": 7530 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 47153, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1773 }B9D68E0D-AEB5-43BA-8D70-50571EE23D25" + }, + "fileCreated": "2025-06-21T09:31:02.1848733+00:00", + "fileLastModified": "2025-07-14T09:31:02.1848735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1848726+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101776 + }, + "imageDetail": { + "width": 1089, + "height": 9375 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54195, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1776 }B8D7E55B-AC23-4820-BE27-94077CA3E434" + }, + "fileCreated": "2025-06-21T09:31:02.1909961+00:00", + "fileLastModified": "2025-07-14T09:31:02.1909964+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1909952+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101777 + }, + "imageDetail": { + "width": 3933, + "height": 4895 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 42966, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1777 }A2B4E5D0-49C7-44D4-8832-C6E6BE07DE60" + }, + "fileCreated": "2025-06-21T09:31:02.1929744+00:00", + "fileLastModified": "2025-07-14T09:31:02.1929748+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1929749+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1929738+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101779 + }, + "imageDetail": { + "width": 9004, + "height": 6745 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 54148, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1779 }848F833F-8C59-48AF-AF10-F85E4BA2FD21" + }, + "fileCreated": "2025-06-21T09:31:02.1966055+00:00", + "fileLastModified": "2025-07-14T09:31:02.1966057+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1966058+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1966034+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101780 + }, + "imageDetail": { + "width": 5405, + "height": 4833 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 50383, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1780 }66548FBB-7492-48F4-B7E5-D15BD0023E45" + }, + "fileCreated": "2025-06-21T09:31:02.1993291+00:00", + "fileLastModified": "2025-07-14T09:31:02.1993294+00:00", + "fileLastViewed": "2025-07-14T09:31:02.1993295+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.1993284+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101781 + }, + "imageDetail": { + "width": 8384, + "height": 5336 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29142, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1781 }53CD35E6-2D3B-495E-A935-A8C5436C66BE" + }, + "fileCreated": "2025-06-21T09:31:02.2011179+00:00", + "fileLastModified": "2025-07-14T09:31:02.2011181+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2011182+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2011171+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101782 + }, + "imageDetail": { + "width": 8344, + "height": 6728 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 91340, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1782 }AED406B4-18FB-47E0-BF00-BD5A9D4090B3" + }, + "fileCreated": "2025-06-21T09:31:02.2029037+00:00", + "fileLastModified": "2025-07-14T09:31:02.202904+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2029041+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2028816+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101783 + }, + "imageDetail": { + "width": 1874, + "height": 6904 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 28136, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1783 }BF3537AE-D41B-4042-8C5C-1F69CC5C25B7" + }, + "fileCreated": "2025-06-21T09:31:02.2052028+00:00", + "fileLastModified": "2025-07-14T09:31:02.2052031+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2052033+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.205202+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101786 + }, + "imageDetail": { + "width": 2489, + "height": 3044 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 49625, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1786 }859D5631-DB03-4876-9F95-F1DB0BCD432F" + }, + "fileCreated": "2025-06-21T09:31:02.2110792+00:00", + "fileLastModified": "2025-07-14T09:31:02.2110795+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2110796+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2110784+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101788 + }, + "imageDetail": { + "width": 2175, + "height": 7790 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 60127, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1788 }2E4143AF-67D6-4FF8-9DAD-74DFF4C9C0CA" + }, + "fileCreated": "2025-06-21T09:31:02.2148505+00:00", + "fileLastModified": "2025-07-14T09:31:02.2148507+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2148508+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2148498+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101789 + }, + "imageDetail": { + "width": 134, + "height": 5647 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 33295, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1789 }E2398489-AB1F-47F2-A0CA-9D21A4693C9E" + }, + "fileCreated": "2025-06-21T09:31:02.21664+00:00", + "fileLastModified": "2025-07-14T09:31:02.2166402+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2166403+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2166392+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101790 + }, + "imageDetail": { + "width": 6846, + "height": 4993 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 48877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1790 }8D0C04DD-7EA4-409C-A687-EF9F7DECE6D6" + }, + "fileCreated": "2025-06-21T09:31:02.2184088+00:00", + "fileLastModified": "2025-07-14T09:31:02.218409+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2184091+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.218408+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101793 + }, + "imageDetail": { + "width": 8266, + "height": 4043 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 21662, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1793 }B715F306-1552-4139-B8BD-4B2D17BD6964" + }, + "fileCreated": "2025-06-21T09:31:02.2244118+00:00", + "fileLastModified": "2025-07-14T09:31:02.224412+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2244121+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.224411+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101797 + }, + "imageDetail": { + "width": 5966, + "height": 7771 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 24958, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1797 }7388C675-3780-494D-B329-D219963AAE07" + }, + "fileCreated": "2025-06-21T09:31:02.231912+00:00", + "fileLastModified": "2025-07-14T09:31:02.2319122+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2319123+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2319112+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101799 + }, + "imageDetail": { + "width": 7149, + "height": 5499 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 57731, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1799 }103E089F-E9DC-4D6F-BC49-B1660410B308" + }, + "fileCreated": "2025-06-21T09:31:02.235429+00:00", + "fileLastModified": "2025-07-14T09:31:02.2354292+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2354293+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2354281+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101802 + }, + "imageDetail": { + "width": 2089, + "height": 4292 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 54199, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1802 }AAE5E1A7-7B12-460A-BB5A-C7C9B9CDD20E" + }, + "fileCreated": "2025-06-21T09:31:02.2412105+00:00", + "fileLastModified": "2025-07-14T09:31:02.2412107+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2412094+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101804 + }, + "imageDetail": { + "width": 7762, + "height": 8634 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 80883, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1804 }B4C082E5-7CFE-4FE3-843A-12806676DA5D" + }, + "fileCreated": "2025-06-21T09:31:02.2454738+00:00", + "fileLastModified": "2025-07-14T09:31:02.2454741+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2454731+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101806 + }, + "imageDetail": { + "width": 7754, + "height": 4018 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 45345, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1806 }FA1BE8C9-F5F0-41F0-BC46-01EFE471CAB1" + }, + "fileCreated": "2025-06-21T09:31:02.2490595+00:00", + "fileLastModified": "2025-07-14T09:31:02.2490597+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2490598+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2490587+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101811 + }, + "imageDetail": { + "width": 7000, + "height": 4211 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 76467, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1811 }D0E3B791-D357-4BB9-AD79-B286061926CE" + }, + "fileCreated": "2025-06-21T09:31:02.2594001+00:00", + "fileLastModified": "2025-07-14T09:31:02.2594004+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2593993+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101815 + }, + "imageDetail": { + "width": 7031, + "height": 3622 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 63979, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1815 }744BE455-FD84-4CD4-8972-0FE513FE6DDA" + }, + "fileCreated": "2025-06-21T09:31:02.2677+00:00", + "fileLastModified": "2025-07-14T09:31:02.2677003+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2677004+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2676992+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101816 + }, + "imageDetail": { + "width": 6309, + "height": 2610 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38074, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1816 }5EACB594-1BC1-4741-BD25-7C295FC96395" + }, + "fileCreated": "2025-06-21T09:31:02.2695491+00:00", + "fileLastModified": "2025-07-14T09:31:02.2695495+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2695496+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2695482+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101820 + }, + "imageDetail": { + "width": 7628, + "height": 9611 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 39468, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1820 }5C2264CA-B4DE-4FC1-A324-A2A9FAE21944" + }, + "fileCreated": "2025-06-21T09:31:02.2775845+00:00", + "fileLastModified": "2025-07-14T09:31:02.2775847+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2775848+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2775837+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101821 + }, + "imageDetail": { + "width": 7732, + "height": 5932 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 64294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1821 }0CE7B4B5-CB5C-4C36-9555-025FB1DDA50B" + }, + "fileCreated": "2025-06-21T09:31:02.2799821+00:00", + "fileLastModified": "2025-07-14T09:31:02.2799823+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2799811+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101823 + }, + "imageDetail": { + "width": 1721, + "height": 5441 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 36318, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1823 }1DC87763-4CCE-409C-BF3E-718301600791" + }, + "fileCreated": "2025-06-21T09:31:02.2843478+00:00", + "fileLastModified": "2025-07-14T09:31:02.2843481+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2843471+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101825 + }, + "imageDetail": { + "width": 9330, + "height": 6711 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 60154, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1825 }9080D2EC-A253-4D8F-92F8-53E6FB017CD6" + }, + "fileCreated": "2025-06-21T09:31:02.2880729+00:00", + "fileLastModified": "2025-07-14T09:31:02.2880731+00:00", + "fileLastViewed": "2025-07-14T09:31:02.2880733+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.2880721+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101827 + }, + "imageDetail": { + "width": 6090, + "height": 7781 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 76097, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1827 }0E29DE2C-6D0A-4DEF-B063-0A4F6863DCE8" + }, + "fileCreated": "2025-06-21T09:31:02.2920877+00:00", + "fileLastModified": "2025-07-14T09:31:02.2920879+00:00", + "fileLastViewed": "2025-07-14T09:31:02.292088+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.292087+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101828 + }, + "imageDetail": { + "width": 9883, + "height": 3053 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 48927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1828 }C1E33176-0AC3-4245-8044-868D4D169431" + }, + "fileCreated": "2025-06-21T09:31:02.2938881+00:00", + "fileLastModified": "2025-07-14T09:31:02.2938883+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.293887+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101832 + }, + "imageDetail": { + "width": 3649, + "height": 2210 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 90906, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1832 }811630EB-8C79-4F78-9E15-91881A9C8773" + }, + "fileCreated": "2025-06-21T09:31:02.3021558+00:00", + "fileLastModified": "2025-07-14T09:31:02.3021561+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3021547+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101834 + }, + "imageDetail": { + "width": 1518, + "height": 8108 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 84392, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1834 }BC7E1D2E-881F-4874-B42E-153BE5A2268B" + }, + "fileCreated": "2025-06-21T09:31:02.3056723+00:00", + "fileLastModified": "2025-07-14T09:31:02.3056725+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3056726+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3056712+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101836 + }, + "imageDetail": { + "width": 5481, + "height": 6970 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 59881, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1836 }156D0E15-6981-4501-994C-2E76A9E38BE4" + }, + "fileCreated": "2025-06-21T09:31:02.3094005+00:00", + "fileLastModified": "2025-07-14T09:31:02.3094007+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3094008+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3093997+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101838 + }, + "imageDetail": { + "width": 6169, + "height": 4909 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 50823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1838 }0AF3997A-998C-4659-BF9A-00A66DDEE352" + }, + "fileCreated": "2025-06-21T09:31:02.3138126+00:00", + "fileLastModified": "2025-07-14T09:31:02.3138128+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3138116+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101839 + }, + "imageDetail": { + "width": 507, + "height": 7826 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76337, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1839 }F61E04D0-2556-46B3-936A-3FE91F4A0BA6" + }, + "fileCreated": "2025-06-21T09:31:02.3156062+00:00", + "fileLastModified": "2025-07-14T09:31:02.3156064+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3156053+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101840 + }, + "imageDetail": { + "width": 7682, + "height": 7589 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 99140, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1840 }D19A57C6-1BA4-43B2-990A-1A9666507ED6" + }, + "fileCreated": "2025-06-21T09:31:02.3173668+00:00", + "fileLastModified": "2025-07-14T09:31:02.3173671+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3173661+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101841 + }, + "imageDetail": { + "width": 2025, + "height": 3661 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 36732, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1841 }ECAD29E8-3C9F-4C0B-B738-85E65EED5118" + }, + "fileCreated": "2025-06-21T09:31:02.3191745+00:00", + "fileLastModified": "2025-07-14T09:31:02.3191747+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3191737+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101846 + }, + "imageDetail": { + "width": 7585, + "height": 7194 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87607, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1846 }650968A5-57C0-4CBD-87D1-D23EEFE8FF35" + }, + "fileCreated": "2025-06-21T09:31:02.3288268+00:00", + "fileLastModified": "2025-07-14T09:31:02.3288271+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3288272+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3288256+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101847 + }, + "imageDetail": { + "width": 8299, + "height": 4177 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 97319, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1847 }674105B3-3D99-4965-AC3B-583889CA4713" + }, + "fileCreated": "2025-06-21T09:31:02.3307898+00:00", + "fileLastModified": "2025-07-14T09:31:02.33079+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3307889+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101850 + }, + "imageDetail": { + "width": 6517, + "height": 9229 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 40606, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1850 }8DF520C4-C977-47BB-A588-0CDD8D0F122F" + }, + "fileCreated": "2025-06-21T09:31:02.336868+00:00", + "fileLastModified": "2025-07-14T09:31:02.3368682+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3368683+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3368673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101852 + }, + "imageDetail": { + "width": 7363, + "height": 2614 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 33779, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1852 }725D2335-BC85-4B35-9279-E816D90C74DF" + }, + "fileCreated": "2025-06-21T09:31:02.3405733+00:00", + "fileLastModified": "2025-07-14T09:31:02.3405735+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3405725+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101853 + }, + "imageDetail": { + "width": 4740, + "height": 5961 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 26379, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1853 }9D232D5C-9BA8-49FD-A353-3CA2E7225FE4" + }, + "fileCreated": "2025-06-21T09:31:02.3423952+00:00", + "fileLastModified": "2025-07-14T09:31:02.3423953+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3423955+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3423945+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101857 + }, + "imageDetail": { + "width": 6645, + "height": 7968 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 30614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1857 }06CF4F46-BF4A-461D-8FD7-B4D8D13BF982" + }, + "fileCreated": "2025-06-21T09:31:02.3517687+00:00", + "fileLastModified": "2025-07-14T09:31:02.3517689+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3517692+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3517679+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101861 + }, + "imageDetail": { + "width": 4376, + "height": 9660 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 52709, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1861 }1D94BF13-9A35-44E9-844B-059EC911D1E9" + }, + "fileCreated": "2025-06-21T09:31:02.3603391+00:00", + "fileLastModified": "2025-07-14T09:31:02.3603394+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.360338+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101864 + }, + "imageDetail": { + "width": 9421, + "height": 4754 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 41030, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1864 }7BEE8A2A-E9B0-442A-AED9-19C06091315E" + }, + "fileCreated": "2025-06-21T09:31:02.3661949+00:00", + "fileLastModified": "2025-07-14T09:31:02.3661952+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.366194+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101868 + }, + "imageDetail": { + "width": 2038, + "height": 8749 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 85776, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1868 }58448D8D-FB72-4499-B771-A12BCE3A68FF" + }, + "fileCreated": "2025-06-21T09:31:02.3744663+00:00", + "fileLastModified": "2025-07-14T09:31:02.3744666+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3744667+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3744652+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101869 + }, + "imageDetail": { + "width": 5387, + "height": 4501 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 44371, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1869 }10F67327-ABAC-4288-BBA5-EBD53F9C55F6" + }, + "fileCreated": "2025-06-21T09:31:02.3768695+00:00", + "fileLastModified": "2025-07-14T09:31:02.3768698+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3768699+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3768687+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101870 + }, + "imageDetail": { + "width": 1916, + "height": 5769 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 95427, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1870 }990C5696-889E-44C5-BD8A-4117EAB44D93" + }, + "fileCreated": "2025-06-21T09:31:02.3786619+00:00", + "fileLastModified": "2025-07-14T09:31:02.3786622+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3786622+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3786611+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101871 + }, + "imageDetail": { + "width": 3768, + "height": 4254 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 43681, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1871 }6785BA35-8EE4-4593-A28C-FAB73D15340B" + }, + "fileCreated": "2025-06-21T09:31:02.3810163+00:00", + "fileLastModified": "2025-07-14T09:31:02.3810165+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3810166+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3810152+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101874 + }, + "imageDetail": { + "width": 4074, + "height": 8050 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 55029, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1874 }50A6E285-7FDB-442E-AEFD-21633D13EAD4" + }, + "fileCreated": "2025-06-21T09:31:02.3868123+00:00", + "fileLastModified": "2025-07-14T09:31:02.3868125+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3868115+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101875 + }, + "imageDetail": { + "width": 638, + "height": 5738 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 49823, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1875 }7C0D66C7-68F5-43D5-9C73-08DD14654904" + }, + "fileCreated": "2025-06-21T09:31:02.3886584+00:00", + "fileLastModified": "2025-07-14T09:31:02.388659+00:00", + "fileLastViewed": "2025-07-14T09:31:02.3886591+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3886572+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101876 + }, + "imageDetail": { + "width": 1348, + "height": 8558 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 27034, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1876 }1E607F39-200C-4FFA-956E-E034BB7BB600" + }, + "fileCreated": "2025-06-21T09:31:02.391793+00:00", + "fileLastModified": "2025-07-14T09:31:02.3917933+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3917911+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101878 + }, + "imageDetail": { + "width": 3371, + "height": 3354 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 67046, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1878 }E300C167-E466-4D79-9C64-F10772007D03" + }, + "fileCreated": "2025-06-21T09:31:02.3956758+00:00", + "fileLastModified": "2025-07-14T09:31:02.3956761+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3956751+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101880 + }, + "imageDetail": { + "width": 6987, + "height": 4033 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 88169, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1880 }E3572030-D76B-400F-9FC9-5DCDB3AB656B" + }, + "fileCreated": "2025-06-21T09:31:02.3993522+00:00", + "fileLastModified": "2025-07-14T09:31:02.3993524+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.3993515+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101884 + }, + "imageDetail": { + "width": 5792, + "height": 7426 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 76806, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1884 }61036A1F-411B-492C-B8F3-B36B248B2522" + }, + "fileCreated": "2025-06-21T09:31:02.4075016+00:00", + "fileLastModified": "2025-07-14T09:31:02.4075018+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4075008+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101891 + }, + "imageDetail": { + "width": 757, + "height": 6103 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 84157, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1891 }261F4271-A33A-4DC6-9BD2-92C62865FBA2" + }, + "fileCreated": "2025-06-21T09:31:02.4218426+00:00", + "fileLastModified": "2025-07-14T09:31:02.4218428+00:00", + "fileLastViewed": "2025-07-14T09:31:02.421843+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4218412+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101892 + }, + "imageDetail": { + "width": 4128, + "height": 6322 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 51655, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1892 }5CCF4734-B574-458F-8DD0-023B7BC4CC8A" + }, + "fileCreated": "2025-06-21T09:31:02.424255+00:00", + "fileLastModified": "2025-07-14T09:31:02.4242553+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4242542+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101896 + }, + "imageDetail": { + "width": 7193, + "height": 2936 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 68373, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1896 }1E6096FE-7AA4-42D6-BD17-CD1C6F996B74" + }, + "fileCreated": "2025-06-21T09:31:02.4318962+00:00", + "fileLastModified": "2025-07-14T09:31:02.4318964+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4318954+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101897 + }, + "imageDetail": { + "width": 5840, + "height": 5871 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 97043, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1897 }C28DFB79-92E1-4448-8912-21A632A8E375" + }, + "fileCreated": "2025-06-21T09:31:02.4342253+00:00", + "fileLastModified": "2025-07-14T09:31:02.4342255+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4342246+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101899 + }, + "imageDetail": { + "width": 6798, + "height": 9665 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 50072, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1899 }0324BB0C-79BE-4A83-836F-78DE1CA96012" + }, + "fileCreated": "2025-06-21T09:31:02.4384483+00:00", + "fileLastModified": "2025-07-14T09:31:02.4384485+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.438447+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101900 + }, + "imageDetail": { + "width": 4280, + "height": 2607 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 83581, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1900 }415145C5-E4A3-4F8D-9CF4-9F089BAE792A" + }, + "fileCreated": "2025-06-21T09:31:02.4404743+00:00", + "fileLastModified": "2025-07-14T09:31:02.4404745+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4404735+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101902 + }, + "imageDetail": { + "width": 6833, + "height": 7176 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 89490, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1902 }671A6A0A-8324-4BEB-8159-6CF4B3F4A05A" + }, + "fileCreated": "2025-06-21T09:31:02.444294+00:00", + "fileLastModified": "2025-07-14T09:31:02.4442942+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4442943+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4442933+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101909 + }, + "imageDetail": { + "width": 3607, + "height": 7362 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 71006, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1909 }19E4170C-8653-48A1-A603-44754F29ED76" + }, + "fileCreated": "2025-06-21T09:31:02.4588718+00:00", + "fileLastModified": "2025-07-14T09:31:02.458872+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4588711+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101910 + }, + "imageDetail": { + "width": 8351, + "height": 4788 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27822, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1910 }F4799A09-2278-4B12-9F13-B11A9DFDAECF" + }, + "fileCreated": "2025-06-21T09:31:02.4608987+00:00", + "fileLastModified": "2025-07-14T09:31:02.4608989+00:00", + "fileLastViewed": "2025-07-14T09:31:02.460899+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.460898+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101911 + }, + "imageDetail": { + "width": 4079, + "height": 8364 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 72927, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1911 }B58873E6-D5FC-403C-8FE8-A9F575C772DB" + }, + "fileCreated": "2025-06-21T09:31:02.4627815+00:00", + "fileLastModified": "2025-07-14T09:31:02.4627817+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4627818+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4627806+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101913 + }, + "imageDetail": { + "width": 5422, + "height": 5939 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 31343, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1913 }1D1D3324-35A4-440D-B5EF-C8363383B055" + }, + "fileCreated": "2025-06-21T09:31:02.4669788+00:00", + "fileLastModified": "2025-07-14T09:31:02.466979+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4669791+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.466978+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101914 + }, + "imageDetail": { + "width": 5572, + "height": 2840 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 23562, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1914 }A0793DB2-3475-4BFF-B94F-9620434EA102" + }, + "fileCreated": "2025-06-21T09:31:02.4692594+00:00", + "fileLastModified": "2025-07-14T09:31:02.4692596+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4692584+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101915 + }, + "imageDetail": { + "width": 316, + "height": 5510 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 28580, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1915 }FA78FFC3-414E-4EEF-BC41-1173B5D8EF4D" + }, + "fileCreated": "2025-06-21T09:31:02.4711907+00:00", + "fileLastModified": "2025-07-14T09:31:02.4711909+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.47119+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101920 + }, + "imageDetail": { + "width": 5548, + "height": 7945 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 65550, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1920 }5BD0DED4-DC12-4F2E-9FF4-F31E3B414212" + }, + "fileCreated": "2025-06-21T09:31:02.4810062+00:00", + "fileLastModified": "2025-07-14T09:31:02.4810064+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4810065+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4810055+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101921 + }, + "imageDetail": { + "width": 5960, + "height": 9180 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 87102, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1921 }0DD40F77-EE91-4A50-AD4E-C0A3C795D8C9" + }, + "fileCreated": "2025-06-21T09:31:02.4828256+00:00", + "fileLastModified": "2025-07-14T09:31:02.4828258+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4828259+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4828248+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101924 + }, + "imageDetail": { + "width": 1241, + "height": 6072 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 38781, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1924 }44E47318-E4C7-4C83-A095-E9D3C14E3082" + }, + "fileCreated": "2025-06-21T09:31:02.4890101+00:00", + "fileLastModified": "2025-07-14T09:31:02.4890103+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4890104+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4890094+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101925 + }, + "imageDetail": { + "width": 6637, + "height": 6709 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 99428, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1925 }6DEFC354-19DA-4AC9-9A26-FBB4C752E2FD" + }, + "fileCreated": "2025-06-21T09:31:02.4907373+00:00", + "fileLastModified": "2025-07-14T09:31:02.4907375+00:00", + "fileLastViewed": "2025-07-14T09:31:02.4907376+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4907366+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101926 + }, + "imageDetail": { + "width": 1421, + "height": 8954 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 53603, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1926 }9844B61F-DBE4-40B1-95EF-D51038300E92" + }, + "fileCreated": "2025-06-21T09:31:02.4925919+00:00", + "fileLastModified": "2025-07-14T09:31:02.4925921+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4925912+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101927 + }, + "imageDetail": { + "width": 9570, + "height": 9206 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 35337, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1927 }1F91DB2E-2BCC-457E-82A1-609CB0FD1B8D" + }, + "fileCreated": "2025-06-21T09:31:02.4944994+00:00", + "fileLastModified": "2025-07-14T09:31:02.4944996+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.4944987+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101928 + }, + "imageDetail": { + "width": 7093, + "height": 6808 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 73238, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1928 }F9619170-8AE7-44A5-95A3-95DEDD670D65" + }, + "fileCreated": "2025-06-21T09:31:02.4967247+00:00", + "fileLastModified": "2025-07-14T09:31:02.4967249+00:00", + "fileLastViewed": "2025-07-14T09:31:02.496725+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.496724+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101931 + }, + "imageDetail": { + "width": 1843, + "height": 6309 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 51234, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1931 }95230EDB-1064-4000-87E2-7110364E14FB" + }, + "fileCreated": "2025-06-21T09:31:02.5021542+00:00", + "fileLastModified": "2025-07-14T09:31:02.5021544+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5021545+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5021536+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101934 + }, + "imageDetail": { + "width": 8234, + "height": 8329 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 87130, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1934 }E712B74D-9A9F-463A-9DD2-7A2D638027AE" + }, + "fileCreated": "2025-06-21T09:31:02.5080293+00:00", + "fileLastModified": "2025-07-14T09:31:02.5080295+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5080286+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101936 + }, + "imageDetail": { + "width": 8686, + "height": 9901 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 79210, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1936 }0DD4B543-E76C-49DC-B095-00B3E9109308" + }, + "fileCreated": "2025-06-21T09:31:02.5116656+00:00", + "fileLastModified": "2025-07-14T09:31:02.5116658+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.511665+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101938 + }, + "imageDetail": { + "width": 1347, + "height": 2150 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 25756, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1938 }3CD616A9-6C35-49CE-AED2-E357AE6279BE" + }, + "fileCreated": "2025-06-21T09:31:02.5161461+00:00", + "fileLastModified": "2025-07-14T09:31:02.5161464+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5161465+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5161453+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101940 + }, + "imageDetail": { + "width": 3402, + "height": 5123 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 67185, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1940 }10A62567-3E72-4573-A9D5-5A16433D2648" + }, + "fileCreated": "2025-06-21T09:31:02.5197665+00:00", + "fileLastModified": "2025-07-14T09:31:02.5197667+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5197658+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101942 + }, + "imageDetail": { + "width": 4199, + "height": 3977 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 47708, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1942 }592FCB45-A837-40CB-8A5B-52861F157F7B" + }, + "fileCreated": "2025-06-21T09:31:02.5234573+00:00", + "fileLastModified": "2025-07-14T09:31:02.5234575+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5234566+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101943 + }, + "imageDetail": { + "width": 199, + "height": 5565 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 89360, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1943 }1D7520AE-5C69-4400-9798-626761F9573D" + }, + "fileCreated": "2025-06-21T09:31:02.5258092+00:00", + "fileLastModified": "2025-07-14T09:31:02.5258094+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5258085+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101944 + }, + "imageDetail": { + "width": 6875, + "height": 7493 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 92522, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1944 }2A7BE138-F4D1-4AE5-A150-69101E4E9A8F" + }, + "fileCreated": "2025-06-21T09:31:02.527568+00:00", + "fileLastModified": "2025-07-14T09:31:02.5275682+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5275673+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101945 + }, + "imageDetail": { + "width": 5249, + "height": 2471 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59404, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1945 }AB698292-C78F-4E62-9F41-9842C5D74FAC" + }, + "fileCreated": "2025-06-21T09:31:02.5293485+00:00", + "fileLastModified": "2025-07-14T09:31:02.5293487+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5293488+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5293479+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101946 + }, + "imageDetail": { + "width": 155, + "height": 5249 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 96784, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1946 }CC3C96AB-5D1C-45FD-BF1A-C32FB8E86168" + }, + "fileCreated": "2025-06-21T09:31:02.5316891+00:00", + "fileLastModified": "2025-07-14T09:31:02.5316894+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5316882+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101947 + }, + "imageDetail": { + "width": 1636, + "height": 4691 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 44279, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1947 }B9716FC2-45AB-4496-A7A5-C2DCC09C6EF9" + }, + "fileCreated": "2025-06-21T09:31:02.5335225+00:00", + "fileLastModified": "2025-07-14T09:31:02.5335227+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5335218+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101948 + }, + "imageDetail": { + "width": 2174, + "height": 4876 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 28975, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1948 }FC00BAF2-F528-45EC-A891-29F5AD08BAF7" + }, + "fileCreated": "2025-06-21T09:31:02.5358916+00:00", + "fileLastModified": "2025-07-14T09:31:02.5358918+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5358908+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101951 + }, + "imageDetail": { + "width": 1404, + "height": 6680 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 92081, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1951 }60D8F7F5-39C2-4D11-A55F-D1D363BC9277" + }, + "fileCreated": "2025-06-21T09:31:02.5413257+00:00", + "fileLastModified": "2025-07-14T09:31:02.541326+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5413261+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5413242+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101952 + }, + "imageDetail": { + "width": 2116, + "height": 7119 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 76138, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1952 }79966CC6-2921-4E70-A820-87894AA5EAC1" + }, + "fileCreated": "2025-06-21T09:31:02.5430869+00:00", + "fileLastModified": "2025-07-14T09:31:02.5430872+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5430873+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5430862+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101954 + }, + "imageDetail": { + "width": 8339, + "height": 4919 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 65843, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1954 }63507FDC-3317-4568-AF99-D2167623539D" + }, + "fileCreated": "2025-06-21T09:31:02.5479996+00:00", + "fileLastModified": "2025-07-14T09:31:02.5479998+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.547999+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101956 + }, + "imageDetail": { + "width": 8895, + "height": 4377 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 46838, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1956 }C88EFAC3-5664-4198-9A20-FE1D90C2E4FD" + }, + "fileCreated": "2025-06-21T09:31:02.5516243+00:00", + "fileLastModified": "2025-07-14T09:31:02.5516245+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5516236+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101958 + }, + "imageDetail": { + "width": 3525, + "height": 6366 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 97877, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1958 }050EC59C-3EB9-4EFB-8C0C-5486A89D8AF4" + }, + "fileCreated": "2025-06-21T09:31:02.5557858+00:00", + "fileLastModified": "2025-07-14T09:31:02.555786+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5557861+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5557851+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101962 + }, + "imageDetail": { + "width": 1555, + "height": 4866 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 82751, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1962 }A3FA235B-7CA1-400E-B425-7273EA078348" + }, + "fileCreated": "2025-06-21T09:31:02.5634348+00:00", + "fileLastModified": "2025-07-14T09:31:02.563435+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5634341+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101965 + }, + "imageDetail": { + "width": 3793, + "height": 4215 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 27071, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1965 }F8237387-A40D-40C7-BFE4-471732919FA8" + }, + "fileCreated": "2025-06-21T09:31:02.5695195+00:00", + "fileLastModified": "2025-07-14T09:31:02.5695197+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5695198+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": "2025-07-21T17:00:45.0866667+00:00", + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5695188+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101969 + }, + "imageDetail": { + "width": 4416, + "height": 5604 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 29205, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1969 }4AD142BB-5491-4707-A7E3-F0885B2F5315" + }, + "fileCreated": "2025-06-21T09:31:02.5775266+00:00", + "fileLastModified": "2025-07-14T09:31:02.5775268+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.577526+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101972 + }, + "imageDetail": { + "width": 9792, + "height": 7187 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 43614, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1972 }6C0F3570-7DE5-4341-9E91-9BE888BD112A" + }, + "fileCreated": "2025-06-21T09:31:02.583008+00:00", + "fileLastModified": "2025-07-14T09:31:02.5830082+00:00", + "fileLastViewed": "2025-07-14T09:31:02.5830083+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.5830074+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101984 + }, + "imageDetail": { + "width": 5715, + "height": 9904 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 26354, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1984 }D0A951BC-8364-42F3-9B25-E20BBB5F67FB" + }, + "fileCreated": "2025-06-21T09:31:02.6060223+00:00", + "fileLastModified": "2025-07-14T09:31:02.6060225+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6060216+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101985 + }, + "imageDetail": { + "width": 4265, + "height": 6240 + }, + "fileName": { + "value": "\\some\\file.png" + }, + "directoryName": { + "value": "\\with\\sub\\folders" + }, + "fullNameWithPath": "\\with\\sub\\folders/\\some\\file.png", + "fileSize": 59001, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folders }-\\some\\file.png-FileId { Value = 1985 }09E2B140-43FA-477C-9EA3-7F5166296C76" + }, + "fileCreated": "2025-06-21T09:31:02.6078336+00:00", + "fileLastModified": "2025-07-14T09:31:02.6078338+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": "2025-07-21T17:01:19.4+00:00" + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.607833+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101986 + }, + "imageDetail": { + "width": 9019, + "height": 8560 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 35858, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1986 }CB951E84-1D30-4BAB-AA12-2FC307CA7493" + }, + "fileCreated": "2025-06-21T09:31:02.6107499+00:00", + "fileLastModified": "2025-07-14T09:31:02.6107502+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6107488+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101988 + }, + "imageDetail": { + "width": 4204, + "height": 6995 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 62217, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1988 }DE381E3C-E1A4-49EC-BDBF-294FDC08DFB1" + }, + "fileCreated": "2025-06-21T09:31:02.6150335+00:00", + "fileLastModified": "2025-07-14T09:31:02.6150337+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6150338+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6150328+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101989 + }, + "imageDetail": { + "width": 495, + "height": 9526 + }, + "fileName": { + "value": "\\some\\file.bmp" + }, + "directoryName": { + "value": "\\with\\sub\\folder\\and\\another" + }, + "fullNameWithPath": "\\with\\sub\\folder\\and\\another/\\some\\file.bmp", + "fileSize": 37820, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder\\and\\another }-\\some\\file.bmp-FileId { Value = 1989 }9F2CFE84-4DBE-43A4-9AEA-FA915CB13C03" + }, + "fileCreated": "2025-06-21T09:31:02.6169656+00:00", + "fileLastModified": "2025-07-14T09:31:02.6169658+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6169659+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6169649+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101993 + }, + "imageDetail": { + "width": 9558, + "height": 3924 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 96283, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1993 }35A209D4-5490-485A-8C3C-687ADFBCD52C" + }, + "fileCreated": "2025-06-21T09:31:02.6253604+00:00", + "fileLastModified": "2025-07-14T09:31:02.6253606+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6253607+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6253593+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101994 + }, + "imageDetail": { + "width": 4563, + "height": 5975 + }, + "fileName": { + "value": "\\some\\file.gif" + }, + "directoryName": { + "value": "\\one-level" + }, + "fullNameWithPath": "\\one-level/\\some\\file.gif", + "fileSize": 69294, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\one-level }-\\some\\file.gif-FileId { Value = 1994 }E3402763-C17B-4386-9A56-D6B55A9E13EA" + }, + "fileCreated": "2025-06-21T09:31:02.6272113+00:00", + "fileLastModified": "2025-07-14T09:31:02.6272115+00:00", + "fileLastViewed": "2025-07-14T09:31:02.6272116+00:00", + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6272106+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101995 + }, + "imageDetail": { + "width": 4467, + "height": 5928 + }, + "fileName": { + "value": "\\some\\file.jpg" + }, + "directoryName": { + "value": "\\with\\sub\\folder" + }, + "fullNameWithPath": "\\with\\sub\\folder/\\some\\file.jpg", + "fileSize": 40441, + "isImage": true, + "fileHandle": { + "value": "DirectoryName { Value = \\with\\sub\\folder }-\\some\\file.jpg-FileId { Value = 1995 }8649B9B4-8BE7-47A6-BF7B-85D88B1967F9" + }, + "fileCreated": "2025-06-21T09:31:02.6291319+00:00", + "fileLastModified": "2025-07-14T09:31:02.6291321+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": "2025-07-21T17:01:27.23+00:00", + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6291313+00:00" + }, + { + "fileClassifications": [], + "id": { + "value": 101997 + }, + "imageDetail": { + "width": 4075, + "height": 6065 + }, + "fileName": { + "value": "\\some\\file.txt" + }, + "directoryName": { + "value": "\\some\\directory" + }, + "fullNameWithPath": "\\some\\directory/\\some\\file.txt", + "fileSize": 49576, + "isImage": false, + "fileHandle": { + "value": "DirectoryName { Value = \\some\\directory }-\\some\\file.txt-FileId { Value = 1997 }EA5CFC47-64BB-4418-97C1-AE12ECF467CD" + }, + "fileCreated": "2025-06-21T09:31:02.6333897+00:00", + "fileLastModified": "2025-07-14T09:31:02.63339+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-21T09:31:02.6333891+00:00" + } +] \ No newline at end of file From 387482c72ae1ac79670bd538cff57f96ec067cc1 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sat, 9 Aug 2025 20:52:34 +0100 Subject: [PATCH 8/9] Fix path in the previous commit. My bad --- support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs b/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs index 07b362b..3d1f17d 100644 --- a/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs +++ b/support/DbContextHelpers/Fixtures/MockFilesContextFactory.cs @@ -31,7 +31,7 @@ public static async Task CreateMockFilesContextAsync() public static void AddMockFiles(this FilesContext mockFilesContext) { - var combine = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../../support/DbContextHelpers/TestData/files.json"); + var combine = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../support/DbContextHelpers/TestData/files.json"); var filesAsJson = File.ReadAllText(combine); var listFromJson = JsonSerializer.Deserialize>(filesAsJson, JsonSerializerOptions.Web)!; From b563da67c90d1ff271a3e5b6cc31155a0ae78b07 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sat, 9 Aug 2025 21:02:15 +0100 Subject: [PATCH 9/9] Small cleanup --- .../DbContextHelpers/Fixtures/FilesContextFixture.cs | 9 --------- .../Fixtures/SharedIntegrationCollection.cs | 11 ----------- ...ev.Infrastructure.FilesDb.Tests.Integration.csproj | 4 ---- .../FileDetailSearchTypeExtensionsShould.cs | 8 ++++---- .../AStarDbContextOptionsShould.cs | 1 - .../AuditableEntityShould.cs | 1 - .../ConnectionStringShould.cs | 1 - 7 files changed, 4 insertions(+), 31 deletions(-) delete mode 100644 support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs diff --git a/support/DbContextHelpers/Fixtures/FilesContextFixture.cs b/support/DbContextHelpers/Fixtures/FilesContextFixture.cs index 530091b..fe81318 100644 --- a/support/DbContextHelpers/Fixtures/FilesContextFixture.cs +++ b/support/DbContextHelpers/Fixtures/FilesContextFixture.cs @@ -34,15 +34,6 @@ protected virtual void Dispose(bool disposing) if(disposing) { - try - { - Sut.Database.EnsureDeleted(); - } - catch - { - // NAR - } - Sut.Dispose(); } diff --git a/support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs b/support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs deleted file mode 100644 index 05b94ea..0000000 --- a/support/DbContextHelpers/Fixtures/SharedIntegrationCollection.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Xunit; - -namespace DbContextHelpers.Fixtures; - -[CollectionDefinition(nameof(SharedIntegrationCollection))] -public class SharedIntegrationCollection : ICollectionFixture -{ - // This class has no code, and is never created. Its purpose is simply - // to be the place to apply [CollectionDefinition] and all the - // ICollectionFixture<> interfaces. -} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj index fc9d7cb..1e46da8 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj @@ -19,11 +19,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - - - - diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs index 63eb546..eb3fc27 100644 --- a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailSearchTypeExtensionsShould.cs @@ -42,7 +42,7 @@ public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicateImages( result.Count.ShouldBe(1546); result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); - result[0].FileSize.ShouldBe(91451L); + result[0].FileSize.ShouldBe(20033L); } [Fact] @@ -52,8 +52,8 @@ public void ShouldReturnExpectedFileDetailsWhenSearchTypeIsSetToDuplicates() var result = sut.FileDetails.OfSearchType(SearchType.Duplicates).ToList(); - result.Count.ShouldBe(1234); - result[0].FileName.Value.ShouldBe(@"\some\file.bmp"); - result[0].FileSize.ShouldBe(91451L); + result.Count.ShouldBe(2013); + result[0].FileName.Value.ShouldBe(@"\some\file.txt"); + result[0].FileSize.ShouldBe(45197L); } } diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs index 046754a..da09229 100644 --- a/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs @@ -1,6 +1,5 @@ using AStar.Dev.Infrastructure.Data; using AStar.Dev.Utilities; -using Shouldly; namespace AStar.Dev.Infrastructure.Tests.Unit; diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs index 8d70af9..7ca46b5 100644 --- a/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs @@ -1,6 +1,5 @@ using AStar.Dev.Infrastructure.Data; using AStar.Dev.Utilities; -using Shouldly; namespace AStar.Dev.Infrastructure.Tests.Unit; diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs index b0c76f7..04c9841 100644 --- a/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs @@ -1,6 +1,5 @@ using AStar.Dev.Infrastructure.Data; using AStar.Dev.Utilities; -using Shouldly; namespace AStar.Dev.Infrastructure.Tests.Unit;