情况一,创建文件后再删除:

func main() {NewConfigIni()DeleteConfigTemp()
}func DeleteConfigTemp() {path := "time.ini"err := os.Remove(path) //如果文件不存在时执行会报错fmt.Println("删除ini err:", err)
}func NewConfigIni() {os.Create("time.ini")
}

修正:

func NewConfigIni() {f, _ := os.Create("time.ini")f.Close() //关闭文件
}

情况二,LiteIDE进程冲突:

func main() {db, err := sql.Open("mysql", "aaaa:123456@tcp(192.168.1.106:3306)/mirai?charset=utf8")if err != nil {fmt.Println("链接错误1");}err = db.Ping()if err != nil {fmt.Println("链接错误2");}db.Close()
}

删除进程:

golang错误:The process cannot access the file because it is being used by another process相关推荐

  1. smbException:The process cannot access the file because it is being used by another process的错误原因

    smbException:The process cannot access the file because it is being used by another process 问题我搜了百度上 ...

  2. 处理文件时遇到:The process cannot access the file because it is being used by another process.

    没空啰嗦,直接上代码! class FileOperate {         //for security , not display the account in the app.config   ...

  3. the process cannot access the file because it is being used by another process

    当在IIS中修改绑定的端口号后启动时遇到如下错误,表明你的端口号已经被占用了 使用netstat -ano这个指令查看本地端口占用情况,换一个没有被占用的端口即可.  版权声明:本文为博主原创文章 ...

  4. goland编译时提示\go-build\exe\a.out.exe: The process cannot access the file because it is being used

    goland中build一直提示 open C:\Users\ \AppData\Local\Temp\go-build2905132708\b001\exe\a.out.exe: The proce ...

  5. Failed to execute child process duplicity (No such file or directory)错误解决

    恢复文件时报Failed to execute child process "duplicity" (No such file or directory)错误 尝试在命令行执行su ...

  6. kvm静态迁移error: Cannot access storage file

    kvm静态迁移小坑, 1,kvm静态迁移virsh define  /etc/libvirt/qemu/xxxxxxxx.xml 后 执行virsh start  xxxxxx  报出下面的错误 er ...

  7. ERROR: Unable to launch the RTL Schematic process. The input NGR file, Can not fnd the module的解决方法

    我今天的verilog程序语法检测已通过,在综合时先后如下错误提示: 错误1: "ERROR: Unable to launch the RTL Schematic process. The ...

  8. linux下生成guid,在Linux下生成GUID的程序,及编译错误 “uuid/uuid.h: No such file or directory” 的解决办法。...

    在Linux下编写生成GUID的程序,如下 guid.c 文件: #include #include void uuid2string(const uuid_t uu, char* const str ...

  9. 重置密码解决MySQL for Linux错误 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwor

    重置密码解决MySQL for Linux错误 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwor ...

最新文章

  1. 在线作图|2分钟绘制三维PCA图
  2. Promise 原理解析与实现(遵循Promise/A+规范)
  3. Linux 系统如何查看硬盘UUID与修改
  4. linux常用架构,Linux常用到的一些命令-Go语言中文社区
  5. 【毕业答辩】别小看毕业答辩PPT,它和你的论文一样重要
  6. 计算机可行性分析报告,计算机可行性分析报告范文.docx
  7. Material Dialogs的使用
  8. 大数据培训课(体验) Day02
  9. 概率运算中C(k,n)是怎么算的啊? 比如C(6,3)等于几?怎么来的.
  10. 台式机主板常见接口资料
  11. android数据格式化,手机格式化了?教你找回安卓手机数据
  12. 加减法、原码一位乘法、Booth算法、恢复余数法、加减交替法符号位及小结
  13. 人工智能研究中心快递柜——代码分析七
  14. 京东app秒杀接口sk参数分析
  15. 计算机视觉中的双目立体视觉和体积度量
  16. 如何解决数据关联查询
  17. dnf服务器炸团门票怎么找回,DNF:还在为魔界裂缝门票发愁吗?这些地方可以轻松获取门票...
  18. PIC16F630使用PICkit程序下载使用方法
  19. const , 拷贝构造函数,赋值操作符重载
  20. 中星9号卫星PK中星6B+鑫诺3号组合

热门文章

  1. 博士女友的朋友圈都藏着什么秘密?
  2. 道友,来Rstudio里面看动画了
  3. 如何将 Mac 恢复还原到以前的日期
  4. Final Cut Pro X实用教程:FCPX安装插件位置以及如何删除插件
  5. php连接mysql数据没反应_PHP mysql 数据库连接时 网页无法显示
  6. 学什么c语言标准,C语言的标准 “输入输出”!今天是你学C语言的第几天?
  7. 上传头像mysql_上传头像 - MVC5+EF6+MySql企业网盘实战 - 爱整理
  8. 【ES9(2018)】String 扩展 标签模板里字符串转义
  9. 环信SDK 踩坑记webIM篇(一)
  10. 防御sql和xss的php代码,PHP防XSS 防SQL注入的代码