我有运行并生成excel表的脚本。我想使用perl(首选)或power shell脚本将该excel表上传到特定的sharepoint URL。请帮忙!!
答案 0 :(得分:0)
我没有使用Microsoft SharePoint的经验。您可以使用LWP::UserAgent
的post
方法:
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
$ua->post( $url, { 'spreadsheet' => $contents } );