当前位置: 首页 > 工具软件 > Magic > 使用案例 >

magic file

弓泰
2023-12-01

      1 #include <stdio.h>
      2 #include <magic.h>
      3 
-     4 int main(int c,  char** v) {
|     5     magic_t myt = magic_open(MAGIC_CONTINUE|MAGIC_ERROR/*|MAGIC_DEBUG*/|MAGIC_MIME);
|     6     magic_load(myt, NULL);
|     7     printf("magic output: '%s'\n", magic_file(myt, v[1]));
|     8     magic_close(myt);
|     9 
|    10     return 0;
|    11 }

magic可以获取文件的类型,相比根据后缀判断文件类型,这样更安全,

具体的库参照资源


ftp://ftp.astron.com/pub/file/

 类似资料:

相关阅读

相关文章

相关问答