powershell Windows Phone无法用资料夹来区分影片,因此只能够用档名。而档名通常没有到资料夹层级。因此,这个Powershell脚本用资料夹前2个字元(通常表示那个章节)加上本身档 Posted 2021-05-23
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Windows Phone无法用资料夹来区分影片,因此只能够用档名。而档名通常没有到资料夹层级。因此,这个Powershell脚本用资料夹前2个字元(通常表示那个章节)加上本身档相关的知识,希望对你有一定的参考价值。
# 範例資料結構
# 原本是:
# 01 Chapter1/01.xxx.mp4
# 01 Chapter1/02.xxx.mp4
# 02 Chapter2/01.xxx.mp4
# 02 Chapter2/02.xxx.mp4
#
# 執行完:
# 01 Chapter1/01_01.xxx.mp4
# 01 Chapter1/01_02.xxx.mp4
# 02 Chapter2/02_01.xxx.mp4
# 02 Chapter2/02_02.xxx.mp4
dir -recurse -file |
ren -NewName {$_.Directory.Name.SubString(0,2) +
"_" + $_.Name} -whatif
# 沒有Whatif 版本(直接執行)
dir -recurse -file |
ren -NewName {$_.Directory.Name.SubString(0,2) +
"_" + $_.Name}
# 拉平版本 - 方便貼上powershell直接修改要的值
dir -recurse -file | ren -NewName {$_.Directory.Name.SubString(0,2) + "_" + $_.Name}
以上是关于powershell Windows Phone无法用资料夹来区分影片,因此只能够用档名。而档名通常没有到资料夹层级。因此,这个Powershell脚本用资料夹前2个字元(通常表示那个章节)加上本身档的主要内容,如果未能解决你的问题,请参考以下文章
适用于 Windows Phone 8.1(无 XAML)的最小应用程序:与桌面应用程序的差异
windows phone 8.1 公司简介
PowerShell病毒防治(无文件勒索)
Powershell无文件挖矿查杀方法
无终端不浪漫Cmder解救Windows终端苦手
Windows Phone 应用程序中的自定义 MFT