Function: syncDirectorySafely()
function syncDirectorySafely(directoryPath: string): Promise<void>;
Defined in: electron/utils/fsSafeOps.ts:87
Best-effort fsync() for a directory path.
Parameters
directoryPath
string
Returns
Promise<void>
Remarks
Helps persist rename operations on POSIX filesystems. On Windows, directory handles may not be syncable; we treat failures as non-fatal.