internal FileSystemTextManipulator(IFileSystem fileSystem)
        {
            _fileSystem = fileSystem;

            _searchService = new SearchService(this, _fileSystem.GetReadWriteLock());
            // Leads to very slow startup... -> hope that it should be better now
            _searchService.StartIndexing();
        }