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
Hello,
I'm trying to add properties to the folder but it doesn't work.
params := services.NewUploadParams() params.Flat = false params.Recursive = true params.IncludeDirs = true params.SetProps("test=test")
I using github.com/jfrog/jfrog-client-go v1.46.2 client.
Now, I just try with 1.47.1 but same problem occure.
I tried to find an alternative and I seen you own code exemple:
searchParams = services.NewSearchParams() searchParams.Recursive = true searchParams.IncludeDirs = false resultItems, err = rtManager.SearchFiles(searchParams) if err != nil { return err } defer reader.Close() propsParams = services.NewPropsParams() propsParams.Pattern = "repo/*/*.zip" propsParams.Reader = reader // Filter the files by properties. propsParams.Props = "key=value" rtManager.DeleteProps(propsParams)
But the struct .Pattern isn't present.
Could you help me ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm trying to add properties to the folder but it doesn't work.
I using github.com/jfrog/jfrog-client-go v1.46.2 client.
Now, I just try with 1.47.1 but same problem occure.
I tried to find an alternative and I seen you own code exemple:
But the struct .Pattern isn't present.
Could you help me ?
The text was updated successfully, but these errors were encountered: