简体   繁体   English

Powerapps:使用按钮将文件上传到 Sharepoint 中的特定文件夹

[英]Powerapps: Use a button to upload a file to a specific folder in Sharepoint

I've made a powerapp that writes information to an excel spreadsheet but I also want to add a button to the app that will prompt the user to upload pictures or documents to a PARTICULAR FOLDER ON SHAREPOINT.我制作了一个将信息写入 excel 电子表格的 powerapp,但我还想在应用程序中添加一个按钮,提示用户将图片或文档上传到 SHAREPOINT 上的特定文件夹。 Any ideas?有任何想法吗?

One solution could be to have the button in Power Apps to take users to the SharePoint Folder.一种解决方案可能是在 Power Apps 中使用按钮将用户带到 SharePoint 文件夹。

The code in the OnSelect property of the button would then be:按钮的 OnSelect 属性中的代码将是:

Launch("htts://youtenant.sharepoint.com/sites/yoursite/yourlibrary/yourfolder")

And if the library or folder need to be different from, you can use paramenters for it eg如果库或文件夹需要不同,您可以使用参数,例如

Launch("htts://youtenant.sharepoint.com/sites/yoursite/" & varLibrary & "/" & varFolder)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM