即使更改文件后,如何使网页显示文件的内容?
大家好,我有一个维基问题。我们将文件存储在一台服务器上的 *.7z 中,并在另一台服务器上有一个 wiki。我需要制作一个脚本,从一个脚本中提取文件名并添加其后面的代码,以便我可以将其发布在 wiki 中。我们每个月都会处理大量文件,手动输入这些文件是不够的。
这就是我需要的。
Var filename or string
For each file in the list {
Filename= File
Write ('<br><file>SERVERNAME\C$\VideosArchive\ '+Filename+ '|' +Filename+ </file> <br/>)
因此,当输出出来时,它必须看起来像。
<file>\\SERVERNAME\c$\VideoArchive\FILENAME.7z|FILENAME</file>
但我需要一些可以自动生成的东西,如果那样的话。
Hey everyone I got a wiki question. We store files in *.7z in one server and have a wiki on another. I need to make a script that pulls the file names from one script and adds the code behind it so I can post it in the wiki. We do a ton of files a month and typing them all by hand won't cut it.
Here is what I need.
Var filename or string
For each file in the list {
Filename= File
Write ('<br><file>SERVERNAME\C$\VideosArchive\ '+Filename+ '|' +Filename+ </file> <br/>)
So when the output comes out it has to look like.
<file>\\SERVERNAME\c$\VideoArchive\FILENAME.7z|FILENAME</file>
but i need something that auto generates that if that makes since.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西吗?
Something like this?
听起来是一个非常简单的任务。
您可以创建应用程序或 PowerShell 脚本来执行此文件的动态创建。
Sounds like a very simple task.
You could create an app or PowerShell script to perform the dynamic creation of this file.