例如,我已经在list.txt中保存了一些链接:

d:\phpnow\htdocs\pm\includes\templates\slucky\common\tpl_gallery_display.php
d:\phpnow\htdocs\pm\includes\templates\slucky\common\tpl_main_page.php
d:\phpnow\htdocs\pm\includes\templates\slucky\templates\tpl_main_page.php
d:\phpnow\htdocs\pm\includes\templates\slucky\templates\tpl_product_info_display.php
d:\phpnow\htdocs\pm\includes\templates\slucky\templates\tpl_product_info_display2.php


我想在记事本++中全部打开它们。有插件可以完成这项工作吗?

最佳答案

编写一个名为openfromfiles.bat的批处理文件并执行它。

@echo off
setlocal enableextensions enabledelayedexpansion

set LIST=
for /f %%x in (list.txt) do (
    set LIST=!LIST! "%%x"
    )
    echo %LIST%

"C:\Program Files\Notepad++\notepad++" %LIST%


这是批处理文件说明的链接。
Windows XP batch file concat

关于notepad++ - 如何使用 Notepad++ 从txt打开一组文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14555235/

10-11 00:00