即使更改文件后,如何使网页显示文件的内容?

发布于 2024-11-02 15:46:19 字数 525 浏览 1 评论 0原文

大家好,我有一个维基问题。我们将文件存储在一台服务器上的 *.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生来就爱笑 2024-11-09 15:46:19

像这样的东西吗?

pushd \\servername\C$\VideosArchive
rem by the way, you should make that a share instead of using C$. Plays nicer with privileges and stuff
for %%f in (*) do (
  echo ^<br^>^<file^>SERVERNAME\C$\VideosArchive\%%~nxf^|%%~nxf^</file^>^</br^>
  rem do I need to ask why you are using "br" as if it had content? It's a tag without content ...
)
popd

Something like this?

pushd \\servername\C$\VideosArchive
rem by the way, you should make that a share instead of using C$. Plays nicer with privileges and stuff
for %%f in (*) do (
  echo ^<br^>^<file^>SERVERNAME\C$\VideosArchive\%%~nxf^|%%~nxf^</file^>^</br^>
  rem do I need to ask why you are using "br" as if it had content? It's a tag without content ...
)
popd
五里雾 2024-11-09 15:46:19

听起来是一个非常简单的任务。
您可以创建应用程序或 PowerShell 脚本来执行此文件的动态创建。

Sounds like a very simple task.
You could create an app or PowerShell script to perform the dynamic creation of this file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文