how can i get the length of the full path of a filename?
我遞歸讓所有的文件目錄結構成功地長度,現在我試圖讓FULLPATH長度:如何顯示FULLNAME
get-childitem y:\ -rec | where {!$_.PSIsContainer} |
select-object FullName, LastWriteTime, $($_.fullname).length | export-csv -notypeinformation -delimiter '|' -path file.csv
我的問題是,與此:$($_.fullname).length
:
Select-Object : Null parameter. Expecting one of the following types: {System.String, System.Management.Automation.Scri ptBlock}. At line:2 char:14
+ select-object <<<< FullName, LastWriteTime, $($_.fullname).length | export-csv -notypeinformation -delimiter '|' -pa th file.csv
+ CategoryInfo : InvalidArgument: (:) [Select-Object], NotSupportedException
+ FullyQualifiedErrorId : DictionaryKeyUnknownType,Microsoft.PowerShell.Commands.SelectObjectCommand
如何將我得到的文件的全名的長度?
'$($ _。fullname).length'是什麼問題? –
@RobertHarvey我已經包括這個問題。羅伯特,我不知道你回答了PowerShell問題! –
我不知道。 。 。 。 。 –