本帖最后由 任贤齐 于 2021-5-21 21:54 编辑
d盘a目录下有1000个html文件,以后每天增加200个,现在要生成站点地图并每天更新
xml文件如下- <?xml version="1.0" encoding="utf-8"?>
- <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
- <url>
- <loc>http://www.baidu.com/</loc>
- <changefreq>daily</changefreq>
- <priority>1.00</priority>
- </url>
- <url>
- <loc>http://www.baidu.com/a.html</loc>
- <changefreq>daily</changefreq>
- <priority>0.8</priority>
- </url>
- </urlset>
复制代码 以后每天运行批处理的时候只用在,</urlset>上面添加如下格式即可- <url>
- <loc>http://www.baidu.com/文件名</loc>
- <changefreq>daily</changefreq>
- <priority>0.8</priority>
- </url>
- </urlset>
复制代码 先获取当前文件夹下的所有html文件名,然后组合成网址,添加到xml中</urlset>上面,第二天只用添加新增的
这用批处理能实现吗?求大神 |