- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for directory (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
/** * A directory to store downloaded files. */ protected File baseDir; /** * Creates a file with the specified path, handling directory creation and duplicate names. * * @param path the file path to create * @return the created file * @throws CrawlerSystemException if directory creation fails */Registered: 2025-09-21 03:50 - Last Modified: 2025-08-07 02:55 - 11.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
protected String outputExtension = null; /** The temporary directory for input/output files. */ protected File tempDir = null; /** The command to execute. */ protected String command; /** The timeout for command execution in milliseconds. */ protected long executionTimeout = 30L * 1000L; // 30sec /** The working directory for the command. */ protected File workingDirectory = null;Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 16K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
* @param directory The directory in which the file is to be created, or null if the default temporary-file directory is to be used. * @return The created temporary file. */ protected File createTempFile(final String prefix, final String suffix, final File directory) { try { final File tempFile = File.createTempFile(prefix, suffix, directory);Registered: 2025-09-21 03:50 - Last Modified: 2025-09-06 04:15 - 9.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java
* @param directory The directory in which the file is to be created, or null if the default temporary-file directory is to be used. * @return The created temporary file. */ protected File createTempFile(final String prefix, final String suffix, final File directory) { try { final File tempFile = File.createTempFile(prefix, suffix, directory);Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 4.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 39.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
*/ public void setOfficeManager(final OfficeManager officeManager) { this.officeManager = officeManager; } /** * Sets the temporary directory for file operations. * * @param tempDir the temporary directory to set */ public void setTempDir(final File tempDir) { this.tempDir = tempDir; } /** * Sets the output encoding for extracted text.Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 10.3K bytes - Viewed (0) -
README.md
// Configure for file system crawling container.singleton("fsClient", FileSystemClient.class); // Add file URL crawler.addUrl("file:///path/to/directory"); crawler.urlFilter.addInclude("file:///path/to/directory/.*"); ``` ## Configuration ### XML Configuration Fess Crawler uses XML-based configuration with LastaFlute DI. Place configuration files in your classpath: ```xml
Registered: 2025-09-21 03:50 - Last Modified: 2025-08-31 05:32 - 15.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
responseData.setMimeType(APPLICATION_OCTET_STREAM); } } else if (file.isDirectory()) { if (logger.isDebugEnabled()) { logger.debug("Parsing SmbFile Directory: {}", filePath); } final Set<RequestData> requestDataSet = new HashSet<>(100); if (includeContent) {
Registered: 2025-09-21 03:50 - Last Modified: 2025-09-18 09:30 - 23K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
* <li>Content length validation</li> * <li>MIME type detection</li> * <li>Handling of large files through temporary file storage</li> * <li>Object metadata and tags retrieval</li> * <li>Directory listing capabilities</li> * </ul> * * <p>The client handles timeout management for access operations and includes proper * resource cleanup mechanisms. * */
Registered: 2025-09-21 03:50 - Last Modified: 2025-08-07 02:55 - 17.9K bytes - Viewed (2) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/vnd.ipunplugged.rcprofile", "application/vnd.irepository.package+xml", "application/vnd.is-xpr", "application/vnd.jam", "application/vnd.japannet-directory-service", "application/vnd.japannet-jpnstore-wakeup", "application/vnd.japannet-payment-wakeup", "application/vnd.japannet-registration", "application/vnd.japannet-registration-wakeup",
Registered: 2025-09-21 03:50 - Last Modified: 2020-08-01 21:40 - 49K bytes - Viewed (0)