VBS 에서 지정 한 디 렉 터 리 의 파일 목록 을 어떻게 가 져 옵 니까?

2098 단어 vbs파일 목록
VBS 가 부 었 습 니까?디 렉 터 리 에 있 는 파일 목록 가 져 오기

dim FileName,fs,foldername
foldername = InputBox("             ", "VBS    ")
If foldername = "" Then
wscript.quit
End If
Set fs = CreateObject("scripting.filesystemobject")
digui (foldername)'          
msgbox FileName '    

'         
Function digui(path)
Set folder = fs.getfolder(path)
Set subfolders = folder.subfolders
Set Files = folder.Files
For Each i In Files
FileName=FileName & i.path & vbNewLine '        FileName 
Next
For Each j In subfolders
digui (j.path) '       
Next
End Function
'디 렉 터 리 목록 은 위 와 비슷 합 니 다.조금 만 수정 하면 됩 니 다.
디 렉 터 리 에 있 는 파일 과 폴 더 집합 가 져 오기

Dim sFolder, sExt, message
sFolder = "F:\Programming\Applications\VBScript"
 
Dim fs, oFolder, oFiles, oSubFolders
set fs = CreateObject("Scripting.FileSystemObject")
set oFolder = fs.GetFolder(sFolder)   '     
set oSubFolders = oFolder.SubFolders  '       
 
for each folder in oSubFolders
  message = "   :" & folder
  MsgBox message
Next
 
set oFiles = oFolder.Files       '      
for each file in oFiles
  sExt = fs.GetExtensionName(file)  '       
  sExt = LCase(sExt)         '     
  message = "   :" & file.Name & ",    :" & sExt '     (    ,    )    
  MsgBox message
Next
충전,위의 folder.Name 폴 더 의 이름 을 가 져 올 수 있 습 니 다(경로 포함 하지 않 음)
예 를 들 어:folder=F:\Programming\\Applications\\VBScript\dd
folder.Name 을 통 해"dd"를 얻 을 수 있 습 니 다.
하위 디 렉 터 리 파일 개수 일괄 집계

@echo off&setlocal enabledelayedexpansion
cd.>dirfiles.txt
for /d %%a in (*.*) do (
set n=0
for /f %%B in ('dir /a-d /b /s "%%a"') do set /a n+=1
echo %%a  !n! >>dirfiles.txt
)
구체 적 인 것 은 여러분 이 긁 어 모 을 수 있 습 니 다.

좋은 웹페이지 즐겨찾기