您现在的位置是:网站首页> 编程资料编程资料
Powershell使用C#实现缩写路径_PowerShell_
2023-05-26
536人已围观
简介 Powershell使用C#实现缩写路径_PowerShell_
支持2.0及以后版本。
某些时候报表中的路径字符串是非常长的。如果需要你也可以缩写它,但是这样路径就失去的使用价值。最好是使用内置的API它可以灵活的缩略路径。
接下来要告诉你如何在Powershell脚本中使用C#代码:
复制代码 代码如下:
$newType = @'
using System;
using System.Text;
using System.Runtime.InteropServices;
namespace WindowsAPILib
{
public class Helper
{
[DllImport("shlwapi.dll", CharSet = CharSet.Auto, SetLastError = true)]
internal static extern bool PathCompactPathEx(System.Text.StringBuilder pszOut, string pszSrc, Int32 cchMax, Int32 dwFlags);
public static string CompactPath(string Path, int DesiredLength)
{
StringBuilder sb = new StringBuilder(260);
if (PathCompactPathEx(sb, Path, DesiredLength + 1, 0))
{ return sb.ToString(); }
else
{ return Path; }
}
}
}
'@
Add-Type -TypeDefinition $newType
一旦你执行这段代码,就会产生一个新的.Net类,其中会增加一个新的静态方法“CompactPath”,现在你就可以这样使用它了:
复制代码 代码如下:
PS> $pshome
C:\Windows\System32\WindowsPowerShell\v1.0
PS> [WindowsAPILib.Helper]::CompactPath($pshome, 12)
C:\W...\v1.0
PS> [WindowsAPILib.Helper]::CompactPath($pshome, 18)
C:\Windows...\v1.0
PS> [WindowsAPILib.Helper]::CompactPath($pshome, 22)
C:\Windows\Sys...\v1.0
相关内容
- PowerShell中iso8601格式日期和DateTime对象互转实例_PowerShell_
- Powershell中显示隐藏文件的方法_PowerShell_
- PowerShell操作Excel、CSV详细介绍_PowerShell_
- Python中调用PowerShell、远程执行bat文件实例_PowerShell_
- PowerShell实现在多个文件中检索关键字功能_PowerShell_
- PowerShell脚本实现检测网络内主机类型_PowerShell_
- 在cmd中直接运行PowerShell脚本文件的方法_PowerShell_
- PowerShell查看进程的所属用户_PowerShell_
- Powershell实现捕获系统内置EXE程序的异常_PowerShell_
- Powershell实现克隆NTFS文件系统权限_PowerShell_
