Skip to content
New issue

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

Add file info service to README.md #916

Merged
merged 2 commits into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
- [Deleting a Group](#deleting-a-group)
- [Generating Full System Export](#generating-full-system-export)
- [Getting Info of a Folder in Artifactory](#getting-info-of-a-folder-in-artifactory)
- [Getting Info of a File in Artifactory](#getting-info-of-a-file-in-artifactory)
- [Getting a listing of files and folders within a folder in Artifactory](#getting-a-listing-of-files-and-folders-within-a-folder-in-artifactory)
- [Getting Storage Summary Info of Artifactory](#getting-storage-summary-info-of-artifactory)
- [Triggering Storage Info Recalculation in Artifactory](#triggering-storage-info-recalculation-in-artifactory)
Expand Down Expand Up @@ -1353,6 +1354,12 @@ err := serviceManager.Export(params)
serviceManager.FolderInfo("repo/path/")
```

#### Getting Info of a File in Artifactory

```go
serviceManager.FileInfo("repo/path/file")
```

#### Getting a listing of files and folders within a folder in Artifactory

```go
Expand Down
Loading