gpt4 book ai didi

javascript - 使用单个 html 文件显示本地文件夹中的所有图像

转载 作者:行者123 更新时间:2023-11-27 23:40:58 25 4
gpt4 key购买 nike

首先,所有这些事件都被视为本地事件。简单地说,没有网络服务器。

我有两个步骤。

  1. 使用 VBS 创建一个 html 文件,并使用我在 msgbox 中键入的特定文件夹中的图像链接填充它。

  2. 在我选择的浏览器中打开 html 文件。

我花了一个晚上都没有结果,试图将其合并为一个步骤 - html 页面有一个输入框,按下按钮 --> 出现图像。

现在要清楚 VBS 脚本输出只有

img src="c:\temp\01.png"

带有开始和结束标签,其中在文件夹 temp 中有一个名为 01.png 的文件,然后是 02.png低于那个等等

我今晚的尝试是想找到一种方法,用 document.write 之类的东西或类似的东西在页面上简单地显示文件列表,但我没有做到那么远。任何访问文件系统的尝试似乎都会导致脚本失败。

感谢您的帮助。

我现在有一个 vbscript 用于我的第一步。我想知道如何将函数/html 输出嵌入到单个 html 文件中。

我设想 html 页面将有一个输入字段、一个“开始”按钮,然后结果将是页面上出现的文件夹中的图像。全部使用客户端脚本。

我的 vbscript 与下面的非常相似,但因为我知道我只会得到 png 文件,这就是我要查找的内容(并且就此而言应该存在的所有内容)。

抱歉,如果我总是把东西放错地方。

当前的 HTML 示例输出如下。

<html><head></head><body>
<img src = "c:\temp\credit.png"<hr>.<hr>
<img src = "c:\temp\NTK_01.png"<hr>.<hr>
</body></html>

-

dim objFSO
dim objFolder
dim colFiles
dim filelist
dim objStartFolder
dim pathToImage
dim iend

iend = """<hr>.<hr>" & vbcrlf 'vbcrlf if for readability of html only
const isrc = "<img src = """

const FileToWrite = "c:\temp\images.html"
'const objStartFolder = "C:\Temp" 'Used when testing so don't have to have the input box.
const For_Appending = 8
const For_Writing = 2

objStartFolder = InputBox("Folder path to open i.e. c:\temp") 'Grab the user path.

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder(objStartFolder) 'No error checking cause its just me
Set colFiles = objFolder.Files


filelist = "<html><head></head><body>" & vbcrlf 'Create the html code and store it in this variable.


For Each objFile in colFiles
'There should only be images, but i created this when testing and left it in.
if right(objFile.Name,3) = "png" then
pathToImage = objFolder.path & "\" & objFile.Name
filelist = filelist & isrc & pathToImage & iend
'Output line should be:
'<img src="c:\temp\01.png"><hr>.<hr>
end if
Next

filelist = filelist & "</body></html>" 'Close the html data
wscript.echo filelist 'Show what the html file will look like - sanity check.

'Open the file, overwrite the existing contents and close the file
set htmlout = objFSO.OpenTextFile(FileToWrite,For_Writing,TRUE)
htmlout.write filelist
htmlout.close

最佳答案

您可以从这个例子开始:IMG2HTML.vbs

'This VBScript Scan and Search for images with extension like jpg,gif,png,bmp 
'in the folder and subfolders and list them in a html output file.
'© Hackoo © 2011
start_folder = ".\" ' The Current Directory for scaning images
htmfile = "ListImage.htm"
ext = Array("jpg","gif","png","bmp")
count=0
Set fso = CreateObject("Scripting.FileSystemObject")
Set folder = fso.GetFolder(start_folder)
Set ws = CreateObject("WScript.Shell")
Set outfile = fso.CreateTextFile(htmfile)
outfile.WriteLine "<html><body>"
ListDirectory folder, ext 'Call The Recursive function
outfile.WriteLine "<br><center><font color=red>Le Nombre total des images est de "& count & "</font>"
outfile.WriteLine "</body></html>"
outfile.Close
Question = MsgBox("The Total Count of images is " & count & vbCrLf &" Do you want to List them now ?",vbYesNo+32,"Total Count of images")
If Question = vbYes Then
Explorer htmfile
else
wscript.Quit
End If
'******************************************
Sub ListDirectory(folder, ext)
For Each file In folder.Files
cheminFic = folder & "\" & file.name
For i = lbound(ext) to ubound(ext)
If UCase(ext(i)) = UCase(fso.GetExtensionName(file.Name)) Then
strFilePath = file.ParentFolder
outfile.WriteLine "<center><a target=_Blank href="& qq("file:///" & cheminFic) &""">"&_
"<img src="& qq("file:///" & cheminFic) &" width=70 height=70><BR><B><font color=red>"&_
"<a href="& qq("file:///" & strFilePath) &">" & file.Name & "</a></font><B><br><hr>"
count=count+1
End If
Next
Next
For Each fldr In folder.subfolders
ListDirectory fldr, ext
Next
End Sub
'******************************************
Function Explorer(File)
Set ws=CreateObject("wscript.shell")
ws.run "Explorer "& File & "\"
end Function
'******************************************
Function qq(strIn)
qq = Chr(34) & strIn & Chr(34)
End Function
'******************************************

关于javascript - 使用单个 html 文件显示本地文件夹中的所有图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31777987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com