.fst文件格式是什么,为什么要使用它?

时间:2019-05-03 09:36:55

标签: file-format fst

我在扩展名为.fst的代码中遇到了几个文件,这些文件用于保存进程的当前状态(例如,上次运行时发现的阅读器数量,通道跳信息,上次运行时间等)。

fd = open("discovered_readers.fst", O_RDONLY);                                 
if (fd != -1) {                                                                
    numBytes = read(fd, &allReaders, sizeof(allReaders));                        
    close(fd); 
}    

我很确定可以将它们替换为简单的.txt文件。以下是我的问题。

  • 什么是.fst文件?
  • 与普通的.txt文件相比,它们有什么优势吗?

0 个答案:

没有答案