Search Results for

    Show / Hide Table of Contents

    Enable Long Path Support (Windows only)

    Depending on the number of parent folders for the root path of your Intent Application, it can be quite easy to hit Windows' maximum file path length limitation, this can cause various problems to manifest, such as:

    • Errors when extracting/compressing files into / out from .zip files.
    • Errors checking files in or out of source control management (such as Git).

    As of Windows 10 1607 it is possible to disable this limitation for all applications.

    Configuring Windows to support long paths

    • PowerShell
    • Registry (.reg) file
    New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
    
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
    "LongPathsEnabled"=dword:00000001
    

    Configuring Git to support long paths

    git config --system core.longpaths true
    
    • Edit this page
    ☀
    ☾
    In this article
    Back to top Copyright © 2017-, Intent Software Pte Ltd.