0
点赞
收藏
分享

微信扫一扫

windows 下删除项目导入idea后的构建文件iml批处理命令

北冥有一鲲 2022-01-31 阅读 48


@echo off

:start

@echo please pull in your python project root directory:

@set /p dir_path="D:\test"   

@if not exist "%dir_path%" echo.directory not exit!&goto :start

@echo please input delete suffix

@set /p del_ex= ".iml"

@echo delete directory in %dir_path% with %del_ex% suffix

del %dir_path%\*.%del_ex% /f /s /q /a

@pause

echo ★☆ 清理完成!☆★

echo .




举报

相关推荐

0 条评论