Please help,
How can we issues PowerShell commands to download all files and subfolders from a specific Bitbucket subfolder?
And to be specific, with PURE-100% PowerShell commands that are built in, like Invoke-RestMethod.
The "Curl" is not built in.
Example, if our repo is "https://bitbucket.org/MyOrd/MyRepo/src/master/"
And inside that I have this folder hierarchy:
https://bitbucket.org/FLTMKT/csc/src/master/
- Sub-Folder-A
- Sub-Folder-B
- - Some-File-I-Do-Not-Want.ext
- - MyFile.ext <== I shoudl not get this one.
- - Sub-Folder-B.1
- - - MyFile.ext <== This file name shoule not be overwritten by the others in sub/sub-folders.
- - - My2ndFile.ext
- - - My3rdFile.ext
- - - My4thFile.ext
- - - My5thFile.ext
- - - Sub-Folder-B.1.1
- - - - Sub-Folder-B.1.1
- - - - - MyFile.ext <== This file name shoule not be overwritten by the others in sub/sub-folders.
- - - - - My2ndFile.ext
- - - Sub-Folder-B.1.2
- - - - MyFile.ext <== This file name shoule not be overwritten by the others in sub/sub-folders.
- - - - My2ndFile.ext
- Sub-Folder-C
And I want to copy all files and subfolder from:
https://bitbucket.org/FLTMKT/csc/src/master/Sub-Folder-B/Sub-Folder-B.1
How can I do that with PowerShell.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.