原理:windows管道技术
powershell : [System.Text.RegularExpressions.Regex]::Matches([System.IO.Directory]::GetFiles("\\.\\pipe\\"),"QQ_(\d*)_pipe").Groups;
cmd : dir \\.\pipe\\ | findstr "QQ_" | findstr "_pipe"

本文深入探讨了Windows管道技术,通过PowerShell和cmd命令演示如何利用正则表达式匹配和查找特定的管道文件,如QQ应用的管道实例。这为理解Windows系统内部通信机制提供了实用的视角。
原理:windows管道技术
powershell : [System.Text.RegularExpressions.Regex]::Matches([System.IO.Directory]::GetFiles("\\.\\pipe\\"),"QQ_(\d*)_pipe").Groups;
cmd : dir \\.\pipe\\ | findstr "QQ_" | findstr "_pipe"

2019

被折叠的 条评论
为什么被折叠?