标签:创建 获取 运行 sof ash for file ict ansi
食用方法:
随便新建一个文本文件(比如说桌面的“特大剑天下第一.txt”),复制粘贴全部内容,保存并改后缀名为.bat或.cmd,双击运行。
有点小问题就是,utf-8编码的文件在cmd窗口里会中文乱码的,所以用GBK(记事本显示ANSI)就没问题了。Notepad++默认创建的就是ANSI,所以,嗯。
@echo off
echo 复制必应每日图片到用户的"Pictures\本机照片"目录下
copy "%UserProfile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*" "%UserProfile%\Pictures\Camera Roll\*.png"
:: 只是换后缀名的话,写上面那一句就行了
:: 如果需要把文件名全部改为递增数字的话,就用下面goto语句和Comment标签之间的代码
goto Comment
cd "%UserProfile%\Pictures\Camera Roll\"
setlocal EnableDelayedExpansion
set /a a=1
for %%i in (*) do (
rename "%%i" "!a!.png"
set /a a+=1
)
:Comment
set /p p=Press any key to continue...
标签:创建 获取 运行 sof ash for file ict ansi
原文地址:https://www.cnblogs.com/RyanZhou/p/12860554.html