I know that max path length allowed while creating a project is 260 characters and 248 characters for directory. But I'm getting this error even when my my path length is less than 200 characters.
My solution file resides in this folder C:\Users\username\Documents\Visual Studio 2010\Projects\Health12.Domain12.WardManagement => 88 characters When I try to add a new class library with name "Health12.Domain12.WardManagement.Service.Contract" to this solution, it gives me path too long exception.
C:\Users\username\Documents\Visual Studio 2010\Projects\Health12.Domain12.WardManagement\Health12.Domain12.WardManagement.Service.Contract => 138 characters
C:\Users\username\Documents\Visual Studio 2010\Projects\Health12.Domain12.WardManagement\Health12.Domain12.WardManagement.Service.Contract\Health12.Domain12.WardManagement.Service.Contract.csproj => 195 characters
None of the possible files or folders crosses the 260 character limit.
If i change the project name from "Health12.Domain12.WardManagement.Service.Contract" to "Health12.Domain12.WardManagement.Service.Con", it works fine. Any idea why visual studio won't allow to create project even when it is not crossing max allowed length limit.
The length of the path in Visual Studio is computed as follow:
C:\Users\username\Documents\Visual Studio 2010\Projects\Health12.Domain12.WardManagement\
= 89 charsHealth12.Domain12.WardManagement.Service.Contract\
= 50 charsIn your case: 89 + 2*50 + 80 = 269
The limit is 259 (
(Drive char):\(256-character path)
) (see Naming Files, Paths, and Namespaces)You have to remove 10 chars. Either you reduce the length of the path to the project by 10 chars or you remove 5 chars in the project name (
"tract"
for example works).