Is fopen() limited by the filesystem?

前端 未结 4 1215
执笔经年
执笔经年 2021-01-13 14:04

I wrote a program to generate large .SQL files for quickly populating very large databases. I scripted it in PHP. When I started coding I was using fopen()

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-13 14:56

    Yes and no. Its not fopen() or fwrite() which are limited directly, its the files, which cannot exceed some dimensions depending on the filesystem. Have a look at Comparison of filesystems on Wikipedia.

提交回复
热议问题