1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

配下のファイルを全部ひらくバッチ

Last updated at Posted at 2021-12-06

配下のファイルを全部ひらくバッチ

_all_open.bat
@echo off
set TARGET_DIR_FOR_ALL_OPEN=%~dp0
cd %TARGET_DIR_FOR_ALL_OPEN%
for %%a in (*.*) do (
 if not %%a == %~n0%~x0 (
  echo START:%%a
  start /max "" "%%a"
 )
)

自分以外のファイル(1階層)を全て開く。
自分(このバッチファイル)も開くと無限ループするので注意

いつも開くショトカとかをまとめたフォルダに入れておくだけで結構便利になるかも?

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?