gpt4 book ai didi

notepad++ - 如何使用 Notepad++ 从txt打开一组文件

转载 作者:行者123 更新时间:2023-12-03 23:32:25 25 4
gpt4 key购买 nike

例如,我在 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

我想在 Notepad++ 中打开它们。有没有插件可以完成这项工作?

最佳答案

编写一个名为 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/

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