如何让JavaScript在特定文件夹中读取文件名?

时间:2014-09-13 15:31:57

标签: javascript php python file web

我想制作带有图像的幻灯片 我希望JS代码读取空间文件夹中的文件名,并在网站上显示 那我怎么能这样做呢 请注意,我正在将它用于某个网站,如果不能使用这种编程语言,我应该使用哪种语言?
PHP,python等

2 个答案:

答案 0 :(得分:3)

使用PHP或任何其他服务器端语言读取目录的内容,然后输出所需的标记,以便JavaScript可以处理幻灯片。

使用PHP,您将使用scan_dir来读取目录的内容。

答案 1 :(得分:1)

它需要是javascript吗?

您可以使用php函数glob来读取这样的文件夹:

// the * means you want all files in this folder
$path = '/var/www/example/example_dir/*';  

// will return you an array with the content of this folder
$files = glob($path);