Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
435 views
in Technique[技术] by (71.8m points)

Powershell Citrix ShareFile API Upload

My code as below:

$ShareFileHomeFolder = (Send-SfRequest $sfClient -Entity Items).Url

New-PSDrive -Name sfDrive -PSProvider ShareFile -Client $sfClient -Root "" -RootUri $ShareFileHomeFolder 

Copy-SfItem -Path $File.FullName -Destination "sfDrive:Test"

Remove-PSDrive sfdrive

Current: It's copy the files unto Personal FoldersTest

This is what I want to achieve: How can I copy the files unto Shared With MeReportsFolder1?

Please advise.

Thanks.

Regards, Micheale

question from:https://stackoverflow.com/questions/65917041/powershell-citrix-sharefile-api-upload

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Thanks. I managed to solved it.

#$_.Id is the folder ID you want to upload; xyz is your organisation
            
$ShareFileHomeFolder = "https://xyz.sf-api.com/sf/v3/Items("+$_.Id+")"          
            
##Create a PowerShell provider for ShareFile at the location specified
            
New-PSDrive -Name sfDrive -PSProvider ShareFile -Client $sfClient -Root "" -RootUri $ShareFileHomeFolder
            
Copy-SfItem -Path $File.FullName -Destination "sfDrive:"
            
Remove-PSDrive sfdrive

Thanks.

Regards, Micheale


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...