We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have code in PowerShell: $Path = "C:\Program Files\Unity\????.?.*f1\Editor\unity.exe $filesList = Get-ChildItem -Path $Path -Force -Recurse
$Path = "C:\Program Files\Unity\????.?.*f1\Editor\unity.exe
$filesList = Get-ChildItem -Path $Path -Force -Recurse
How can I find all files unity.exe using this path with wildcards?
This code found nothing: string[] matchingFiles = Glob.Files(@"C:\", @"Program Files\Unity\????.?.*f1\Editor\unity.exe").ToArray();
string[] matchingFiles = Glob.Files(@"C:\", @"Program Files\Unity\????.?.*f1\Editor\unity.exe").ToArray();
The text was updated successfully, but these errors were encountered:
This code returned nothing also:
var root = new DirectoryInfo(@"C:\"); var allFiles = root.GlobFiles("/Program Files/Unity/????.?.*f1/Editor/Unity.exe");
Sorry, something went wrong.
@GitUser200607 can you give an example path that you would expect to be matched?
"C:\Program Files\Unity\2021.3.9f1\Editor\Unity.exe"
No branches or pull requests
I have code in PowerShell:
$Path = "C:\Program Files\Unity\????.?.*f1\Editor\unity.exe
$filesList = Get-ChildItem -Path $Path -Force -Recurse
How can I find all files unity.exe using this path with wildcards?
This code found nothing:
string[] matchingFiles = Glob.Files(@"C:\", @"Program Files\Unity\????.?.*f1\Editor\unity.exe").ToArray();
The text was updated successfully, but these errors were encountered: