2016年9月28日 星期三

【C#】File create by File.Create(path) is used by another process

File.Create(path) 檔案建出來之後要操作卻跑出 file is used by another process

原因是該方法本身還咬著,在還蠻意外 File.Create() 完成後不會幫你 Dispose,你要自己 call
File.Create(path).Dispose();

ref: SOF

1 則留言: