- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
早上好
我的桌面上有 3 个文件夹,每个文件夹包含随机数量的文件夹。
文件夹 1
文件夹 2
文件夹 3
我要完成的任务:根据主文件夹列出每个单独列中的子文件夹,例如:
SelectionOne SelectionTwo SelectionThree
------------ ------------ --------------
0: here too 4: and here 9: Hello
1: more stuff 5: bored 10: Howdy
2: Ranom stuff 6: Here stuff 11: More Stuff here
3: Something Here 7: here too 12: Random
8: stuff here 13: Random here
14: Space
Enter Folder Numbers: 3, 14
然后可以通过选择的编号选择对应的文件夹如:
# from the 3, and 14 selection it would be the following selected:
'Something Here'
'Space'
到目前为止,我可以在单独的列中列出文件夹,只是不分配前一列的增量值。我面临的另一个问题是尝试为该数组选择正确的索引号并以某种方式将其关联到正确的文件夹?即,当我选择 3,14
时,第一列和第三列中的相应文件夹被选中,但它也只显示为:
SelectionOne SelectionTwo SelectionThree
------------ ------------ --------------
0: here too 0: and here 0: Hello
1: more stuff 1: bored 1: Howdy
2: Ranom stuff 2: Here stuff 2: More Stuff here
3: Something Here 3: here too 3: Random
4: stuff here 4: Random here
5: Space
这是我所拥有的:
$Folder1 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 1'
$Folders1 = for ($i=0; $i -lt $Folder1.Count; $i++) {
[PSCustomObject]@{
FolderNames1 = "${i}: $($Folder1[$i].Name)"
}
}
$Folder2 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 2'
$Folders2 = for ($i=0; $i -lt $Folder2.Count; $i++) {
[PSCustomObject]@{
FolderNames2 = "${i}: $($Folder2[$i].Name)"
}
}
$Folder3 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 3'
$Folders3 = for ($i=0; $i -lt $Folder3.Count; $i++) {
[PSCustomObject]@{
FolderNames3 = "${i}: $($Folder3[$i].Name)"
}
}
$Count = ($Folders1.Count,$Folders2.Count,$Folders3.Count | Measure-Object -Maximum).Maximum
& {
for ($i=0; $i -lt $Count; $i++) {
[PSCustomObject]@{
SelectionOne = ($Folders1[$i].FolderNames1 | Format-List | Out-String).Trim()
SelectionTwo = ($Folders2[$i].FolderNames2 | Format-List | Out-String).Trim()
SelectionThree = ($Folders3[$i].FolderNames3 | Format-List | Out-String).Trim()
}
}
} | Format-Table -AutoSize -Wrap
$index = Read-Host -Prompt "Enter Folder Numbers" # Selected 3, 14
$index = $i.Trim() -split ','
foreach ($i in $index) {
# here would be correct folder for the corresponding
# array number.
# example:
<#
# from the selected 3, and 14.
# the following folders are selected
'Something Here'
'Space'
#>
}
谁能指出我正确的方向?
我觉得这是以前没有做过的事情,但我觉得它对 future 的 Posh 用户会很方便。
最佳答案
非常好的脚本练习亚伯拉罕 :) 我没有做太多改变,可能有更好的方法,但我认为这应该有效。
那么,发生了什么变化?
for ($i=0; $i -lt $Count; $i++) { ... }
的结果,然后再将其显示到控制台:$result = for ($i=0; $i -lt $Count; $i++) {...}
$result | Format-Table -Wrap
[int[]]
转换为 Read-Host
,您需要在此处实现一个try {} catch {}
:<[int[]]$index = (Read-Host -Prompt "Enter Folder Numbers") -split ',' # Implement Try Catch here
for
循环之后完成($rememberI = $ i
) 然后在下面的循环中你只需递增 $rememberI
:[PSCustomObject]@{
FolderNames2 = "${rememberI}: $($Folder2[$i].Name)"
}
$rememberI++
[regex]::Match(
$result.ForEach({$_.PSObject.Properties}).Where({$_.Value -match "^${i}:"}).Value,
'(?<=: ).*'
).Value
$Folder1 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 1'
$Folders1 = for ($i=0; $i -lt $Folder1.Count; $i++)
{
[PSCustomObject]@{
FolderNames1 = "${i}: $($Folder1[$i].Name)"
}
}
$rememberI = $i
$Folder2 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 2'
$Folders2 = for ($i=0; $i -lt $Folder2.Count; $i++)
{
[PSCustomObject]@{
FolderNames2 = "${rememberI}: $($Folder2[$i].Name)"
}
$rememberI++
}
$Folder3 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 3'
$Folders3 = for ($i=0; $i -lt $Folder3.Count; $i++)
{
[PSCustomObject]@{
FolderNames3 = "${rememberI}: $($Folder3[$i].Name)"
}
$rememberI++
}
$Count = ($Folders1.Count,$Folders2.Count,$Folders3.Count | Measure-Object -Maximum).Maximum
$result = for ($i=0; $i -lt $Count; $i++)
{
[PSCustomObject]@{
SelectionOne = ($Folders1[$i].FolderNames1 | Format-List | Out-String).Trim()
SelectionTwo = ($Folders2[$i].FolderNames2 | Format-List | Out-String).Trim()
SelectionThree = ($Folders3[$i].FolderNames3 | Format-List | Out-String).Trim()
}
}
$result | Format-Table -Wrap
[int[]]$index = (Read-Host -Prompt "Enter Folder Numbers") -split ',' # Implement Try Catch here
foreach ($i in $index)
{
[regex]::Match(
$result.ForEach({$_.PSObject.Properties}).Where({$_.Value -match "^${i}:"}).Value,
'(?<=: ).*'
).Value
}
显示 FullName
而不是 Name
?
$folderIndex = @{}
$Folders1 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 1' |
ForEach-Object -Begin { $i = 0 } -Process {
$newName = "${i}: $($_.Name)"
[PSCustomObject]@{
FolderNames1 = $newName
}
$folderIndex[$newName] = $_.FullName
$i++
}
$rememberI = $i
$Folders2 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 2' |
ForEach-Object {
$newName = "${rememberI}: $($_.Name)"
[PSCustomObject]@{
FolderNames2 = $newName
}
$folderIndex[$newName] = $_.FullName
$rememberI++
}
$Folders3 = Get-ChildItem -Path 'C:\users\Abraham\Desktop\Number 3' |
ForEach-Object {
$newName = "${rememberI}: $($_.Name)"
[PSCustomObject]@{
FolderNames3 = $newName
}
$folderIndex[$newName] = $_.FullName
$rememberI++
}
$Count = ($Folders1.Count,$Folders2.Count,$Folders3.Count | Measure-Object -Maximum).Maximum
$result = for ($i=0; $i -lt $Count; $i++)
{
[PSCustomObject]@{
SelectionOne = ($Folders1[$i].FolderNames1 | Format-List | Out-String).Trim()
SelectionTwo = ($Folders2[$i].FolderNames2 | Format-List | Out-String).Trim()
SelectionThree = ($Folders3[$i].FolderNames3 | Format-List | Out-String).Trim()
}
}
$result | Format-Table -Wrap
[int[]]$index = (Read-Host -Prompt "Enter Folder Numbers") -split ',' # Implement Try Catch here
foreach ($i in $index)
{
$thisVal = $result.ForEach({$_.PSObject.Properties}).Where({$_.Value -match "^${i}:"}).Value
$folderIndex[$thisVal]
}
关于powershell - 使用 PSCustomObject 在单独的列中列出多个文件夹然后选择一些?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68760132/
如何从单个输入字段中的逗号分隔值输出列表(无论是作为单个值还是作为数组)? 示例 用户在文本输入字段中输入以下内容:Steve、Bruce、Matt、Natasha、Peter 结果: 史蒂夫 布鲁斯
如何列出与 Jena 中的实例关联的所有对象属性? 例如:Person 有一个名为“hasVehicle”的对象属性,它与类 Vehicle 相关联 最佳答案 合适的 Jena 方法是 OntClas
如何列出与 Jena 中的实例关联的所有对象属性? 例如:Person 有一个名为“hasVehicle”的对象属性,它与类 Vehicle 相关联 最佳答案 合适的 Jena 方法是 OntClas
我知道 Python 是一种动态语言,但下面的代码让我很困扰。 我有下面的简单程序,它有一些辅助函数来包装命令执行。 EventLoaderToVerticaHelper 是一个有两个方法的辅助类,所
我有以下代码 public void saveProjects(List proj) throws DatabaseException { for (Project listItems: pr
我有一个列表,其中元素是: struct element { double priority; int value;
我看到对于 pull 请求的提交,根据文档最大限制为 250:List commits on a Pull Request如果 pull 请求超过 250 次提交,则建议使用另一个端点:List Co
我是 django 的新手,我想列出一个 django 项目的应用程序,例如: FeinCMS 我知道 startapp 会为应用程序创建目录结构。请问有没有函数或者文件可以获取应用列表。 以Fein
你能列出所有在 Hibernate 框架中使用的设计模式吗? 我了解一些设计模式,如 DAO、ORM 等。 如果可能的话,一些例子。 最佳答案 Hibernate 中使用的设计模式: 领域模型模式——
我正在尝试在终端中使用 psql 来查找数据库中所有可为空的列。如果我使用 select * from information_schema.check_constraints; 我得到如下信息 c
您可以使用以下步骤列出 WSO2 碳基产品使用的所有管理服务。 使用 OSGI 控制台启动服务器。转至 /bin 使用命令 shell 。 i) 例如:Linux sh wso2server.s
我想列出数据库中的所有表名。我的应用程序必须独立于 DBMS。不同的 DBMS 有不同的命令来列出表,例如: PstgreSQL: SELECT * FROM pg_catalog.pg_table
主要是为了我自己的启发,我试图列出当前 Emacs session 中加载的所有全局变量。我正在考虑做的是生成一个包含所有列出的功能的 HTML 文件。当然,定义函数、var 等的文件也很有用。 em
我如何定义 lists:append具有列表理解功能? 我想要类似的东西 1> append([[1, 2, 3], [a, b], [4, 5, 6]]). [1,2,3,a,b,4,5,6] 最佳
使用以下 Powershell 代码段,我可以获取当前用户的组成员名称: $groups = [System.Security.Principal.WindowsIdentity]::GetCurre
如何列出 Docker 容器的所有卷?我知道它应该很容易获得,但我找不到方法。 另外,是否可以获取已删除容器的卷并将其删除? 最佳答案 您可以使用 docker ps,获取容器 ID 并写入: $ d
来自微软独库: The "\\.\" prefix will access the Win32 device namespace instead of the Win32 file namespace
这个问题在这里已经有了答案: 9年前关闭。 Possible Duplicate: Finding all Namespaces in an assembly using Reflection (Do
是否有命令行选项可以列出您的 Cucumber 测试套件中的所有标签? 例如,我想要这样的东西: cucumber --show-tags foo.feature 那会给我类似的东西: @ci @de
有没有一种快速的方法来列出为数据库定义的所有实际上没有被任何字段使用的 Firebird 域?我有一个包含许多表和许多域的大型数据库,似乎其中很多不再使用,所以我想是时候进行清理了! 我认为这可以通过
我是一名优秀的程序员,十分优秀!