New directory size limits?

Copying directory from one server to another is there a limitation? No errors on screen or under the event viewer.
destination server is v2012 box.

Oracle = @{
        Setup32     = "\\dfs.com\files\apps\Config\Oracle19\x86-32\"
        Setup64     = "\\dfs.com\files\apps\Config\Oracle19\x86-64\response\"
        LDAP        = "\\dfs.com\files\apps\Config\Oracle\ldap.ora"
        SQLNet      = "\\dfs.com\files\apps\Config\Oracle\sqlnet.ora.template"
        TNSNames    = "\\dfs.com\files\apps\Config\Oracle\tnsnames.ora"
    }
node $AllNodes.Where{$_.OracleSetup32 -eq "Present"}.NodeName
    {
        File Oracle_Setup32
        {
            DestinationPath = "C:\Installers\Client32"
            SourcePath      = $ConfigurationData.Oracle.Setup32 
            Type            = "Directory"
            Recurse         = "True"
            Ensure          = "Present"
        }
    }
    node $AllNodes.Where{$_.OracleSetup64 -eq "Present"}.NodeName
    {
        File Oracle_Setup64
        {
            DestinationPath = "C:\Installers\Client64"
            SourcePath      = $ConfigurationData.Oracle.Setup64 
            Type            = "Directory"
            Recurse         = "True"
            Ensure          = "Present"
        }
    }

}

the copy works fine for the 32bit client

So for 32 bit you want the whole setup, but for 64 bit you only want the response folder?

I need the entire 64bit folder too.
i was testing individual folders to see what it would fail on. right now it fails on a “stage” subfolder that 1.27gb.

VERBOSE: [Server1]:                            [[File]Oracle_Setup64] Building file list from cache.
A general error occurred that is not covered by a more specific error code.
    + CategoryInfo          : NotSpecified: (:) [], CimException
    + FullyQualifiedErrorId : MI RESULT 1
    + PSComputerName        : Server1
 
VERBOSE: [Server1]: LCM:  [ End    Set      ]
The SendConfigurationApply function did not succeed.
    + CategoryInfo          : NotSpecified: (root/Microsoft/...gurationManager:String) [], CimException
    + FullyQualifiedErrorId : MI RESULT 1
    + PSComputerName        : Server1
 

I’m thinking there too many subfolders in this locations for windows to handle.
Destination Path Too Long.

Will copy files and install manually.