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 Folders\Test
This is what I want to achieve: How can I copy the files unto Shared With Me\Reports\Folder1?
Please advise.
Thanks.
Regards, Micheale