powershell调用c#代码实现缩写路径

发布时间:2020-10-20编辑:脚本学堂
有关powershell使用c#实现缩写路径的方法,使用缩写路径解决文件长度太长的问题,缩短报表文件路径,需要的朋友参考下。

以下介绍的方法,支持2.0及以后版本。
某些时候报表中路径字符串是非常长的。

可以使用内置的API它可以灵活的缩略路径。

在powershell/ target=_blank class=infotextkey>shell脚本中使用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:WindowsSystem32Windowspowershellv1.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:WindowsSys...v1.0