Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用磁性刷卡机将用户打卡到数据库中,但一切正常,但是我用来读取刷卡软件写入的文本文件的 c# 代码在另一个进程正在使用该文件时暂停,所以我想知道他们是我的 c# 程序的一种方式吗?
您是否有权访问正在使用该文本文件的程序?如果是这样,您可以使用
File.WriteAllLines()
这不会使文件保持打开状态。
读取文件
File.ReadAllLines()