smargit到期后的解决办法很简单,主要就是删除C:\Users\{username}\AppData\Roaming\syntevo\SmartGit\{version}
目录下的setting.xml文件即可。手动删除虽然也快,但是需要点点点,这就很烦人,所以提供以三种解决办法。
- Bat(适用于Windows操作系统)
1 2 3 4
| \# 手动打开文件夹删除 start "" "C:\Users\{your_userName}\AppData\Roaming\syntevo\SmartGit\{version}" \# 直接删除 del /f /s /q C:\Users\{your_userName}\AppData\Roaming\syntevo\SmartGit\{version}\setting.xml
|
- Java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| package io.caoxx.o3SimpleSort.demo;
import java.io.File;
public class DeleteSmatgitSettingxmlDemo { public static void main(String[] args) { String path="C:\\Users\\{your_userName}\\AppData\\Roaming\\syntevo\\SmartGit\\{version}"; File file=new File(path); File [] files=file.listFiles(); for (File file1:files) { if (file1.getName().equals("setting.xml")){ file1.delete(); System.out.println("成功删除smartgit的配置文件"); } } } }
|
- Python
1 2 3 4 5 6 7 8
| \ \ import os my_file = 'C:/Users/{your_userName}/AppData/Roaming/syntevo/SmartGit/{version}/setting.xml' if os.path.exists(my_file): os.remove(my_file) print("成功删除smartgit的配置文件")
|