I can not reproduce your problem.
PS > New-Item "test" -itemType Directory -Force -Verbose | %{ Test-Path $_.FullName } VERBOSE: Performing the operation "Create Directory" on target "Destination: C:\Users\Frode\Desktop\test". True
New-Item creates a new directory, receiving a DirectoryInfo object for the parent directory and calling CreateSubDirectory , for example:
DirectoryInfo subdirectory = new DirectoryInfo(parentPath).CreateSubdirectory(childName);
I am not a developer, but AFAIK, which means that it is a blocking call, since it is waiting for the DirectoryInfo object to return. So the problem is with your storage subsystem.
Frode F.
source share