mdaneri
mdaneri
> For the example, it might be a tad excessive to create 1,000 files/directories 😂 I'd say just create a some amount of fixed files/directories that can be committed, enough...
I found the issue with the .folder Test-PodePathIsDirectory ```powershell function Test-PodePathIsDirectory { param( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string] $Path, [switch] $FailOnWildcard ) if ($FailOnWildcard -and (Test-PodePathIsWildcard $Path)) { return $false...
I was running the tests, and I saw this ```powershell Context 'Valid values' { It 'Returns true for a directory' { Test-PodePathIsDirectory -Path './some/path/folder' | Should -Be $true } It...
I'm reviewing all these folder/file test functions, and I found multiple issues. For example, `Test-PodePathAccess` doesn't work as expected `get-item` never returns [System.UnauthorizedAccessException] I'm rewriting `Test-PodePath` to make it quicker...
I think I solved the issue with the Defaults I modified `Find-PodeStaticRoute` and now is working as expected
I tried without RootPath (I have to change the name to this variable), but you are going to have some security issues. if you use the file browser sample without...
So far with my last updates everything work as expected. I'm interested on your feedback on all these changes. I have also rebased the code to the last version of...
Can you please merge #1228 so I can try if all my test cases are working with this change My concern is with path containing *
Done. I rolled back some of the changes related to the route/pattern, and I merged your suggestions. everything works with the exception of the path that includes /*/ For example...
I forgot to update the thread. Now '/any/*/test/testing' works