使用 Perl 中的凭据访问 UNC 文件共享
我正在尝试让 Perl 脚本使用指定的凭据通过 UNC 路径访问文件。这可能吗?如果不使用 Perl,我还能使用什么?
谢谢
-杰西
I am trying to get a Perl scripts to access a file over UNC path using specified credentials. Is this possible? If not with Perl, what else could I use?
Thanks
-Jesse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否必须使用不同的凭据访问许多不同的路径,还是只访问一个路径?
作为非编程解决方案,您可以在运行 Perl 程序之前将网络共享永久映射到 Windows 中的驱动器号吗?
Do you have to access many varied paths with differing credentials or just one?
As non-programming solution can you map the network share to a drive letter permananently in Windows before running your perl program?
查看模块 Win32::NetResource 它有一些方法可以让您连接到 Windows 网络资源(例如驱动器共享)并提供凭据。
Check out the module Win32::NetResource it has methods to allow you to connect to Windows network resources, such as drive shares and supply the credentials.