您好,登錄后才能下訂單哦!
日常工作中我們往往有需要導(dǎo)出當(dāng)前共享環(huán)境或磁盤文件目錄層級(jí)結(jié)構(gòu)等的需求,最早在目錄少的情況下我們使用CMD下tree 命令可以很清晰的看到目錄、文件層級(jí)結(jié)構(gòu),那么我們又如何通過powershell直觀顯示或?qū)С瞿澄募夸浕虮P符目錄層級(jí)結(jié)構(gòu)呢?
DOS下查看目錄、文件結(jié)構(gòu):
tree /?
以圖形顯示驅(qū)動(dòng)器或路徑的文件夾結(jié)構(gòu)。
TREE [drive:][path] [/F] [/A]
/F?? 顯示每個(gè)文件夾中文件的名稱。
/A?? 使用 ASCII 字符,而不使用擴(kuò)展字符。
Powershell查看目錄、文件結(jié)構(gòu):
其實(shí)我們通過powershell命令也可以搭配tree命令使用,簡(jiǎn)單操作如下:
Get-ChildItem D:\SW_Office_Plus |tree /f
Get-ChildItem D:\SW_Office_Plus |tree /A
Get-ChildItem :獲取一個(gè)或多個(gè)指定位置中的項(xiàng)和子項(xiàng)。
獲取當(dāng)前目錄下文件夾名稱:
Get-ChildItem D:\SW_Office_Plus | ?{$_.psiscontainer -eq $true}
獲取當(dāng)前目錄下文件名稱:
Get-ChildItem D:\SW_Office_Plus | ?{$_.psiscontainer -eq $false}
接下來進(jìn)入我們今天的主題內(nèi)容,如何查看當(dāng)前目錄下文件層級(jí),具體命令如下:
Get-ChildItem -Recurse -Directory -Depth 3 |select FullName
Get-ChildItem D:\SW_Office_Plus? -Recurse -Directory -Depth 3 |select Fullname
如果需要對(duì)結(jié)果進(jìn)行導(dǎo)出,可通過如下命令操作:
Get-ChildItem -Recurse -Directory -Depth 3 |select FullName | Export-Csv d:\fullname.csv -Encoding UTF8 –NoTypeInformation
PS.補(bǔ)充:導(dǎo)出文件、文件目錄名稱、創(chuàng)建時(shí)間、格式等等信息:
Get-ChildItem?-Path?D:\SW_Office_Plus?-Recurse?|` foreach{ $Item?=?$_ $Type?=?$_.Extension $Path?=?$_.FullName $ParentS?=?($_.Fullname).split("\") $Parent?=?$ParentS[@($ParentS.Length?-?2)] $ParentPath?=?$_.PSParentPath $ParentPathSplit?=?($_.PSParentPath).split("::") $ParentPathFinal?=?$ParentPathSplit[@($ParentPathSplit.Length?-1)] #$ParentPath?=?[io.path]::GetDirectoryName($myDirectory) $Folder?=?$_.PSIsContainer $Age?=?$_.CreationTime $Path?|?Select-Object?` ????@{n="Name";e={$Item}},` ????@{n="Created";e={$Age}},` ????@{n="Folder?Name";e={if($Parent){$Parent}else{$Parent}}},` ????@{n="filePath";e={$Path}},` ????@{n="Extension";e={if($Folder){"Folder"}else{$Type}}},` ????@{n="Folder?Name?2";e={if($Parent){$Parent}else{$Parent}}},` ????#@{n="Folder?Path";e={$ParentPath}},` ????@{n="Folder?Path?2";e={$ParentPathFinal}}` }|?Export-Csv?d:\Folder.csv?-Encoding?UTF8?-NoTypeInformation
導(dǎo)出后格式如下,可自行篩選,該腳本內(nèi)容具體可參考該link。
歡迎關(guān)注微信公眾號(hào):小溫研習(xí)社
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。