1
1

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 5 years have passed since last update.

[vbs]サブフォルダをランダムに開く

Posted at

私用で急造したもの。
このスクリプトを配備したフォルダ内のフォルダをランダムに開く。

random.vbs
dim fso
dim folder
dim sfCount
set fso = createObject("Scripting.FileSystemObject")
set folder = fso.getFolder(fso.getParentFolderName(WScript.ScriptFullName))
sfCount = folder.SubFolders.Count

dim rnd_val
Randomize
rnd_val = Int(sfCount * rnd + 1)

dim subfolder
dim i
for each subfolder in folder.subfolders
	i = i + 1
	if i = rnd_val then
		CreateObject("Shell.Application").ShellExecute subfolder
		WScript.Quit
	end if
next
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?