用PowerShell创建目录联接(Junction)
要使用PowerShell创建Junction,只需要使用New-Item命令即可: New-Item -ItemType Junction -Value {Junction指向的目录} {Junction要创建的位置} 例如: New-Item -ItemType Junction -Value D:\Source C:\Source
要使用PowerShell创建Junction,只需要使用New-Item命令即可: New-Item -ItemType Junction -Value {Junction指向的目录} {Junction要创建的位置} 例如: New-Item -ItemType Junction -Value D:\Source C:\Source
Android项目中,需要将不同分辨率的图片资源(drawable)放到对应的文件夹中。但是AI批量导出图片的时候,只能在文件名后面加后缀,不能将不同分辨率的图片放到不同的文件夹中。使用PowerShell脚本可以快速将不同后缀的文件放到对应的文件夹中,并去除文件名后缀。 ...