Lucene.Net.Store.FSDirectory.Fsync C# (CSharp) Method

Fsync() protected method

protected Fsync ( String name, bool isDir = false ) : void
name String
isDir bool
return void
        protected void Fsync(String name, bool isDir = false)
        {
            IOUtils.Fsync(Path.Combine(directory.FullName, name), isDir);            
        }
    }