You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The functionality introduced in issue #190, was based upon the passing of a string path. This is not very useful as it mean the client has to invoke Get-Item on this path to get the DirectoryInfo instance. This is just wasteful, because the DirectoryInfo instance has already been obtained so its a bit pointless to require the client to re-obtain it. When a large directory tree is being traversed, this will likely add a noticeable and un-necessary overhead to the runtime.
Change the signatures to use DirectoryInfo instead of a string Path.
The text was updated successfully, but these errors were encountered:
The functionality introduced in issue #190, was based upon the passing of a string path. This is not very useful as it mean the client has to invoke Get-Item on this path to get the DirectoryInfo instance. This is just wasteful, because the DirectoryInfo instance has already been obtained so its a bit pointless to require the client to re-obtain it. When a large directory tree is being traversed, this will likely add a noticeable and un-necessary overhead to the runtime.
Change the signatures to use DirectoryInfo instead of a string Path.
The text was updated successfully, but these errors were encountered: