# fsIOInProgress The **fsIOInProgress** function is used to check and see if there are any read/write operations currently being performed on the referenced file.   ##### Syntax ``` wasm bool fsIOInProgress( FsIOFile file ); ```   ##### Members {{< table-wrapper >}} | Parameters | Description | |------------|---------------------------------------------------------------------| | `file` | This is the ID of a file, as returned by one of the open functions. | {{< /table-wrapper >}}   ##### Return Values The function returns `True` if the file is currently being operated on, `False` otherwise.   ##### Remarks N/A